@charset "UTF-8";
@font-face {
  font-family: AGaramond-Regular;
  src: url(../font/AGaramond-Regular.otf) format("opentype");
}
@font-face {
  font-family: Avenir-Black;
  src: url(../font/AvenirBlack.ttf) format("truetype");
}
@font-face {
  font-family: Agenda-Medium;
  src: url(../font/Agenda-Medium.ttf) format("truetype");
}
@font-face {
  font-family: Calibri-Bold;
  src: url(../font/calibri-bold.ttf) format("truetype");
}
@font-face {
  font-family: Avenir-Roman;
  src: url(../font/avenir-roman.ttf) format("truetype");
}
html {
  font-size: 1px;
}

body {
  font-family: "Noto Serif JP", serif;
  font-family: "Noto Sans", 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(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaled_x {
  0% {
    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 {
  width: 100%;
  padding: 20rem 30rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.fixed {
  position: fixed;
  padding: 10rem 30rem;
  background: white;
  animation: fadeIn 0.3s forwards;
}
header .logo {
  width: 240rem;
  display: flex;
}
header .re__logo {
  width: 360rem;
  display: flex;
}
header nav {
  display: flex;
  align-items: center;
}
header nav ul {
  display: flex;
  align-items: center;
}
header nav ul li {
  padding: 10rem 12rem;
}
header nav ul li.parent {
  position: relative;
}
header nav ul li.parent:hover ul.child {
  opacity: 1;
  visibility: visible;
}
header nav ul li.parent ul.child {
  width: -moz-max-content;
  width: max-content;
  padding: 15rem;
  background: white;
  position: absolute;
  left: 50%;
  top: 30rem;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: translate(-50%);
}
header nav ul li.parent ul.child li {
  padding: 5rem 0;
}
header nav ul li.parent ul.child li a {
  font-size: 12rem;
  line-height: 22.5rem;
}
header nav ul li a {
  font-weight: 500;
  font-size: 14rem;
  line-height: 24.5rem;
  text-align: left;
  color: #000;
  transition: 0.3s;
}
header nav ul li a:hover {
  opacity: 0.7;
}
header nav .top__btns {
  display: flex;
  align-items: center;
}
header nav .top__btns .t__btn {
  width: 142rem;
  height: 45rem;
  margin-left: 20rem;
  padding: 0 11rem 0 20rem;
  border-radius: 22.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #437b99;
  border: 1rem solid #437B99;
  transition: 0.3s;
}
header nav .top__btns .t__btn:hover {
  background: transparent;
}
header nav .top__btns .t__btn:hover .lbl {
  color: #437B99;
}
header nav .top__btns .t__btn:hover .icon {
  background: #437B99;
}
header nav .top__btns .t__btn:hover .icon svg path {
  stroke: white;
}
header nav .top__btns .t__btn:hover .icon svg line {
  stroke: white;
}
header nav .top__btns .t__btn.contact {
  background: #000;
  border-color: black;
}
header nav .top__btns .t__btn.contact:hover {
  background: transparent;
}
header nav .top__btns .t__btn.contact:hover .lbl {
  color: #000;
}
header nav .top__btns .t__btn.contact:hover .icon {
  background: #000;
}
header nav .top__btns .t__btn.contact:hover .icon svg path {
  stroke: white;
}
header nav .top__btns .t__btn.contact:hover .icon svg line {
  stroke: white;
}
header nav .top__btns .t__btn.entry {
  background: #232e4a;
  border-color: #232e4a;
}
header nav .top__btns .t__btn.entry:hover {
  background: transparent;
}
header nav .top__btns .t__btn.entry:hover .lbl {
  color: #232e4a;
}
header nav .top__btns .t__btn.entry:hover .icon {
  background: #232e4a;
}
header nav .top__btns .t__btn.entry:hover .icon svg path {
  stroke: white;
}
header nav .top__btns .t__btn.entry:hover .icon svg line {
  stroke: white;
}
header nav .top__btns .t__btn .lbl {
  font-weight: bold;
  font-size: 12rem;
  line-height: 21rem;
  text-align: left;
  color: #fff;
  transition: 0.3s;
}
header nav .top__btns .t__btn .icon {
  width: 23.32rem;
  height: 23.32rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav .top__btns .t__btn .icon span {
  width: 7.56rem;
  display: flex;
}
header nav .top__btns .t__btn .icon span svg {
  width: 100%;
  height: 100%;
}
header nav .top__btns .t__btn .icon span svg path {
  transition: 0.3s;
}
header nav .top__btns .t__btn .icon span svg line {
  transition: 0.3s;
}

.frontview {
  width: 92.972181552%;
  height: 650rem;
  margin: auto;
  margin-top: 90rem;
  position: relative;
}
.frontview .front__slider {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10rem;
}
.frontview .front__slider .c__item img {
  transform: scale(1);
  transition: 10s linear;
  -o-object-position: center bottom;
     object-position: center bottom;
  transform-origin: center bottom;
}
.frontview .front__slider .c__item.swiper-slide-active img {
  transform: scale(1.15);
}
.frontview .slider__pagination {
  position: absolute;
  left: -55rem;
  bottom: 0;
  width: 50rem;
  height: 165rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20rem 0;
  z-index: 5;
}
.frontview .slider__pagination .swiper-pagination-bullet {
  width: auto;
  height: 120rem;
  background: transparent;
  opacity: 1;
  font-family: "Noto Sans", sans-serif;
  font-size: 18rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #3c86ad;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  margin: 0;
  display: none;
}
.frontview .slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  display: block;
}
.frontview .slider__pagination .swiper-pagination-bullet span:last-child {
  position: absolute;
  left: 50%;
  bottom: -25rem;
  transform: translate(-50%);
}
.frontview .slider__pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 22rem;
  height: 80%;
  left: 50%;
  width: 1rem;
  transform: translateX(-50%);
  background: #d9d9d9;
}
.frontview .slider__pagination .swiper-pagination-bullet-active {
  color: #3c86ad;
}
.frontview .slider__pagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 22rem;
  left: 50%;
  width: 2rem;
  height: 0;
  transform: translateX(-50%);
  background: #3c86ad;
  animation: line_move 4.5s forwards;
}
@keyframes line_move {
  0% {
    height: 0;
  }
  100% {
    height: 80%;
  }
}
.section-title.news {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
}
.section-title.news .en__txt {
  color: #000;
}
.section-title.news .ja__txt {
  margin-left: 15rem;
  margin-bottom: 5rem;
  color: #437b99;
}
.section-title.company .ja__txt {
  color: #437b99;
}
.section-title.company .en__txt {
  color: #000;
}
.section-title .ja__txt {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 26rem;
  letter-spacing: 0.02em;
  line-height: 54rem;
  text-align: left;
  color: #fff;
}
.section-title .en__txt {
  font-family: AGaramond-Regular;
  font-weight: normal;
  font-size: 100rem;
  margin-top: 5rem;
  line-height: 1;
  text-align: left;
  color: #fff;
}

.section-news {
  width: 86.383601757%;
  margin: 80rem 0 0 auto;
}
.section-news .news__header {
  padding-right: 50rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-news .news__header .more__btn {
  padding-bottom: 8rem;
  border-bottom: 1rem solid #437b99;
  display: flex;
  align-items: center;
}
.section-news .news__header .more__btn:hover .icon {
  transform: translate(10rem);
}
.section-news .news__header .more__btn .lbl {
  font-weight: bold;
  font-size: 16rem;
  line-height: 1.3;
  text-align: left;
  color: #437b99;
}
.section-news .news__header .more__btn .icon {
  width: 16rem;
  margin-left: 25rem;
  display: flex;
  transition: 0.3s;
}
.section-news .news__inner {
  position: relative;
  width: 100%;
}
.section-news .news__inner .swiper-button-prev {
  width: 26.89rem;
  height: 104.27rem;
  background: url(../img/next_arrow.webp);
  background-size: cover;
  left: -35rem;
  top: 50%;
  transform: translateY(-50%);
  color: transparent;
}
.section-news .news__inner .news__items {
  width: 100%;
  margin-top: 20rem;
  padding-left: 20rem;
  display: flex;
}
.section-news .news__inner .news__items .n__item {
  width: 280rem;
  border-radius: 10rem;
  border: 1rem solid #b3b3b3;
  overflow: hidden;
  cursor: pointer;
}
.section-news .news__inner .news__items .n__item:hover .content__text .arrow {
  transform: translate(5rem);
}
.section-news .news__inner .news__items .n__item .c__image {
  width: 100%;
  height: 300rem;
  display: flex;
}
.section-news .news__inner .news__items .n__item .c__image img.po {
  width: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}
.section-news .news__inner .news__items .n__item .content__text {
  padding: 20rem 20rem 35rem;
  position: relative;
}
.section-news .news__inner .news__items .n__item .content__text .cat {
  width: 100rem;
  height: 30rem;
  background: #437b99;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14rem;
  line-height: 26rem;
  text-align: left;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
.section-news .news__inner .news__items .n__item .content__text .date {
  font-weight: 500;
  font-size: 14rem;
  line-height: 26rem;
  text-align: left;
  color: #000;
}
.section-news .news__inner .news__items .n__item .content__text .t__txt {
  height: 48rem;
  font-weight: 500;
  font-size: 15rem;
  line-height: 23rem;
  margin-top: 5rem;
  text-align: left;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section-news .news__inner .news__items .n__item .content__text .arrow {
  width: 12rem;
  display: flex;
  position: absolute;
  bottom: 15rem;
  right: 15rem;
  transition: 0.3s;
}

.section-philo {
  width: 100%;
  height: 700rem;
  margin-top: 80rem;
  position: relative;
}
.section-philo .content__inner {
  width: 910rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.section-philo .content__inner .content__text .c__txt {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 26rem;
  letter-spacing: 0.03em;
  line-height: 56.15rem;
  margin-top: 25rem;
  text-align: left;
  color: #fff;
}
.section-philo .content__inner .more__btn {
  width: 173.08rem;
  height: 293.74rem;
  background: transparent;
  border: 1rem solid #fff;
  border-radius: 80rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.3s;
}
.section-philo .content__inner .more__btn:hover {
  opacity: 0.7;
}
.section-philo .content__inner .more__btn .t__lbl {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 19.95rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.section-philo .content__inner .more__btn .c__txt {
  width: 85rem;
  margin-top: 30rem;
  display: flex;
}
.section-philo .content__inner .more__btn .b__lbl {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 18rem;
  margin-top: 17rem;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  color: #fff;
}

.section-works {
  width: 100%;
  padding: 100rem 0;
  height: auto;
  background: url(../img/works_bg.webp);
  background-size: cover;
  position: relative;
}
.section-works .control__btns {
  display: flex;
  position: absolute;
  top: 200rem;
  right: 70rem;
  width: 180rem;
  height: 55rem;
  border-radius: 5.63rem;
  background: transparent;
  border: 1rem solid #fff;
}
.section-works .control__btns .swiper-button-next:after {
  content: "";
  width: 0;
  height: 80%;
  border-left: 1rem solid #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section-works .control__btns .swiper-button-next, .section-works .control__btns .swiper-button-prev {
  position: relative;
  width: 50%;
  height: 100%;
  color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  top: auto;
  left: auto;
}
.section-works .control__btns .swiper-button-next svg, .section-works .control__btns .swiper-button-prev svg {
  display: none;
}
.section-works .control__btns .swiper-button-next span, .section-works .control__btns .swiper-button-prev span {
  width: 11rem;
  display: flex;
}
.section-works .title__part {
  width: 910rem;
  margin: auto;
}
.section-works .works__items {
  margin-top: 35rem;
  display: flex;
  align-items: center;
}
.section-works .works__items .w__item {
  width: 550rem;
  height: auto;
  padding: 60rem 60rem 50rem;
  border-radius: 10rem;
  background: #fff;
}
.section-works .works__items .w__item .t__lbl {
  font-weight: bold;
  font-size: 24rem;
  letter-spacing: 0.1em;
  line-height: 39rem;
  text-align: left;
  color: #000;
}
.section-works .works__items .w__item .t__txt {
  font-weight: 500;
  font-size: 15rem;
  line-height: 30rem;
  margin-top: 30rem;
  text-align: left;
  color: #000;
}
.section-works .works__items .w__item .more__btn {
  width: 200rem;
  height: 52rem;
  margin: auto;
  margin-top: 25rem;
  border-radius: 26rem;
  background: #437b99;
  border: 1rem solid #437B99;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.section-works .works__items .w__item .more__btn:hover {
  background: transparent;
}
.section-works .works__items .w__item .more__btn:hover .lbl {
  color: #437B99;
}
.section-works .works__items .w__item .more__btn:hover .arrow path {
  fill: #437B99;
}
.section-works .works__items .w__item .more__btn .lbl {
  font-weight: 600;
  font-size: 13.91rem;
  letter-spacing: 0.08em;
  line-height: 16.7rem;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
.section-works .works__items .w__item .more__btn .arrow {
  width: 12rem;
  display: flex;
  position: absolute;
  right: 15rem;
  top: 50%;
  transform: translateY(-50%);
}

.section-company {
  padding: 100rem 0 175rem;
  position: relative;
}
.section-company .title__part {
  width: 1010rem;
  margin: auto;
  position: relative;
  z-index: 1;
}
.section-company .content__inner {
  width: 1010rem;
  margin: auto;
  margin-top: -40rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section-company .content__inner .c__image {
  width: 570rem;
  display: flex;
}
.section-company .content__inner .content__text {
  width: 370rem;
  padding-top: 10rem;
}
.section-company .content__inner .content__text ul li {
  padding: 18rem 18rem;
  border-bottom: 1rem solid #b3b3b3;
}
.section-company .content__inner .content__text ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-company .content__inner .content__text ul li a:hover .icon {
  transform: translate(5rem);
}
.section-company .content__inner .content__text ul li a:hover:hover .lbl {
  color: #1f7ca5;
}
.section-company .content__inner .content__text ul li a .lbl {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 22rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-align: left;
  color: #000;
  transition: 0.3s;
}
.section-company .content__inner .content__text ul li a .icon {
  width: 16rem;
  display: flex;
  transition: 0.3s;
}
.section-company .flow__text {
  width: 100%;
  position: absolute;
  bottom: 50rem;
  left: 0;
  z-index: 1;
  overflow: hidden;
  display: flex;
}
.section-company .flow__text .scroll-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 183.24rem;
  line-height: 1.2;
  display: inline-block;
  text-align: left;
  color: #437b99;
  opacity: 0.2;
  white-space: nowrap;
  animation: scroll-left 10s linear infinite;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0); /* 開始時 */
  }
  100% {
    transform: translateX(-100%);
  }
}

.section-recruit {
  width: 100%;
  height: 630rem;
  display: flex;
  position: relative;
}
.section-recruit .recruit__part {
  width: 327.61rem;
  height: 556rem;
  padding-top: 100rem;
  border-radius: 155rem;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: calc(50% - 683rem + 128rem);
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
}
.section-recruit .recruit__part .section-title .ja__txt {
  font-size: 24rem;
  line-height: 1.2;
  color: #437b99;
  text-align: center;
}
.section-recruit .recruit__part .section-title .en__txt {
  font-size: 62rem;
  color: #000;
  text-align: center;
}
.section-recruit .recruit__part .c__txt {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 20rem;
  letter-spacing: 0.02em;
  line-height: 33rem;
  margin-top: 25rem;
  text-align: center;
  color: #000;
}
.section-recruit .recruit__part .link__btn {
  width: 100%;
  height: 140rem;
  background: #437B99;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 0;
  bottom: 0;
}
.section-recruit .recruit__part .link__btn:hover .icon {
  transform: translateY(10rem);
}
.section-recruit .recruit__part .link__btn .lbl {
  font-weight: bold;
  font-size: 16rem;
  line-height: 22rem;
  text-align: center;
  color: #fff;
}
.section-recruit .recruit__part .link__btn .icon {
  width: 70rem;
  margin-top: 20rem;
  display: flex;
  transition: 0.3s;
}

.section-map {
  width: 100%;
  height: 320rem;
}
.section-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}

footer {
  padding: 70rem 0 60rem;
}
footer a {
  transition: 0.3s;
}
footer a:hover {
  opacity: 0.7;
}
footer .recruit__f__logo {
  width: 452rem;
  display: flex;
  margin: auto;
}
footer .footer__inner {
  max-width: 1366rem;
  width: 95%;
  padding: 0 130rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer .footer__inner .footer__info .f__logo {
  width: 211rem;
  display: flex;
}
footer .footer__inner .footer__info .company {
  font-weight: bold;
  font-size: 15rem;
  line-height: 26rem;
  margin-top: 32rem;
  text-align: left;
  color: #000;
}
footer .footer__inner .footer__info .address__txt {
  font-weight: 500;
  font-size: 15rem;
  line-height: 26rem;
  margin-top: 12rem;
  text-align: left;
  color: #000;
}
footer .footer__inner .footer__menu {
  display: flex;
}
footer .footer__inner .footer__menu .f__menu {
  margin-left: 50rem;
}
footer .footer__inner .footer__menu .f__menu li {
  margin-bottom: 11rem;
}
footer .footer__inner .footer__menu .f__menu li:last-child {
  margin-bottom: 0;
}
footer .footer__inner .footer__menu .f__menu li a {
  font-weight: 500;
  font-size: 15rem;
  line-height: 26.25rem;
  text-align: left;
  color: #000;
}
footer .footer__inner .footer__menu .f__menu li ul {
  margin-top: 23rem;
}
footer .footer__inner .footer__menu .f__menu li ul li {
  margin: 0;
}
footer .footer__inner .footer__menu .f__menu li ul li a {
  font-weight: 500;
  font-size: 12rem;
  line-height: 26.5rem;
  text-align: left;
  color: #000;
}
footer .copyright {
  max-width: 1366rem;
  width: 95%;
  margin: auto;
  padding: 0 100rem;
  font-weight: 500;
  font-size: 12rem;
  line-height: 26.5rem;
  margin-top: 30rem;
  text-align: right;
  color: #000;
}
footer .copyright.recruit {
  width: auto;
  margin-top: 15rem;
  text-align: center;
}

.re__frontview {
  width: 100%;
  display: flex;
  position: relative;
}
.re__frontview:after {
  content: "";
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.08;
  position: absolute;
  left: 0;
  top: 0;
}
.re__frontview .c__text {
  width: 48.3162518302%;
  display: flex;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-40%);
  mix-blend-mode: color-burn;
  z-index: 1;
  transition: 0.3s;
  opacity: 0;
}
.re__frontview .c__text.visible {
  opacity: 1;
  transform: translateY(-50%);
}

.recruit__wrapper {
  margin-top: -2rem;
}
.recruit__wrapper .recruit-detail {
  width: 100%;
  height: 100%;
  padding: 100rem 0;
  background: url(../img/re-detail-bg.webp);
  background-size: cover;
  position: relative;
}
.recruit__wrapper .recruit-detail .recruit__slider {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: calc(50% - 683rem + 126rem);
}
.recruit__wrapper .recruit-detail .recruit__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.recruit__wrapper .recruit-detail .recruit__inner {
  width: 1000rem;
  margin: auto;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text {
  width: 645rem;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .t__txt {
  font-weight: 500;
  font-size: 34rem;
  line-height: 48rem;
  text-align: left;
  color: #fff;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .c__txt {
  font-weight: 500;
  font-size: 15rem;
  line-height: 30rem;
  margin-top: 40rem;
  text-align: justify;
  color: #fff;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .detail__link {
  width: 200rem;
  height: 45rem;
  margin-top: 35rem;
  border-radius: 22.5rem;
  padding: 0 10rem 0 20rem;
  background: transparent;
  border: 1rem solid #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .detail__link .lbl {
  font-weight: bold;
  font-size: 12rem;
  line-height: 21rem;
  text-align: left;
  color: #fff;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .detail__link .icon {
  width: 23.32rem;
  height: 23.32rem;
  border-radius: 50%;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info {
  width: 100%;
  margin-top: 80rem;
  display: flex;
  flex-wrap: wrap;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-right: 1rem solid #fff;
  border-bottom: 1rem solid #fff;
  padding-bottom: 35rem;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item:nth-child(2) {
  border-right: 0;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item:nth-child(3) {
  border: 0;
  padding-bottom: 0;
  border-right: 1rem solid #fff;
  padding-top: 35rem;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item:nth-child(4) {
  border-right: 0;
  padding-bottom: 0;
  border-bottom: 0;
  padding-top: 35rem;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item .c__lbl {
  width: 122.33rem;
  height: 36.7rem;
  border-radius: 4.88rem;
  background: #232e4a;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 17.47rem;
  line-height: 30.57rem;
  text-align: center;
  color: #fff;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item .r__txt {
  font-family: Avenir-Black;
  font-weight: normal;
  font-size: 109.71rem;
  margin-top: 25rem;
  line-height: 1;
  text-align: left;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item .r__txt span {
  font-family: "Noto Sans", sans-serif;
  font-weight: bold;
  font-size: 34.93rem;
  line-height: 1;
  margin: 0 0 23rem 10rem;
  text-align: center;
  color: #fff;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item .r__txt .t01 {
  font-size: 35rem;
  writing-mode: vertical-rl;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item .r__txt .b01 {
  font-family: Avenir-Black;
  font-size: 72rem;
  line-height: 1;
  margin: 0 0 10rem 10rem;
  color: #fff;
}
.recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item .r__lbl {
  font-weight: bold;
  font-size: 17.47rem;
  line-height: 30.57rem;
  margin-top: 5rem;
  text-align: center;
  color: #fff;
}

.subtitle.interview .en__txt {
  color: white;
}
.subtitle.interview .ja__txt {
  color: white;
}
.subtitle .en__txt {
  font-family: Agenda-Medium;
  font-weight: normal;
  font-size: 80rem;
  line-height: 91.22rem;
  text-align: left;
  color: #232e4a;
}
.subtitle .ja__txt {
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.1em;
  line-height: 29rem;
  text-align: left;
  color: #232e4a;
}

.recruit-works {
  width: 1000rem;
  margin: auto;
  padding: 200rem 0 100rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.recruit-works .content__text {
  width: 645rem;
  padding-top: 20rem;
}
.recruit-works .content__text .w__lbl {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: left;
  color: #000;
}
.recruit-works .content__text .content__items {
  margin-top: 42rem;
}
.recruit-works .content__text .content__items .c__item {
  width: 100%;
  margin-bottom: 50rem;
  padding-top: 20rem;
  border-top: 1rem solid #b3b3b3;
  position: relative;
}
.recruit-works .content__text .content__items .c__item:last-child {
  margin-bottom: 0;
}
.recruit-works .content__text .content__items .c__item .e__txt {
  font-family: Avenir-Roman;
  font-weight: normal;
  font-size: 15rem;
  line-height: 18rem;
  text-align: left;
  color: #000;
}
.recruit-works .content__text .content__items .c__item .j__txt {
  font-weight: 500;
  font-size: 25rem;
  line-height: 1.3;
  margin-top: 18rem;
  text-align: left;
  color: #000;
}
.recruit-works .content__text .content__items .c__item .c__txt {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.01em;
  line-height: 32rem;
  margin-top: 15rem;
  text-align: left;
  color: #000;
}
.recruit-works .content__text .content__items .c__item .num {
  font-family: Calibri-Bold;
  font-weight: normal;
  font-size: 30rem;
  line-height: 1.2;
  padding-right: 10rem;
  text-align: center;
  color: #000;
  background: white;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
}

.recruit-interview {
  width: 100%;
  height: auto;
  padding: 100rem 0;
  background: url(../img/interview_bg.webp);
  background-size: cover;
  display: flex;
  justify-content: right;
  position: relative;
}
.recruit-interview .title__part .control__btns {
  display: flex;
  width: 180rem;
  height: 55rem;
  margin: auto;
  margin-top: 30rem;
  border-radius: 5.63rem;
  background: transparent;
  border: 1rem solid #fff;
}
.recruit-interview .title__part .control__btns .swiper-button-next:after {
  content: "";
  width: 0;
  height: 80%;
  border-left: 1rem solid #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.recruit-interview .title__part .control__btns .swiper-button-next, .recruit-interview .title__part .control__btns .swiper-button-prev {
  position: relative;
  width: 50%;
  height: 100%;
  color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  top: auto;
  left: auto;
}
.recruit-interview .title__part .control__btns .swiper-button-next svg, .recruit-interview .title__part .control__btns .swiper-button-prev svg {
  display: none;
}
.recruit-interview .title__part .control__btns .swiper-button-next span, .recruit-interview .title__part .control__btns .swiper-button-prev span {
  width: 11rem;
  display: flex;
}
.recruit-interview .interview__slider {
  width: 71.7423133236%;
  margin: 0;
  margin-left: 25rem;
  display: flex;
}
.recruit-interview .interview__slider .c__item {
  width: 380rem;
  height: auto;
  padding: 29rem 30rem;
  border-radius: 10rem;
  background: #fff;
}
.recruit-interview .interview__slider .c__item .t__txt {
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.1em;
  line-height: 29rem;
  text-align: left;
  color: #000;
}
.recruit-interview .interview__slider .c__item .c__txt {
  font-weight: 500;
  font-size: 14rem;
  line-height: 26rem;
  margin-top: 15rem;
  text-align: left;
  color: #000;
}
.recruit-interview .interview__slider .c__item .writer {
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.1em;
  line-height: 39rem;
  margin-top: 5rem;
  text-align: left;
  color: #000;
}

.recruit-outline {
  padding: 100rem 0;
}
.recruit-outline .content__inner {
  width: 1000rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.recruit-outline .content__inner .content__text {
  width: 645rem;
}
.recruit-outline .content__inner .content__text table {
  width: 100%;
  border-collapse: collapse;
}
.recruit-outline .content__inner .content__text table tr {
  border-bottom: 1rem solid #bebbb6;
}
.recruit-outline .content__inner .content__text table tr td {
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.01em;
  line-height: 26rem;
  padding: 33rem 0;
  text-align: left;
  color: #271d20;
}
.recruit-outline .content__inner .content__text table tr td div {
  padding-bottom: 20rem;
  border-bottom: 1rem solid #ddd;
}
.recruit-outline .content__inner .content__text table tr td span {
  display: block;
  margin-bottom: 10rem;
}
.recruit-outline .content__inner .content__text table tr td:first-child {
  width: 140rem;
  font-weight: bold;
  vertical-align: top;
}

.entry__content {
  width: 95.168374817%;
  height: auto;
  margin: auto;
  padding: 80rem 0;
  border-radius: 26.4rem;
  background: #232e4a;
  display: block;
  transition: 0.3s;
}
.entry__content:hover {
  background: #437b99;
}
.entry__content:hover .content__inner .entry__btn span {
  transform: translate(10rem);
}
.entry__content .content__inner {
  width: 1000rem;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.entry__content .content__inner .info__content .j__txt {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.01em;
  line-height: 20rem;
  text-align: left;
  color: #fff;
}
.entry__content .content__inner .info__content .e__txt {
  font-family: Agenda-Medium;
  font-weight: normal;
  font-size: 80rem;
  line-height: 91.22rem;
  text-align: left;
  color: #fff;
}
.entry__content .content__inner .info__content .c__txt {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.01em;
  line-height: 28rem;
  margin-top: 12rem;
  text-align: left;
  color: #fff;
}
.entry__content .content__inner .entry__btn {
  width: 181.96rem;
  height: 181.96rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.entry__content .content__inner .entry__btn:hover span {
  transform: translate(10rem);
}
.entry__content .content__inner .entry__btn span {
  width: 19rem;
  display: flex;
  transition: 0.3s;
}
.entry__content .content__inner .entry__btn span svg {
  width: 100%;
  height: 100%;
}

.subfrontview {
  width: 100%;
  height: 500rem;
  display: flex;
  position: relative;
}
.subfrontview .title {
  position: absolute;
  left: 130rem;
  top: 240rem;
}
.subfrontview .title .en__txt {
  font-family: AGaramond-Regular;
  font-weight: normal;
  font-size: 80rem;
  line-height: 1;
  text-align: left;
  color: #9194a3;
  position: relative;
  mix-blend-mode: color-burn;
}
.subfrontview .title .ja__txt {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24rem;
  margin-top: 30rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: left;
  color: #1a1311;
  position: relative;
}
.subfrontview .title .ja__txt:after {
  content: "";
  width: 50rem;
  height: 4rem;
  background: url(../img/t_line.webp);
  background-size: cover;
  position: absolute;
  left: 0;
  top: -22rem;
}
.subfrontview .breadcrumb {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  left: 26rem;
  top: 180rem;
  mix-blend-mode: multiply;
}
.subfrontview .breadcrumb .home__icon {
  width: 15rem;
  margin-bottom: 7rem;
  display: flex;
  writing-mode: unset;
}
.subfrontview .breadcrumb .a__icon {
  width: 11rem;
  display: flex;
  margin: 10rem 0;
  writing-mode: unset;
}
.subfrontview .breadcrumb a, .subfrontview .breadcrumb span {
  font-weight: 500;
  font-size: 12rem;
  line-height: 14.4rem;
  text-align: left;
  color: #9093a2;
  writing-mode: vertical-lr;
}

.company__wrapper {
  position: relative;
}
.company__wrapper .company__list {
  position: absolute;
  top: 100rem;
  left: calc(50% - 683rem);
}
.company__wrapper .company__list.fixed {
  position: fixed;
  z-index: 3;
}
.company__wrapper .company__list.abs {
  position: absolute;
  z-index: 3;
  bottom: 100rem;
  top: auto;
}
.company__wrapper .company__list ul li {
  position: relative;
}
.company__wrapper .company__list ul li.active a:after {
  width: 100%;
}
.company__wrapper .company__list ul li a {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding: 10rem 0;
  display: inline-block;
  text-align: left;
  color: #1a1311;
  position: relative;
}
.company__wrapper .company__list ul li a:hover:after {
  width: 100%;
}
.company__wrapper .company__list ul li a:after {
  content: "";
  width: 0%;
  height: 2rem;
  background: url(../img/b_line.webp);
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}
.company__wrapper .t__title .en__txt {
  font-family: Avenir-Roman;
  font-weight: normal;
  font-size: 26rem;
  letter-spacing: 0.06em;
  line-height: 31.2rem;
  text-align: left;
  color: #3a4d65;
  position: relative;
}
.company__wrapper .t__title .en__txt:after {
  content: "";
  width: 14rem;
  height: 14rem;
  background: url(../img/t_icon.webp);
  background-size: cover;
  position: absolute;
  left: -20rem;
  top: 50%;
  transform: translateY(-50%);
}
.company__wrapper .t__title .ja__txt {
  font-weight: normal;
  font-size: 12rem;
  line-height: 1.4;
  margin-top: 5rem;
  text-align: left;
  color: #1a1311;
}
.company__wrapper .message__content {
  max-width: 1366rem;
  width: 95%;
  margin: auto;
  padding: 100rem 0;
  padding-right: 170rem;
}
.company__wrapper .message__content .content__inner {
  width: 810rem;
  margin: 0 0 0 auto;
}
.company__wrapper .message__content .content__inner .c__txt {
  font-weight: normal;
  font-size: 15rem;
  line-height: 41rem;
  margin-top: 40rem;
  text-align: left;
  color: #1a1311;
}
.company__wrapper .message__content .content__inner .ceo__info {
  margin: 30rem 40rem 0 0;
  display: flex;
  align-items: baseline;
  justify-content: right;
}
.company__wrapper .message__content .content__inner .ceo__info .j__lbl {
  font-weight: 500;
  font-size: 14rem;
  letter-spacing: 0.01em;
  line-height: 20rem;
  text-align: right;
  color: #2f2c2c;
}
.company__wrapper .message__content .content__inner .ceo__info .n__lbl {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 20rem;
  letter-spacing: 0.01em;
  line-height: 20rem;
  margin-left: 18rem;
  text-align: left;
  color: #2f2c2c;
}
.company__wrapper .iso__content {
  padding: 90rem 0;
  background: #eef3f6;
}
.company__wrapper .iso__content .content__wrapper {
  max-width: 1366rem;
  width: 95%;
  margin: auto;
  padding-right: 170rem;
}
.company__wrapper .iso__content .content__wrapper .content__inner {
  width: 810rem;
  margin: 0 0 0 auto;
}
.company__wrapper .iso__content .content__wrapper .content__inner .t__txt {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24rem;
  letter-spacing: 0.03em;
  line-height: 32rem;
  margin-top: 25rem;
  text-align: left;
  color: #000;
}
.company__wrapper .iso__content .content__wrapper .content__inner .c__txt {
  font-weight: 400;
  font-size: 16rem;
  letter-spacing: 0.01em;
  line-height: 28rem;
  margin-top: 30rem;
  text-align: left;
  color: #271d20;
}
.company__wrapper .iso__content .content__wrapper .content__inner .iso__items {
  margin-top: 50rem;
  display: flex;
  justify-content: space-between;
}
.company__wrapper .iso__content .content__wrapper .content__inner .iso__items .i__item .c__image {
  width: 200rem;
  display: flex;
}
.company__wrapper .iso__content .content__wrapper .content__inner .iso__items .i__item .c__text {
  padding-top: 20rem;
}
.company__wrapper .iso__content .content__wrapper .content__inner .iso__items .i__item .c__text .i__lbl {
  font-weight: bold;
  font-size: 22rem;
  letter-spacing: 0.01em;
  line-height: 28rem;
  text-align: left;
  color: #271d20;
}
.company__wrapper .iso__content .content__wrapper .content__inner .iso__items .i__item .c__text .i__txt {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.01em;
  margin-top: 10rem;
  line-height: 34rem;
  text-align: left;
  color: #271d20;
}
.company__wrapper .company__bg {
  width: 100%;
  display: flex;
}
.company__wrapper .outline__content {
  max-width: 1366rem;
  width: 95%;
  margin: auto;
  padding: 100rem 0;
  padding-right: 170rem;
}
.company__wrapper .outline__content .content__inner {
  width: 810rem;
  margin: 0 0 0 auto;
}
.company__wrapper .outline__content .content__inner table {
  width: 100%;
  border-collapse: collapse;
}
.company__wrapper .outline__content .content__inner table tr {
  border-bottom: 1rem solid #bbbdbe;
}
.company__wrapper .outline__content .content__inner table tr:last-child {
  border-bottom: 0;
}
.company__wrapper .outline__content .content__inner table tr td {
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.01em;
  line-height: 30rem;
  padding: 32rem 0;
  text-align: left;
  color: #2f2c2c;
}
.company__wrapper .outline__content .content__inner table tr td .address {
  display: flex;
  align-items: center;
}
.company__wrapper .outline__content .content__inner table tr td .address .map__link {
  width: 142rem;
  height: 45rem;
  margin-left: 30rem;
  border-radius: 22.5rem;
  background: linear-gradient(to right, #c45467 11.33%, #d3936f 81.53%);
  padding: 0 10rem 0 20rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.company__wrapper .outline__content .content__inner table tr td .address .map__link .lbl {
  font-weight: bold;
  font-size: 12rem;
  line-height: 21rem;
  text-align: left;
  color: #fff;
}
.company__wrapper .outline__content .content__inner table tr td .address .map__link .icon {
  width: 23rem;
  display: flex;
}
.company__wrapper .outline__content .content__inner table tr td .address .map__link .icon svg {
  width: 100%;
  height: 100%;
}
.company__wrapper .outline__content .content__inner table tr td:first-child {
  width: 144rem;
  font-weight: bold;
  vertical-align: top;
}
.company__wrapper .history__wrapper {
  background: #eef3f6;
}
.company__wrapper .history__wrapper .history__content {
  max-width: 1366rem;
  width: 95%;
  margin: auto;
  padding: 100rem 0;
  padding-right: 170rem;
}
.company__wrapper .history__wrapper .history__content .content__inner {
  width: 810rem;
  margin: 0 0 0 auto;
}
.company__wrapper .history__wrapper .history__content .content__inner table {
  margin-top: 45rem;
  width: 100%;
  border-collapse: collapse;
}
.company__wrapper .history__wrapper .history__content .content__inner table tr:first-child td {
  padding-top: 0;
  position: relative;
}
.company__wrapper .history__wrapper .history__content .content__inner table tr:first-child td:before {
  content: "";
  width: 12rem;
  height: 32rem;
  background: #eef3f6;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%);
}
.company__wrapper .history__wrapper .history__content .content__inner table tr td {
  padding: 25rem 0;
}
.company__wrapper .history__wrapper .history__content .content__inner table tr td:first-child {
  width: 120rem;
  font-family: Avenir-Roman;
  font-weight: normal;
  font-size: 40rem;
  letter-spacing: 0.06em;
  line-height: 48rem;
  text-align: left;
  color: #1a1311;
  vertical-align: top;
  border-right: 1rem solid #1f7da5;
}
.company__wrapper .history__wrapper .history__content .content__inner table tr td:first-child .m__lbl {
  display: block;
  position: relative;
  margin-top: 10rem;
}
.company__wrapper .history__wrapper .history__content .content__inner table tr td:first-child .m__lbl:after {
  content: "";
  width: 12rem;
  height: 12rem;
  background: #1f7da5;
  position: absolute;
  right: 0;
  top: 15rem;
  transform: translate(50%);
}
.company__wrapper .history__wrapper .history__content .content__inner table tr td:last-child {
  width: calc(100% - 120rem);
  padding-left: 45rem;
}
.company__wrapper .history__wrapper .history__content .content__inner table tr td:last-child .f__text {
  width: 638.98rem;
  height: auto;
  padding: 17rem;
  border-radius: 10rem;
  background: #fff;
  display: flex;
}
.company__wrapper .history__wrapper .history__content .content__inner table tr td:last-child .f__text .month {
  font-weight: 500;
  font-size: 24rem;
  margin-right: 22rem;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: left;
  color: #2f2c2c;
}
.company__wrapper .history__wrapper .history__content .content__inner table tr td:last-child .f__text .month span {
  font-size: 16rem;
}
.company__wrapper .history__wrapper .history__content .content__inner table tr td:last-child .f__text .txt {
  font-weight: 500;
  font-size: 15rem;
  letter-spacing: 0.01em;
  line-height: 28rem;
  text-align: left;
  color: #2f2c2c;
}
.company__wrapper .access__content {
  max-width: 1366rem;
  width: 95%;
  margin: auto;
  padding: 100rem 0;
  padding-right: 170rem;
}
.company__wrapper .access__content .content__inner {
  width: 810rem;
  margin: 0 0 0 auto;
}
.company__wrapper .access__content .content__inner .info__content {
  margin-top: 44rem;
  display: flex;
  align-items: flex-end;
}
.company__wrapper .access__content .content__inner .info__content .address {
  font-weight: 500;
  font-size: 15rem;
  letter-spacing: 0.01em;
  line-height: 28rem;
  text-align: left;
  color: #2f2c2c;
}
.company__wrapper .access__content .content__inner .info__content .line {
  width: 33rem;
  margin: 0 20rem;
  display: flex;
}
.company__wrapper .access__content .content__inner .info__content .tel {
  display: flex;
  align-items: center;
}
.company__wrapper .access__content .content__inner .info__content .tel .icon {
  width: 33rem;
  margin-right: 10rem;
  display: flex;
}
.company__wrapper .access__content .content__inner .info__content .tel .lbl {
  font-family: Avenir-Black;
  font-weight: normal;
  font-size: 36.59rem;
  line-height: 43.91rem;
  text-align: left;
  color: #3a4d65;
}
.company__wrapper .access__content .content__inner .way__items {
  margin-top: 45rem;
  display: flex;
  justify-content: space-between;
}
.company__wrapper .access__content .content__inner .way__items .w__item {
  width: 385rem;
  height: 180rem;
  border-radius: 10rem;
  background: transparent;
  border: 1rem solid #bbbdbe;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.company__wrapper .access__content .content__inner .way__items .w__item .w__lbl {
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.01em;
  line-height: 30rem;
  text-align: center;
  color: #2f2c2c;
}
.company__wrapper .access__content .content__inner .way__items .w__item .line {
  width: 250rem;
  margin: 15rem 0;
  display: flex;
}
.company__wrapper .access__content .content__inner .way__items .w__item .w__txt {
  font-weight: bold;
  font-size: 18rem;
  letter-spacing: 0.01em;
  line-height: 26rem;
  text-align: left;
  color: #2f2c2c;
}
.company__wrapper .access__content .content__inner .way__items .w__item .w__txt span {
  font-size: 16rem;
  display: block;
}

.philo__wrapper .philo__content {
  padding: 100rem 0;
  position: relative;
}
.philo__wrapper .philo__content .gap {
  width: 38.0673499268%;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
}
.philo__wrapper .philo__content .content__inner {
  width: 1000rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.philo__wrapper .philo__content .content__inner .c__image {
  width: 215rem;
  display: flex;
}
.philo__wrapper .philo__content .content__inner .content__text {
  width: 600rem;
}
.philo__wrapper .philo__content .content__inner .content__text .detail__txt {
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.01em;
  line-height: 36rem;
  margin-bottom: 80rem;
  text-align: justify;
  color: #1a1311;
}
.philo__wrapper .philo__content .content__inner .content__text .content__items .c__item {
  padding: 0 26rem 30rem 26rem;
  border-left: 2rem solid transparent;
  border-bottom: 2rem solid transparent;
  -o-border-image: linear-gradient(to right bottom, #D16B7B, #DAA683) 1;
     border-image: linear-gradient(to right bottom, #D16B7B, #DAA683) 1;
  margin-bottom: 50rem;
}
.philo__wrapper .philo__content .content__inner .content__text .content__items .c__item .t__txt {
  font-weight: normal;
  font-size: 20rem;
  line-height: 1.3;
  text-align: left;
  color: #1a1311;
}
.philo__wrapper .philo__content .content__inner .content__text .content__items .c__item .c__txt {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.01em;
  line-height: 22rem;
  margin-top: 10rem;
  text-align: left;
  color: #1a1311;
}
.philo__wrapper .philo__content .content__inner .content__text .possible__content {
  width: 100%;
  height: auto;
  padding: 30rem;
  border-radius: 9.92rem;
  background: transparent;
  border: 1rem solid #2f2c2c;
}
.philo__wrapper .philo__content .content__inner .content__text .possible__content .p__lbl {
  font-weight: bold;
  font-size: 20rem;
  line-height: 1;
  text-align: left;
  color: #1a1311;
}
.philo__wrapper .philo__content .content__inner .content__text .possible__content table {
  margin-top: 10rem;
  width: 100%;
  border-collapse: collapse;
}
.philo__wrapper .philo__content .content__inner .content__text .possible__content table tr td {
  font-weight: normal;
  font-size: 14rem;
  letter-spacing: 0.01em;
  line-height: 21rem;
  padding: 10rem 0;
  text-align: left;
  color: #1a1311;
}
.philo__wrapper .philo__content .content__inner .content__text .possible__content table tr td:last-child {
  padding-left: 15rem;
}
.philo__wrapper .philo__content .content__inner .content__text .possible__content table tr td:first-child span {
  width: 109.31rem;
  height: 37.08rem;
  background: #2f2c2c;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 14rem;
  letter-spacing: 0.01em;
  line-height: 22rem;
  text-align: center;
  color: #fff;
}
.philo__wrapper .philo__content .content__inner .content__text .possible__content .note__txt {
  font-weight: normal;
  font-size: 12rem;
  letter-spacing: 0.01em;
  line-height: 17rem;
  margin-top: 4rem;
  text-align: left;
  color: #1a1311;
}
.philo__wrapper .philo__bg {
  width: 100%;
  display: flex;
}

.business__wrapper {
  position: relative;
}
.business__wrapper .t__title {
  padding-left: 20rem;
}
.business__wrapper .t__title .en__txt {
  font-family: Avenir-Roman;
  font-weight: normal;
  font-size: 26rem;
  letter-spacing: 0.06em;
  line-height: 31.2rem;
  text-align: left;
  color: #3a4d65;
  position: relative;
}
.business__wrapper .t__title .en__txt:after {
  content: "";
  width: 14rem;
  height: 14rem;
  background: url(../img/t_icon.webp);
  background-size: cover;
  position: absolute;
  left: -20rem;
  top: 50%;
  transform: translateY(-50%);
}
.business__wrapper .t__title .ja__txt {
  font-weight: normal;
  font-size: 12rem;
  line-height: 1.4;
  margin-top: 5rem;
  text-align: left;
  color: #1a1311;
}
.business__wrapper .c__image {
  width: 43.9238653001%;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}
.business__wrapper .gap {
  width: 38.0673499268%;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
}
.business__wrapper .detail__content {
  width: 1000rem;
  margin: auto;
  padding: 100rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.business__wrapper .detail__content .c__image {
  width: 215rem;
  display: flex;
  position: relative;
}
.business__wrapper .detail__content .c__text {
  width: 666rem;
  font-weight: normal;
  font-size: 16rem;
  letter-spacing: 0.01em;
  line-height: 52rem;
  text-align: justify;
  color: #1a1311;
}
.business__wrapper .business__content {
  position: relative;
  padding-bottom: 100rem;
}
.business__wrapper .business__content .content__inner {
  width: 1000rem;
  margin: auto;
}
.business__wrapper .business__content .content__inner .work__items {
  width: 520rem;
}
.business__wrapper .business__content .content__inner .work__items .w__item {
  padding: 70rem 0;
  border-bottom: 1rem solid #bdbebf;
}
.business__wrapper .business__content .content__inner .work__items .w__item .num {
  font-family: Avenir-Roman;
  font-weight: normal;
  font-size: 20rem;
  line-height: 24rem;
  text-align: center;
  background: linear-gradient(to right, #D16B7B, #DAA683);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2rem solid transparent;
  -o-border-image: linear-gradient(to right bottom, #D16B7B, #DAA683) 1;
     border-image: linear-gradient(to right bottom, #D16B7B, #DAA683) 1;
}
.business__wrapper .business__content .content__inner .work__items .w__item .content__text {
  padding: 20rem 0 0 30rem;
}
.business__wrapper .business__content .content__inner .work__items .w__item .content__text .j__txt {
  font-weight: bold;
  font-size: 25rem;
  line-height: 1.4;
  text-align: left;
  color: #3a4d65;
}
.business__wrapper .business__content .content__inner .work__items .w__item .content__text .e__txt {
  font-family: Avenir-Roman;
  font-weight: normal;
  font-size: 15rem;
  line-height: 18rem;
  margin-top: 5rem;
  text-align: left;
  color: #3a4d65;
}
.business__wrapper .business__content .content__inner .work__items .w__item .content__text .c__txt {
  font-weight: 500;
  font-size: 14rem;
  letter-spacing: 0.01em;
  line-height: 32rem;
  margin-top: 35rem;
  text-align: justify;
  color: #1a1311;
}
.business__wrapper .equit__content {
  width: 100%;
  height: auto;
  padding: 90rem 0;
  background: url(../img/equit_bg.webp);
  background-size: cover;
}
.business__wrapper .equit__content .content__inner {
  width: 1000rem;
  margin: auto;
}
.business__wrapper .equit__content .content__inner .equit__items {
  width: 100%;
  margin-top: 58rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.business__wrapper .equit__content .content__inner .equit__items .e__item {
  width: 32%;
  height: 60rem;
  margin-bottom: 20rem;
  border-radius: 9.91rem;
  background: #3a4d65;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.business__wrapper .equit__content .content__inner .equit__items .e__item span {
  font-weight: bold;
  font-size: 16rem;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.business__wrapper .equit__content .content__inner .mechine__content {
  width: 100%;
  height: auto;
  margin-top: 60rem;
  padding: 55rem;
  border-radius: 28.52rem;
  background: #fff;
  display: none;
}
.business__wrapper .equit__content .content__inner .mechine__content.visible {
  display: block;
  animation: fadeIn 0.3s forwards;
}
.business__wrapper .equit__content .content__inner .mechine__content .m__lbl {
  font-weight: bold;
  font-size: 26rem;
  line-height: 1;
  text-align: left;
  color: #3a4d65;
}
.business__wrapper .equit__content .content__inner .mechine__content .mechine__items {
  margin-top: 40rem;
  display: flex;
}
.business__wrapper .equit__content .content__inner .mechine__content .mechine__items .m__item {
  width: 33.3333333333%;
  padding: 0 80rem;
  border-left: 1rem solid #bdbebf;
}
.business__wrapper .equit__content .content__inner .mechine__content .mechine__items .m__item:first-child {
  border-left: 0;
  padding-left: 0;
}
.business__wrapper .equit__content .content__inner .mechine__content .mechine__items .m__item:last-child {
  padding-right: 0;
}
.business__wrapper .equit__content .content__inner .mechine__content .mechine__items .m__item p {
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.01em;
  line-height: 38rem;
  text-align: left;
  color: #1a1311;
}
.business__wrapper .equit__content .content__inner .mechine__content .mechine__items .m__item p span {
  font-size: 14rem;
  letter-spacing: -0.05em;
}

.privacy__wrapper {
  width: 866rem;
  margin: 100rem auto;
}
.privacy__wrapper table {
  width: 100%;
  border-collapse: collapse;
}
.privacy__wrapper table tr {
  display: grid;
  border-bottom: 1rem solid #bbbdbe;
}
.privacy__wrapper table tr:last-child {
  border-bottom: 0;
}
.privacy__wrapper table tr td {
  font-weight: normal;
  font-size: 14rem;
  line-height: 25rem;
  padding: 40rem 0;
  text-align: left;
  color: #1a1311;
}
.privacy__wrapper table tr td:last-child {
  padding-top: 20rem;
}
.privacy__wrapper table tr td:first-child {
  font-size: 17rem;
  line-height: 29rem;
  padding-bottom: 0;
}
.privacy__wrapper .privacy__info {
  width: 100%;
  height: 180rem;
  padding: 0 60rem;
  margin-top: 20rem;
  border-radius: 15.01rem;
  background: transparent;
  border: 1rem solid #bbbdbe;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.privacy__wrapper .privacy__info .p__lbl {
  font-weight: normal;
  font-size: 16rem;
  line-height: 29rem;
  text-align: center;
  color: #1a1311;
}
.privacy__wrapper .privacy__info .info .c__lbl {
  font-weight: 500;
  font-size: 18rem;
  line-height: 26rem;
  text-align: left;
  color: #1a1311;
}
.privacy__wrapper .privacy__info .info .c__txt {
  font-weight: 500;
  font-size: 14rem;
  line-height: 20rem;
  margin-top: 7rem;
  text-align: left;
  color: #1a1311;
}

.news__wrapper {
  width: 1074rem;
  margin: 100rem auto;
}
.news__wrapper .news__items {
  display: flex;
  flex-wrap: wrap;
}
.news__wrapper .news__items .n__item {
  width: 33.3333333333%;
  padding: 0 37rem;
  margin-bottom: 50rem;
}
.news__wrapper .news__items .n__item .n__inner {
  width: 100%;
  border-radius: 10rem;
  border: 1rem solid #b3b3b3;
  overflow: hidden;
  display: block;
}
.news__wrapper .news__items .n__item .n__inner .c__image {
  width: 100%;
  height: 200rem;
  display: flex;
}
.news__wrapper .news__items .n__item .n__inner .c__image img.po {
  width: 90%;
  display: block;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.news__wrapper .news__items .n__item .n__inner .content__text {
  padding: 20rem 20rem 35rem;
  position: relative;
}
.news__wrapper .news__items .n__item .n__inner .content__text .cat {
  width: 100rem;
  height: 30rem;
  background: #437b99;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14rem;
  line-height: 26rem;
  text-align: left;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
.news__wrapper .news__items .n__item .n__inner .content__text .date {
  font-weight: 500;
  font-size: 14rem;
  line-height: 26rem;
  text-align: left;
  color: #000;
}
.news__wrapper .news__items .n__item .n__inner .content__text .t__txt {
  height: 48rem;
  font-weight: 500;
  font-size: 15rem;
  line-height: 23rem;
  margin-top: 5rem;
  text-align: left;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__wrapper .news__items .n__item .n__inner .content__text .arrow {
  width: 12rem;
  display: flex;
  position: absolute;
  bottom: 15rem;
  right: 15rem;
}
.news__wrapper .pagiantion .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}
.news__wrapper .pagiantion .wp-pagenavi a, .news__wrapper .pagiantion .wp-pagenavi span {
  width: 28rem;
  height: 28rem;
  margin: 0 7rem;
  border-radius: 4rem;
  background: #fff;
  border: 1rem solid #3a4d65;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14rem;
  line-height: 24.5rem;
  text-align: center;
  color: #3a4d65;
}
.news__wrapper .pagiantion .wp-pagenavi a.current, .news__wrapper .pagiantion .wp-pagenavi span.current {
  background: #3a4d65;
  color: white;
}
.news__wrapper .pagiantion ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.news__wrapper .pagiantion ul li {
  width: 28rem;
  height: 28rem;
  margin: 0 7rem;
  border-radius: 4rem;
  background: #fff;
  border: 1rem solid #3a4d65;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14rem;
  line-height: 24.5rem;
  text-align: center;
  color: #3a4d65;
}
.news__wrapper .pagiantion ul li.current {
  background: #3a4d65;
  color: white;
}

.news-detail__wrapper {
  background: #e5eaed;
  padding: 100rem 0;
}
.news-detail__wrapper .content__inner {
  width: 1000rem;
  height: auto;
  margin: auto;
  padding: 100rem;
  background: white;
}
.news-detail__wrapper .content__inner .cat {
  font-weight: 500;
  font-size: 14rem;
  line-height: 26rem;
  padding: 6rem 25rem;
  text-align: left;
  color: #fff;
  background: #1f7ca5;
}
.news-detail__wrapper .content__inner .t__lbl {
  font-weight: 500;
  font-size: 22rem;
  letter-spacing: 0.05em;
  line-height: 31rem;
  margin-top: 12rem;
  text-align: left;
  color: #2f2c2c;
}
.news-detail__wrapper .content__inner .date {
  font-weight: 500;
  font-size: 16rem;
  line-height: 26rem;
  margin-top: 12rem;
  text-align: left;
  color: #1a1311;
}
.news-detail__wrapper .content__inner .content__text {
  padding-top: 20rem;
}
.news-detail__wrapper .content__inner .content__text img {
  width: 100%;
  margin-bottom: 40rem;
}
.news-detail__wrapper .content__inner .content__text p {
  font-weight: 500;
  font-size: 14rem;
  letter-spacing: 0.1em;
  line-height: 31rem;
  margin-bottom: 30rem;
  text-align: left;
  color: #1a1311;
}
.news-detail__wrapper .content__inner .control__btns {
  margin-top: 80rem;
  display: flex;
}
.news-detail__wrapper .content__inner .control__btns .c__btn {
  height: 100rem;
  width: 33.3333333333%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1rem solid #1f7ca5;
  border-radius: 10rem 0 0 10rem;
}
.news-detail__wrapper .content__inner .control__btns .c__btn:nth-child(2).list {
  border-left: 1rem solid #1f7ca5;
}
.news-detail__wrapper .content__inner .control__btns .c__btn.disible {
  opacity: 0;
  visibility: hidden;
}
.news-detail__wrapper .content__inner .control__btns .c__btn:nth-child(2) {
  border-radius: 0;
  border-left: 0;
}
.news-detail__wrapper .content__inner .control__btns .c__btn:nth-child(3) {
  border-radius: 0 10rem 10rem 0;
  border-left: 0;
}
.news-detail__wrapper .content__inner .control__btns .c__btn:nth-child(3) .icon {
  left: auto;
  right: 20rem;
}
.news-detail__wrapper .content__inner .control__btns .c__btn .lbl {
  font-weight: normal;
  font-size: 16rem;
  line-height: 27rem;
  text-align: center;
  color: #1f7ca5;
}
.news-detail__wrapper .content__inner .control__btns .c__btn .icon {
  width: 8rem;
  display: flex;
  position: absolute;
  left: 20rem;
  top: 50%;
  transform: translateY(-50%);
}

.contact__wrapper {
  width: 856rem;
  margin: 100rem auto;
}
.contact__wrapper .contact__steps {
  width: 100%;
  display: flex;
  border: 1rem solid #bebbb6;
}
.contact__wrapper .contact__steps .c__step {
  width: 33.3333333333%;
  height: 60rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__wrapper .contact__steps .c__step.active {
  background: #3d405c;
  position: relative;
}
.contact__wrapper .contact__steps .c__step.active:after {
  content: "";
  width: 22rem;
  height: 100%;
  background: url(../img/step_gap.webp);
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  right: -21rem;
  z-index: 1;
}
.contact__wrapper .contact__steps .c__step.active .lbl {
  color: white;
}
.contact__wrapper .contact__steps .c__step:last-child.active {
  background: #3d405c;
}
.contact__wrapper .contact__steps .c__step:last-child.active:after {
  content: unset;
}
.contact__wrapper .contact__steps .c__step .lbl {
  font-weight: normal;
  font-size: 16rem;
  line-height: 33rem;
  text-align: center;
  color: #271d20;
}
.contact__wrapper .detail__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 29rem;
  margin-top: 32rem;
  text-align: left;
  color: #271d20;
}
.contact__wrapper .contact__form {
  width: 100%;
  margin-top: 90rem;
}
.contact__wrapper .contact__form .wpcf7-form-control-wrap {
  position: relative;
  width: 100%;
  display: block;
}
.contact__wrapper .contact__form .c__item {
  padding-bottom: 55rem;
  margin-bottom: 55rem;
  border-bottom: 1rem solid #bebbb6;
  display: flex;
  justify-content: space-between;
}
.contact__wrapper .contact__form .c__item.no-border {
  border-bottom: 0;
  margin-bottom: 0;
}
.contact__wrapper .contact__form .c__item:first-child .item {
  width: 400rem;
}
.contact__wrapper .contact__form .c__item:first-child .item .p__area input[type=text] {
  width: 185rem;
}
.contact__wrapper .contact__form .c__item:nth-child(2) .item {
  width: 400rem;
}
.contact__wrapper .contact__form .c__item:nth-child(3) .item {
  width: 100%;
}
.contact__wrapper .contact__form .c__item:nth-child(3) .item .p__area {
  justify-content: left;
  align-items: center;
}
.contact__wrapper .contact__form .c__item:nth-child(3) .item .p__area .wpcf7-form-control-wrap {
  width: auto;
  display: inline-block;
}
.contact__wrapper .contact__form .c__item:nth-child(3) .item .p__area .pin {
  width: 11.73rem;
  height: 0rem;
  margin: 0 15rem;
  background: transparent;
  border-top: 1rem solid #271d20;
}
.contact__wrapper .contact__form .c__item:nth-child(3) .item .p__area input[type=text] {
  width: 211rem;
}
.contact__wrapper .contact__form .c__item .item {
  width: 100%;
}
.contact__wrapper .contact__form .c__item .item .header__top {
  display: flex;
  align-items: center;
}
.contact__wrapper .contact__form .c__item .item .header__top .h__lbl {
  font-weight: 500;
  font-size: 16rem;
  margin-right: 10rem;
  letter-spacing: 0.01em;
  line-height: 42.6rem;
  text-align: left;
  color: #271d20;
}
.contact__wrapper .contact__form .c__item .item .header__top .required {
  font-weight: normal;
  font-size: 12rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
  padding: 2rem 10rem;
  text-align: center;
  color: #fff;
  background: #3d405c;
}
.contact__wrapper .contact__form .c__item .item .p__area {
  margin-top: 10rem;
  display: flex;
  justify-content: space-between;
}
.contact__wrapper .contact__form .c__item .item .p__area input[type=text], .contact__wrapper .contact__form .c__item .item .p__area input[type=email] {
  width: 100%;
  height: 46.93rem;
  border-radius: 10rem;
  padding-left: 20rem;
  background: #fff;
  border: 1rem solid #908887;
  font-weight: normal;
  font-size: 16.43rem;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: left;
  color: #000;
}
.contact__wrapper .contact__form .c__item .item .p__area textarea {
  width: 100%;
  height: 140.8rem;
  padding: 15rem;
  background: #fff;
  border: 1rem solid #908887;
  font-size: 16.43rem;
  letter-spacing: 0.01em;
  border-radius: 10rem;
  line-height: 1;
  text-align: left;
  color: #000;
}
.contact__wrapper .contact__form .privacy__content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact__wrapper .contact__form .privacy__content .wpcf7-list-item {
  margin: 0;
}
.contact__wrapper .contact__form .privacy__content .lbl {
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.01em;
  line-height: 42.6rem;
  margin-left: 6rem;
  text-align: left;
  color: #271d20;
}
.contact__wrapper .contact__form .privacy__content a {
  text-decoration: underline;
  color: #271d20;
}
.contact__wrapper .contact__form .contact__control {
  margin-top: 24rem;
  text-align: center;
}
.contact__wrapper .contact__form .contact__control .wpcf7-spinner {
  display: block;
}
.contact__wrapper .contact__form .contact__control input[type=submit], .contact__wrapper .contact__form .contact__control input[type=button] {
  width: 200rem;
  height: 50rem;
  margin: 0 15rem;
  border: 0;
  border-radius: 10rem;
  background: #3d405c;
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.01em;
  line-height: 42.6rem;
  text-align: center;
  color: #fff;
  display: inline-block;
}
.contact__wrapper .contact__form .contact__control input[type=submit]:disabled, .contact__wrapper .contact__form .contact__control input[type=button]:disabled {
  background: gray;
}
.contact__wrapper .thanks__content {
  margin-top: 50rem;
}
.contact__wrapper .thanks__content .c__text {
  font-weight: bold;
  font-size: 20rem;
  line-height: 29rem;
  text-align: center;
  color: #271d20;
}
.contact__wrapper .thanks__content .c__txt {
  font-weight: normal;
  font-size: 16rem;
  line-height: 29rem;
  margin-top: 15rem;
  text-align: center;
  color: #271d20;
}
.contact__wrapper .thanks__content .top__btn {
  width: 320rem;
  height: 70rem;
  margin: auto;
  margin-top: 30rem;
  border-radius: 14.97rem;
  background: transparent;
  border: 1rem solid #3d405c;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__wrapper .thanks__content .top__btn span {
  font-weight: 500;
  font-size: 16rem;
  letter-spacing: 0.01em;
  line-height: 42.6rem;
  text-align: center;
  color: #3d405c;
}

@media screen and (max-width: 1400px) {
  .company__wrapper .company__list {
    left: 8%;
  }
  .company__wrapper .message__content {
    padding-right: 0;
  }
  .company__wrapper .iso__content .content__wrapper {
    padding-right: 0;
  }
  .company__wrapper .outline__content {
    padding-right: 0;
  }
  .company__wrapper .history__wrapper .history__content {
    padding-right: 0;
  }
  .company__wrapper .access__content {
    padding-right: 0;
  }
}
@media screen and (max-width: 1270px) {
  footer .footer__inner {
    padding: 0 30rem;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 0.8px;
  }
}
@media screen and (max-width: 900px) {
  html {
    font-size: 0.7px;
  }
  .recruit__wrapper .recruit-detail .recruit__slider {
    right: 30rem;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.26666vw;
  }
  header .logo {
    width: 180rem;
  }
  header {
    width: 100%;
    padding: 16rem 12rem;
  }
  .frontview {
    width: 315rem;
    height: 500rem;
    margin: auto;
    margin-top: 54rem;
  }
  .frontview .slider__pagination .swiper-pagination-bullet {
    font-size: 14rem;
  }
  .frontview .slider__pagination {
    left: -36rem;
    bottom: 0;
    width: 40rem;
    padding: 0;
  }
  .frontview .slider__pagination .swiper-pagination-bullet {
    height: 80rem;
  }
  .section-news {
    width: 345rem;
    margin: 35rem 0 0 auto;
  }
  .section-title.news .en__txt {
    font-size: 50rem;
  }
  .section-title.news .ja__txt {
    font-size: 20rem;
  }
  .section-news .news__header {
    padding-right: 0;
    display: block;
  }
  .section-title.news {
    display: flex;
    flex-direction: row-reverse;
    align-items: baseline;
    justify-content: left;
  }
  .section-news .news__inner .news__items {
    padding-left: 0;
  }
  .section-news .news__header.sp {
    margin-top: 35rem;
    margin-right: 35rem;
    justify-content: center;
  }
  .section-news .news__inner .news__items .n__item .content__text .date {
    font-size: 13rem;
  }
  .section-news .news__inner .news__items .n__item .content__text .cat {
    width: 90rem;
    height: 26rem;
    font-size: 12rem;
    line-height: 26rem;
  }
  .section-news .news__inner .news__items .n__item .content__text .t__txt {
    font-size: 14rem;
  }
  .section-news .news__inner .news__items .n__item .content__text .arrow {
    width: 10rem;
  }
  .section-news .news__inner .news__items .n__item .content__text {
    padding: 20rem 20rem 28rem;
  }
  .section-news .news__inner .swiper-button-prev {
    width: 14rem;
    height: 54rem;
    left: -22rem;
  }
  .section-philo {
    width: 100%;
    height: auto;
    margin-top: 70rem;
  }
  .section-philo .content__inner {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .section-philo .content__inner .content__text {
    width: 340rem;
    margin: auto;
  }
  .section-title .en__txt {
    font-size: 80rem;
  }
  .section-philo .content__inner .content__text .c__txt {
    font-size: 20rem;
    letter-spacing: 0.03em;
    line-height: 41rem;
    margin-top: 15rem;
  }
  .section-philo .content__inner .more__btn {
    margin-top: 90rem;
  }
  .section-works {
    padding: 80rem 0;
  }
  .section-works .title__part {
    width: 330rem;
  }
  .section-works .control__btns {
    position: relative;
    margin: auto;
    margin-top: 40rem;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    transform: unset;
  }
  .section-works .works__items {
    width: 315rem;
    margin-top: 30rem;
  }
  .section-works .works__items .w__item {
    padding: 40rem 35rem 40rem;
  }
  .section-company .title__part {
    width: 330rem;
  }
  .section-company .content__inner {
    width: 100%;
    margin: auto;
    margin-top: 35rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .section-company .content__inner .content__text {
    width: 100%;
    padding-top: 0;
  }
  .section-company .content__inner .c__image {
    width: 315rem;
    margin: auto;
    margin-top: 35rem;
  }
  .section-company .flow__text .scroll-text {
    font-size: 91rem;
  }
  .section-company .flow__text {
    bottom: 66rem;
  }
  .section-company {
    padding: 100rem 0 125rem;
  }
  .section-recruit {
    width: 100%;
    height: auto;
  }
  .section-recruit .recruit__part {
    width: 250rem;
    height: 425rem;
    padding-top: 55rem;
    border-radius: 155rem;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .section-recruit .recruit__part .section-title .ja__txt {
    font-size: 22rem;
  }
  .section-recruit .recruit__part .section-title .en__txt {
    font-size: 56rem;
  }
  .section-recruit .recruit__part .c__txt {
    font-size: 18rem;
    letter-spacing: 0.02em;
    line-height: 29rem;
    margin-top: 22rem;
  }
  .section-recruit .recruit__part .link__btn {
    height: 100rem;
  }
  .section-recruit .recruit__part .link__btn .lbl {
    font-size: 15rem;
  }
  .section-recruit .recruit__part .link__btn .icon {
    width: 62rem;
    margin-top: 10rem;
  }
  .section-map {
    width: 100%;
    height: 450rem;
  }
  footer .footer__inner {
    width: 100%;
  }
  footer .copyright {
    width: 100%;
    padding: 0;
    font-weight: 500;
    font-size: 12rem;
    line-height: 26.5rem;
    margin-top: 30rem;
    text-align: center;
  }
  .sp-menu {
    width: 30rem;
    height: 30rem;
    border-radius: 5rem;
    background: #1c191c;
    position: relative;
  }
  .sp-menu.open span:nth-child(1) {
    top: 15rem;
    transform: translate(-50%) rotate(45deg);
  }
  .sp-menu.open span:nth-child(2) {
    width: 0;
  }
  .sp-menu.open span:nth-child(3) {
    top: 15rem;
    transform: translate(-50%) rotate(-45deg);
  }
  .sp-menu span {
    width: 10rem;
    height: 0;
    border-top: 1px solid #fff;
    position: absolute;
    left: 50%;
    top: 11rem;
    transform: translate(-50%);
    transition: 0.3s;
  }
  .sp-menu span + span {
    top: 15rem;
  }
  .sp-menu span + span + span {
    top: 19rem;
  }
  header .hambeg__menu {
    width: 100%;
    height: 100%;
    background: url(../img/hambeg_bg.webp);
    background-size: cover;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 3;
    display: none;
  }
  header .hambeg__menu .close__btn {
    width: 120rem;
    display: flex;
    position: absolute;
    bottom: 20rem;
    left: 50%;
    transform: translate(-50%);
  }
  header nav {
    height: 90%;
    overflow: auto;
    display: block;
  }
  header nav ul {
    display: block;
  }
  header nav ul li {
    padding: 0 25rem;
  }
  header nav ul li {
    border-bottom: 1rem solid #fff;
  }
  header nav ul li a {
    font-size: 15rem;
    padding: 25rem 0;
    display: block;
    color: white;
  }
  header nav ul li.parent a {
    display: inline-block;
  }
  header nav ul li {
    position: relative;
  }
  header nav ul li:after {
    content: "";
    width: 15px;
    height: 11.15px;
    background: url(../img/arrow_w.webp);
    background-size: 100% 100%;
    position: absolute;
    right: 25rem;
    top: 50%;
    transform: translateY(-50%);
  }
  header nav ul li.parent.open:after {
    opacity: 0;
  }
  header nav ul li.parent:before {
    content: "";
    width: 15rem;
    height: 0;
    border-top: 2rem solid #fff;
    position: absolute;
    right: 25rem;
    top: 35rem;
  }
  header nav ul li.parent:after {
    content: "";
    width: 0;
    height: 15rem;
    border-left: 2rem solid #fff;
    position: absolute;
    right: 32rem;
    top: 28rem;
    transform: unset;
  }
  header nav .top__btns {
    display: block;
    padding: 30rem 25rem;
  }
  header nav .top__btns .t__btn {
    width: 100%;
    margin: 0;
    margin-bottom: 17rem;
    justify-content: center;
    position: relative;
  }
  header nav .top__btns .t__btn .icon {
    right: 11rem;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }
  header nav ul li.parent ul.child {
    width: 100%;
    padding: 15rem 0 25rem;
    background: transparent;
    position: relative;
    left: auto;
    top: auto;
    display: none;
    opacity: 1;
    visibility: visible;
    transition: unset;
    transform: unset;
  }
  header nav ul li.parent ul.child li {
    padding: 6rem 0;
    border-bottom: 0;
  }
  header nav ul li.parent ul.child li:after {
    content: unset;
  }
  header nav ul li.parent ul.child li a {
    font-size: 14rem;
    padding: 0;
  }
  header nav ul li.parent.open a {
    padding-bottom: 0;
  }
  .subfrontview {
    width: 100%;
    height: auto;
  }
  .subfrontview .title {
    position: absolute;
    left: 20rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .subfrontview .title .en__txt {
    font-size: 60rem;
  }
  .subfrontview .breadcrumb {
    left: auto;
    right: 18rem;
    top: 75rem;
  }
  .business__wrapper .detail__content {
    width: 100%;
    margin: auto;
    padding: 45rem 0 50rem;
    display: block;
  }
  .business__wrapper .detail__content .c__text {
    width: 320rem;
    margin: auto;
    margin-top: 45rem;
    font-weight: normal;
    font-size: 16rem;
    letter-spacing: 0.01em;
    line-height: 38rem;
  }
  .business__wrapper .gap {
    width: 100%;
  }
  .business__wrapper .detail__content .c__image {
    width: 186rem;
    right: 60rem;
    top: 0;
    margin-top: 0;
  }
  .business__wrapper .business__content .content__inner {
    width: 100%;
  }
  .business__wrapper .t__title {
    margin-left: 18rem;
  }
  .business__wrapper .c__image {
    width: 320rem;
    margin: 30rem 0 0 auto;
    position: relative;
    top: auto;
    right: auto;
  }
  .business__wrapper .business__content .content__inner .work__items {
    width: 100%;
    margin: auto;
  }
  .business__wrapper .business__content .content__inner .work__items .w__item {
    padding: 55rem 20rem;
  }
  .business__wrapper .business__content .content__inner .work__items .w__item .content__text {
    padding: 20rem 0 0 10rem;
  }
  .business__wrapper .equit__content .content__inner {
    width: 320rem;
  }
  .business__wrapper .equit__content .content__inner .t__title {
    margin-left: 0;
  }
  .business__wrapper .equit__content .content__inner .equit__items {
    margin-top: 40rem;
  }
  .business__wrapper .equit__content .content__inner .equit__items .e__item {
    width: 150rem;
    height: 60rem;
  }
  .business__wrapper .equit__content .content__inner .equit__items .e__item span {
    font-size: 14rem;
    line-height: 1.5;
  }
  .business__wrapper .equit__content .content__inner .mechine__content {
    width: 100%;
    height: auto;
    margin-top: 25rem;
    padding: 30rem;
    border-radius: 10rem;
  }
  .business__wrapper .equit__content .content__inner .mechine__content .mechine__items {
    margin-top: 35rem;
    display: block;
  }
  .business__wrapper .equit__content .content__inner .mechine__content .mechine__items .m__item {
    width: 100%;
    padding: 25rem 0;
    border-left: 0;
    border-bottom: 1rem solid #bdbebf;
  }
  .business__wrapper .equit__content .content__inner .mechine__content .mechine__items .m__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .business__wrapper .equit__content .content__inner .mechine__content .mechine__items .m__item:first-child {
    padding-top: 0;
  }
  .business__wrapper .equit__content {
    background: url(../img/equit_bg_sp.webp);
    background-size: cover;
  }
  .business__wrapper .equit__content .content__inner .mechine__content .m__lbl {
    line-height: 1.5;
  }
  header .re__logo {
    width: 325rem;
    margin: auto;
  }
  header.recruit {
    padding: 20rem 0;
  }
  header.recruit nav .top__btns {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 20rem 0;
  }
  header.recruit nav .top__btns .t__btn {
    width: 145rem;
    margin: 0 15rem;
    justify-content: space-between;
  }
  header.recruit nav .top__btns .t__btn .icon {
    position: relative;
    top: auto;
    transform: unset;
    right: auto;
  }
  footer .recruit__f__logo {
    width: 304rem;
  }
  footer.recruit {
    padding: 40rem 0 80rem;
  }
  .recruit__wrapper .recruit-detail {
    padding: 340rem 0 80rem;
    background: url(../img/re-detail-bg_sp.webp);
    background-size: cover;
  }
  .recruit__wrapper .recruit-detail .recruit__inner {
    width: 320rem;
  }
  .recruit__wrapper .recruit-detail .recruit__inner .content__text {
    width: 100%;
  }
  .recruit__wrapper .recruit-detail .recruit__inner .content__text .t__txt {
    font-size: 32rem;
  }
  .recruit__wrapper .recruit-detail .recruit__inner .content__text .detail__link {
    width: 200rem;
    height: 45rem;
    margin: auto;
    margin-top: 35rem;
  }
  .recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item .c__lbl {
    width: 78rem;
    height: 24rem;
    border-radius: 4.88rem;
    font-size: 11rem;
  }
  .recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item .r__txt {
    font-size: 55rem;
    margin-top: 20rem;
    letter-spacing: -0.05em;
  }
  .recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item .r__txt span {
    font-size: 22rem;
    line-height: 1;
    margin: 0 0 14rem 3rem;
  }
  .recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item .r__lbl {
    font-size: 11rem;
    line-height: 1.3;
    margin-top: 9rem;
  }
  .recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item .r__txt .t01 {
    font-size: 22rem;
  }
  .recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info .r__item .r__txt .b01 {
    font-size: 40rem;
    line-height: 1;
    margin: 0 0 3rem 10rem;
  }
  .recruit__wrapper .recruit-detail .recruit__slider {
    right: auto;
    left: 0;
  }
  .recruit__wrapper .recruit-detail .recruit__slider {
    width: 100%;
    height: 215rem;
    top: 50rem;
  }
  .recruit-works {
    width: 305rem;
    margin: auto;
    padding: 70rem 0;
    display: block;
  }
  .subtitle .en__txt {
    font-size: 70rem;
  }
  .recruit-works .content__text {
    width: 100%;
  }
  .recruit-interview {
    width: 100%;
    height: auto;
    padding: 60rem 0;
    background: url(../img/interview_bg_sp.webp);
    background-size: cover;
    display: block;
  }
  .subtitle.interview {
    padding-left: 30rem;
  }
  .recruit-interview .title__part .control__btns {
    margin-left: 30rem;
  }
  .recruit-interview .interview__slider {
    width: 320rem;
    margin: auto;
    margin-top: 40rem;
  }
  .recruit-outline {
    padding: 65rem 0;
  }
  .recruit-outline .content__inner {
    width: 320rem;
    display: block;
  }
  .recruit-outline .content__inner .content__text {
    width: 100%;
    margin-top: 20rem;
  }
  .recruit-outline .content__inner .content__text table tr {
    display: grid;
  }
  .recruit-outline .content__inner .content__text table tr td:first-child {
    width: 100%;
    padding-bottom: 0;
  }
  .recruit-outline .content__inner .content__text table tr td:last-child {
    padding-top: 15rem;
  }
  .entry__content {
    width: 320rem;
    height: auto;
    margin: auto;
    padding: 60rem 0;
  }
  .entry__content .content__inner {
    width: 266rem;
    display: block;
  }
  .entry__content .content__inner .entry__btn {
    width: 181.96rem;
    height: 181.96rem;
    margin: auto;
    margin-top: 70rem;
  }
  .company__wrapper .company__list {
    width: 340rem;
    margin: auto;
    padding-top: 45rem;
    position: relative;
    top: auto;
    left: auto;
  }
  .company__wrapper .company__list ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .company__wrapper .company__list ul li {
    width: 160rem;
    margin-bottom: 15rem;
  }
  .company__wrapper .company__list ul li a {
    display: block;
  }
  .company__wrapper .company__list ul li a:after {
    width: 100%;
  }
  .company__wrapper .message__content {
    width: 300rem;
    margin: auto;
    padding: 80rem 0;
  }
  .company__wrapper .message__content .content__inner {
    width: 100%;
  }
  .company__wrapper .message__content .content__inner .ceo__info {
    margin: 30rem 0rem 0 0;
  }
  .company__wrapper .iso__content .content__wrapper {
    width: 300rem;
  }
  .company__wrapper .iso__content .content__wrapper .content__inner {
    width: 100%;
  }
  .company__wrapper .iso__content .content__wrapper .content__inner .iso__items {
    display: block;
  }
  .company__wrapper .iso__content .content__wrapper .content__inner .iso__items .i__item .c__text .i__txt {
    font-size: 14rem;
    letter-spacing: 0;
    margin-top: 10rem;
    line-height: 1.7;
  }
  .company__wrapper .iso__content .content__wrapper .content__inner .iso__items .i__item .c__image {
    width: 140rem;
    display: inline-flex;
  }
  .company__wrapper .iso__content .content__wrapper .content__inner .iso__items .i__item .c__image.sp {
    display: inline-flex !important;
    margin-left: 10rem;
  }
  .company__wrapper .outline__content {
    width: 320rem;
    margin: auto;
    padding: 65rem 0;
  }
  .company__wrapper .outline__content .content__inner table tr {
    display: grid;
  }
  .company__wrapper .outline__content .content__inner table tr td:first-child {
    width: 100%;
    padding-bottom: 0;
  }
  .company__wrapper .outline__content .content__inner table tr td:last-child {
    padding-top: 10rem;
  }
  .company__wrapper .outline__content .content__inner {
    width: 100%;
  }
  .company__wrapper .outline__content .content__inner table tr td .address {
    display: block;
  }
  .company__wrapper .outline__content .content__inner table tr td .address .map__link {
    margin-left: 0;
    margin-top: 16rem;
  }
  .company__wrapper .history__wrapper .history__content {
    width: 320rem;
    margin: auto;
    padding: 65rem 0;
  }
  .company__wrapper .history__wrapper .history__content .content__inner {
    width: 100%;
  }
  .company__wrapper .history__wrapper .history__content .content__inner table tr {
    display: grid;
  }
  .company__wrapper .history__wrapper .history__content .content__inner table tr td:first-child {
    width: 100%;
    border-left: 1rem solid #1f7da5;
    border-right: 0;
    padding-left: 20rem;
    padding-bottom: 0;
  }
  .company__wrapper .history__wrapper .history__content .content__inner table tr td:last-child .f__text {
    width: 100%;
    display: block;
  }
  .company__wrapper .history__wrapper .history__content .content__inner table tr td:last-child {
    width: 100%;
    padding-left: 20rem;
    padding-top: 5rem;
    border-left: 1rem solid #1f7da5;
    position: relative;
  }
  .company__wrapper .history__wrapper .history__content .content__inner table tr td:last-child:after {
    content: "";
    width: 12rem;
    height: 12rem;
    background: #1f7da5;
    position: absolute;
    left: 0;
    top: 15rem;
    transform: translate(-50%);
  }
  .company__wrapper .history__wrapper .history__content .content__inner table tr td:last-child .f__text .month {
    display: block;
  }
  .company__wrapper .history__wrapper .history__content .content__inner table tr td:last-child .f__text .txt {
    font-size: 14rem;
    margin-top: 5rem;
    display: block;
  }
  .company__wrapper .history__wrapper .history__content .content__inner table tr td:first-child .m__lbl:after {
    content: unset;
  }
  .company__wrapper .history__wrapper .history__content .content__inner table tr:first-child td:before {
    content: "";
    width: 12rem;
    height: 73rem;
    position: absolute;
    right: auto;
    top: 0;
    left: 0;
    transform: translate(-50%);
    z-index: 1;
  }
  .company__wrapper .history__wrapper .history__content .content__inner table tr:first-child td:last-child:before {
    content: unset;
  }
  .company__wrapper .access__content {
    width: 320rem;
    margin: auto;
    padding: 67rem 0 100rem;
  }
  .company__wrapper .access__content .content__inner .info__content {
    display: block;
  }
  .company__wrapper .access__content .content__inner .info__content .tel {
    margin-top: 8rem;
  }
  .company__wrapper .access__content .content__inner .way__items {
    width: 320rem;
    margin: auto;
    margin-top: 70rem;
    display: block;
  }
  .company__wrapper .access__content .content__inner {
    width: 100%;
  }
  .company__wrapper .access__content .content__inner .way__items .w__item {
    width: 100%;
  }
  .company__wrapper .access__content .content__inner .way__items .w__item:last-child {
    margin-top: 40rem;
  }
  .privacy__wrapper {
    width: 320rem;
    margin: 70rem auto;
  }
  .privacy__wrapper .privacy__info {
    width: 100%;
    height: 225rem;
    padding: 0 20rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .privacy__wrapper .privacy__info .p__lbl {
    font-size: 15rem;
    margin-bottom: 20rem;
  }
  .philo__wrapper .philo__content .content__inner {
    width: 320rem;
    display: block;
  }
  .philo__wrapper .philo__content .gap {
    width: 100%;
  }
  .philo__wrapper .philo__content .content__inner .c__image {
    width: 187rem;
    margin: 0 30rem 0 auto;
  }
  .philo__wrapper .philo__content .content__inner .content__text {
    width: 100%;
    margin-top: 65rem;
  }
  .philo__wrapper .philo__content .content__inner .content__text .possible__content {
    padding: 25rem;
  }
  .philo__wrapper .philo__content .content__inner .content__text .possible__content table tr {
    display: grid;
  }
  .philo__wrapper .philo__content .content__inner .content__text .possible__content table tr td:first-child {
    padding-bottom: 0;
  }
  .philo__wrapper .philo__content .content__inner .content__text .possible__content table tr td:last-child {
    padding-left: 0;
    padding-top: 8rem;
  }
  .news__wrapper {
    width: 340rem;
    margin: 60rem auto;
  }
  .news__wrapper .news__items .n__item {
    width: 160rem;
    padding: 0;
  }
  .news__wrapper .news__items {
    justify-content: space-between;
  }
  .news__wrapper .news__items .n__item .n__inner .content__text .cat {
    width: 60rem;
    height: 18rem;
    font-size: 8rem;
  }
  .news__wrapper .news__items .n__item .n__inner .content__text .date {
    font-size: 12rem;
    line-height: 1.5;
  }
  .news__wrapper .news__items .n__item .n__inner .content__text .t__txt {
    font-size: 13rem;
    line-height: 1.7;
  }
  .news__wrapper .news__items .n__item .n__inner .content__text .arrow {
    width: 11rem;
  }
  .news__wrapper .news__items .n__item .n__inner .content__text {
    padding: 20rem 15rem 25rem;
  }
  .news-detail__wrapper .content__inner {
    width: 340rem;
    height: auto;
    margin: auto;
    padding: 20rem;
  }
  .news-detail__wrapper .content__inner .t__lbl {
    font-size: 20rem;
    line-height: 1.8;
  }
  .news-detail__wrapper .content__inner .content__text img {
    margin-bottom: 30rem;
  }
  .news-detail__wrapper .content__inner .control__btns .c__btn {
    height: 37rem;
  }
  .news-detail__wrapper .content__inner .control__btns .c__btn .lbl {
    font-size: 11rem;
  }
  .news-detail__wrapper .content__inner .control__btns .c__btn .icon {
    width: 4rem;
    left: 10rem;
  }
  .news-detail__wrapper .content__inner .control__btns .c__btn:nth-child(3) .icon {
    right: 10rem;
  }
  .news-detail__wrapper .content__inner .control__btns {
    margin-top: 30rem;
    border-radius: 5rem;
  }
  .news-detail__wrapper {
    padding: 60rem 0;
  }
  .contact__wrapper {
    width: 100%;
    margin: 60rem auto;
  }
  .contact__wrapper .contact__steps {
    width: 340rem;
    margin: auto;
    margin-bottom: 35rem;
  }
  .contact__wrapper .contact__steps .c__step .lbl {
    font-size: 12rem;
  }
  .contact__wrapper .contact__steps .c__step {
    height: 50rem;
  }
  .contact__wrapper .contact__steps .c__step.active:after {
    width: 10rem;
    height: 100%;
    background: url(../img/step_gap_sp.webp);
    background-size: 100% 100%;
    right: -9rem;
  }
  .contact__wrapper .detail__txt {
    width: 340rem;
    margin: auto;
    font-size: 14rem;
  }
  .contact__wrapper .contact__form {
    margin-top: 45rem;
  }
  .contact__wrapper .contact__form .c__item {
    display: block;
    padding: 0 17rem 55rem;
  }
  .contact__wrapper .contact__form .c__item:first-child .item {
    width: 100%;
  }
  .contact__wrapper .contact__form .c__item:first-child .item:first-child {
    margin-bottom: 20rem;
  }
  .contact__wrapper .contact__form .c__item .item .p__area {
    display: block;
  }
  .contact__wrapper .contact__form .c__item:first-child .item .p__area input[type=text] {
    width: 100%;
  }
  .contact__wrapper .contact__form .c__item:first-child .item .p__area input[type=text]:last-child {
    margin-top: 20rem;
  }
  .contact__wrapper .contact__form .c__item .item .header__top .h__lbl {
    line-height: 1;
  }
  .contact__wrapper .contact__form .c__item:nth-child(2) .item {
    width: 100%;
  }
  .contact__wrapper .contact__form .c__item:nth-child(2) .item:first-child {
    margin-bottom: 20rem;
  }
  .contact__wrapper .contact__form .c__item:nth-child(3) .item .p__area input[type=text] {
    width: 88rem;
  }
  .contact__wrapper .contact__form .c__item:nth-child(3) .item .p__area .pin {
    display: inline-flex;
    margin: 0 6rem;
  }
  .contact__wrapper .contact__form .c__item:nth-child(3) .item .p__area {
    display: flex;
  }
  .contact__wrapper .contact__form .c__item .item .p__area textarea {
    width: 100%;
    height: 180rem;
  }
  .contact__wrapper .thanks__content .c__txt {
    font-size: 15rem;
  }
  .recruit__wrapper .recruit-detail .recruit__inner .content__text .recruit__info {
    width: 110%;
    margin-left: -5%;
  }
  .re__frontview .c__text {
    width: 350rem;
    display: flex;
    position: absolute;
    left: 50%;
    top: 13%;
    transform: translate(-50%);
  }
  .section-title .ja__txt {
    line-height: 42rem;
  }
  .section-news .news__inner .news__items .n__item .c__image {
    height: 270rem;
  }
  .news__wrapper .news__items .n__item .n__inner .c__image {
    width: 100%;
    height: 120rem;
  }
}/*# sourceMappingURL=style.css.map */