@charset "UTF-8";
.u-pc-only {
  display: block !important;
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-pc-only-inline {
  display: inline !important;
}

@media screen and (max-width: 767px) {
  .u-pc-only-inline {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

.u-sp-only-inline {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .u-sp-only-inline {
    display: inline !important;
  }
}

.u-pc-only-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-sp-only-flex {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .u-pc-only-flex {
    display: none !important;
  }
  .u-sp-only-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.u-dev-hide {
  display: none !important;
}

.u-english {
  font-family: "Roboto", sans-serif !important;
}

/* FontFamily */
body {
  font-family: "Noto Sans JP", sans-serif;
}

/* font-weight */
/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

@media screen and (max-width: 996px) {
  html {
    font-size: 1.45455vw;
  }
}

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

@media screen and (max-width: 375px) {
  html {
    font-size: 4.26667vw;
    overflow-x: hidden;
  }
}

html.is-fixed {
  overflow: hidden;
}

/* pcの電話番号発信対応 */
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #242424;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  padding: 0;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

input:focus {
  background-color: #f5f5f5;
}

input:-webkit-autofill {
  -webkit-transition: background-color 5000s ease-in-out 0s !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

.appp {
  margin: 1px;
}

#js-loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  position: fixed;
  z-index: 99999;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#js-loading img {
  width: 80%;
  max-width: 474px;
  height: auto;
  margin: 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  #js-loading img {
    width: 80vw;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}

#js-loading.is-active {
  opacity: 0;
  visibility: hidden;
  -webkit-animation: fadeOut 1.5s forwards;
  animation: fadeOut 1.5s forwards;
}

.my__mail-icon {
  color: #aceefa;
  margin-right: 10px;
  margin-right: 0.625rem;
}
.my__building-icon {
  color: #aceefa;
  margin-right: 10px;
  margin-right: 0.625rem;
}

.my__develop-hide {
  display: none;
}

.my__bg-gray {
  background-color: #fafafa;
}

.my__over-hide {
  overflow-x: hidden;
}

.my__white-space {
  display: block;
  content: "";
  height: 260px;
  height: 16.25rem;
  width: 100vw;
  max-width: 100%;
  background-color: #fff;
}

.my__box-shadow {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

.my__box-shadow--pc {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 767px) {
  .my__box-shadow--pc {
    -webkit-box-shadow: unset;
    box-shadow: unset;
  }
}

.my__recruit-page {
  background-color: #fff;
}

.circle-btn {
  display: block;
  width: 100%;
  max-width: 250px;
  max-width: 15.625rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  border-radius: 2.0625rem;
  color: #16205c;
  background-color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 18px 0;
  padding: 1.125rem 0;
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: relative;
}

@media screen and (max-width: 767px) {
  .circle-btn {
    max-width: 19.0625rem;
  }
}

.circle-btn--vision::before,
.circle-btn--field::before,
.circle-btn--message::before,
.circle-btn--fc::before,
.circle-btn--brand::before,
.circle-btn--overseas::before,
.circle-btn--construction::before,
.circle-btn--industry::before,
.circle-btn--environment::before,
.circle-btn--tenant-group::before,
.circle-btn--m-navi::before {
  position: absolute;
  content: "";
  background: url(/assets/images/common/circle-btn-arrow-icon.png) no-repeat center center / contain;
  top: 50%;
  right: 18px;
  right: 1.125rem;
  width: 17px;
  width: 1.0625rem;
  height: 10px;
  height: 0.625rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* .circle-btn--vision::before {
  content: "\f005";
}

.circle-btn--field::before {
  content: "\f005";
}

.circle-btn--message::before {
  content: "\f005";
}

.circle-btn--fc::before {
  content: "\f005";
}

.circle-btn--overseas::before {
  content: "\f005";
}

.circle-btn--construction::before {
  content: "\f005";
}

.circle-btn--industry::before {
  content: "\f005";
}

.circle-btn--environment::before {
  content: "\f005";
}

.circle-btn--tenant-group::before {
  content: "\f005";
}

.circle-btn--m-navi::before {
  content: "\f005";
} */

.circle-btn--wide {
  max-width: 388px;
  max-width: 24.25rem;
}

.company-contact {
  background: url(/assets/images/common/company-cotact-bg.jpg) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  .company-contact {
    background: url(/assets/images/common/company-contact-sp-bg.jpg) no-repeat center center/cover;
  }
}
.company-contact--en {
  background-position-y: top;
}
@media screen and (max-width: 767px) {
  .company-contact--en {
    background-position-y: center;
  }
}

.company-contact__inner {
  width: 100%;
  max-width: 1124px;
  max-width: 70.25rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 70px;
  padding-top: 4.375rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  margin-top: 140px;
  margin-top: 8.75rem;
}

@media screen and (max-width: 767px) {
  .company-contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2.5rem 1.25rem;
    margin-top: 6.25rem;
  }
}

.company-contact__company,
.company-contact__contact {
  width: 100%;
  max-width: 410px;
  max-width: 25.625rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .company-contact__company,
  .company-contact__contact {
    padding: 0 0.9375rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.company-contact__company {
  margin-right: auto;
  padding-left: 20px;
  padding-left: 1.25rem;
}

@media screen and (max-width: 767px) {
  .company-contact__company {
    padding-left: inherit;
  }
}

.company-contact__contact {
  margin-left: auto;
  padding-right: 20px;
  padding-right: 1.25rem;
}

@media screen and (max-width: 767px) {
  .company-contact__contact {
    padding-right: inherit;
    margin-top: 8rem;
  }
}

.company {
  color: #fff;
  text-align: center;
}

.company__title {
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.875;
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 19px;
  padding-bottom: 1.1875rem;
}

@media screen and (max-width: 767px) {
  .company__title {
    font-size: 1.125rem;
    padding-bottom: 0.75rem;
  }
}

.company__title::after {
  position: absolute;
  content: "";
  width: 55px;
  width: 3.4375rem;
  height: 2px;
  height: 0.125rem;
  background-color: #fff;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.company__heading {
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
  margin-top: 34px;
  margin-top: 2.125rem;
}

@media screen and (max-width: 767px) {
  .company__heading {
    margin-top: 1.25rem;
    font-size: 1.25rem;
  }
}

.company__text {
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.14286;
  letter-spacing: 0.08em;
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.company__btn {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (max-width: 767px) {
  .company__btn {
    margin-top: 2.5rem;
  }
}

.u-english .company__btn {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .u-english .company__btn {
    margin-top: 2rem;
  }
}

.company__btn a {
  color: #16205c;
  background-color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  display: block;
  width: 100%;
  max-width: 390px;
  max-width: 24.375rem;
  padding: 20px 0;
  padding: 1.25rem 0;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.42857;
  position: relative;
  transition: transform 0.3s;
}
.company__btn a:hover {
  color: #fff;
  transform: scale(1, 1);
}
.company__btn a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #16205c;
  color: #fff;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.company__btn a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.contact {
  color: #fff;
  text-align: center;
}

.contact__title {
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.875;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 19px;
  padding-bottom: 1.1875rem;
}

@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 1.125rem;
    padding-bottom: 0.75rem;
  }
}

.contact__title::after {
  position: absolute;
  content: "";
  width: 55px;
  width: 3.4375rem;
  height: 2px;
  height: 0.125rem;
  background-color: #fff;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.contact__tel {
  margin-top: 42px;
  margin-top: 2.625rem;
  font-weight: 700;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .contact__tel {
    font-size: 1.875rem;
    margin-top: 1.25rem;
  }
}

.contact__fax {
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.875;
  letter-spacing: 0.08em;
  margin-top: 6px;
  margin-top: 0.375rem;
}

.contact__btn {
  margin-top: 33px;
  margin-top: 2.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .contact__btn {
    margin-top: 2.5rem;
    position: relative;
  }
}

.contact__btn a {
  color: #fff;
  background-color: #16205c;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  display: block;
  width: 100%;
  max-width: 390px;
  max-width: 24.375rem;
  padding: 20px 0;
  padding: 1.25rem 0;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.42857;
  position: relative;
  transition: transform 0.3s;
}
.contact__btn a:hover {
  color: #16205c;
  transform: scale(1, 1);
}
.contact__btn a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #fff;
  color: #16205c;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.contact__btn a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.u-english .contact__en-heading {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2rem;
}
.u-english .contact__mail {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .u-english .contact__en-heading {
    font-size: 1.2rem;
  }
  .u-english .contact__mail {
    font-size: 1.8rem;
  }
}

.contents-menu__inner {
  width: 100%;
  max-width: 830px;
  max-width: 51.875rem;
  margin: 0 auto;
  padding: 50px 15px 60px;
  padding: 3.125rem 15px 3.75rem;
}

@media screen and (max-width: 767px) {
  .contents-menu__inner {
    padding: 2.3125rem 2.1875rem 3.75rem;
  }
}

.contents-menu--service .contents-menu__inner {
  padding-bottom: 116px;
  padding-bottom: 7.25rem;
}

.contents-menu__heading {
  position: relative;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 4px 0;
  padding: 0.25rem 0;
  font-weight: 700;
  color: #16205c;
}

.contents-menu__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  background: #16205c;
  z-index: 1;
}

.contents-menu__heading span {
  position: relative;
  z-index: 99;
  background-color: #fafafa;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.contents-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.contents-menu__items--center {
  justify-content: center;
  gap: 0 30px;
}

@media screen and (max-width: 767px) {
  .contents-menu__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .contents-menu__items a {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.875rem;
  }
}

.contents-menu__items--top {
/*  width: 100%;*/
/*  max-width: 555px;
  max-width: 34.6875rem;*/
/*  padding: 0 15px;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;*/
}

@media screen and (max-width: 767px) {
  .contents-menu__items--top {
    margin-top: 0;
    padding: 0;
  }
}

.dashed-border-right-pc {
  position: relative;
}

.dashed-border-right::after {
  position: absolute;
  content: "";
  background: linear-gradient(to bottom, #fff, #fff 8px, transparent 8px, transparent 8px);
  background-size: 1px 16px;
  background-position: top;
  background-repeat: repeat-y;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .dashed-border-right::after {
    display: none;
  }
}

.dashed-border-bottom-sp {
  position: relative;
}

@media screen and (max-width: 767px) {
  .dashed-border-bottom-sp::after {
    position: absolute;
    content: "";
    background: linear-gradient(to right, #fff, #fff 8px, transparent 8px, transparent 8px);
    background-size: 16px 1px;
    background-position: bottom;
    background-repeat: repeat-x;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }
}

.description-titles {
  color: #fff;
  width: 100%;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .description-titles {
    max-width: 100%;
  }
}

.description-titles__field-name {
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

@media screen and (max-width: 767px) {
  .description-titles__field-name {
    font-size: 1rem;
    padding-bottom: 0.625rem;
  }
}

.description-titles__field-name::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 55px;
  width: 3.4375rem;
  height: 2px;
  height: 0.125rem;
  background-color: #fff;
}

.description-titles__text {
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .description-titles__text {
    font-size: 1.25rem;
  }
}

.drawer-menu {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  display: none;
}

.drawer-menu__logo {
  padding-left: 20px;
  padding-left: 1.25rem;
  height: 36px;
  height: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.drawer-menu__item {
  color: #16205c;
}

.drawer-menu__item a {
  border-bottom: solid 1px #fff;
  border-bottom: solid 0.0625rem #fff;
  background-color: #dedede;
  display: block;
  width: 100%;
  position: relative;
  padding: 17px 20px;
  padding: 1.0625rem 1.25rem;
  cursor: pointer;
}

.drawer-menu__item a .nav-arrow {
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  right: 2.1875rem;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.drawer-menu__item a .nav-arrow::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 1.5px;
  top: 0;
  right: 0;
  background-color: #16205c;
  border-radius: 1.5px;
}

.drawer-menu__item a .nav-arrow::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 1.5px;
  bottom: 0;
  right: 0;
  background-color: #16205c;
  border-radius: 1.5px;
}

.drawer-menu__item .nav-open .nav-arrow {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.drawer-menu__child {
  color: #242424;
  display: none;
}

.drawer-menu__child li a {
  background-color: #fff;
  border-bottom: solid 1px #fafafa;
  border-bottom: solid 0.0625rem #fafafa;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  display: block;
  position: relative;
}

.drawer-menu__child li a .nav-arrow {
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  right: 2.1875rem;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.drawer-menu__child li a .nav-arrow::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 1.5px;
  top: 0;
  right: 0;
  background-color: #242424;
  border-radius: 1.5px;
}

.drawer-menu__child li a .nav-arrow::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 1.5px;
  bottom: 0;
  right: 0;
  background-color: #242424;
  border-radius: 1.5px;
}

.drawer-menu__lang-switch {
  color: #16205c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.drawer-menu__en {
  padding: 0 10px;
  padding: 0 0.625rem;
  border-left: solid 2px #16205c;
  border-left: solid 0.125rem #16205c;
}

.drawer-menu__jp {
  padding: 0 10px;
  padding: 0 0.625rem;
  border-left: solid 2px #16205c;
  border-left: solid 0.125rem #16205c;
  border-right: solid 2px #16205c;
  border-right: solid 0.125rem #16205c;
}

.drawer-menu__btn a {
  display: block;
  width: 100%;
  max-width: 305px;
  max-width: 19.0625rem;
  margin: 0 auto;
  padding: 20px;
  padding: 1.25rem;
  text-align: center;
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer-menu__left {
  margin-right: 90px;
  margin-right: 5.625rem;
}
@media screen and (max-width: 1180px) {
  .footer-menu__left {
    margin-right: 15%;
  }
}

@media screen and (max-width: 767px) {
  .footer-menu__left {
    margin-right: 0;
  }
}

.footer-menu__right {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.footer-menu__item {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.78571;
  letter-spacing: 0.08em;
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .footer-menu__item {
    margin-bottom: 0.9375rem;
  }
}

.footer-menu__item:hover {
  color: #16205c;
  font-weight: bold;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 2.5rem 0.9375rem;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.footer__left {
  width: 100%;
  max-width: 320px;
  max-width: 20rem;
  margin-right: auto;
  padding-right: 1.25rem;
}

@media screen and (max-width: 767px) {
  .footer__left {
    max-width: 100%;
  }
}

.footer__right {
  width: 100%;
  max-width: 410px;
  max-width: 25.625rem;
  margin-left: auto;
  min-width: 23.125rem;
}

@media screen and (max-width: 767px) {
  .footer__right {
    margin-left: 0;
    margin-top: 2.5rem;
    min-width: unset;
  }
}

.footer__img {
  width: 100%;
  max-width: 193px;
  max-width: 12.0625rem;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .footer__img {
    margin-left: auto;
    max-width: 9.125rem;
  }
}

.footer__company-name {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-weight: 500;
  line-height: 1.5625;
  letter-spacing: 0.08em;
}

.footer__company-address {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.78571;
  letter-spacing: 0.08em;
}

.footer--en .footer__company-name,
.footer--en .footer-menu__item {
  font-weight: 600;
}

.footer--en .footer__left {
  max-width: 25.6875rem;
  padding-right: 2.25rem;
}
.footer--en .footer__right {
  justify-content: flex-end;
  min-width: 22.375rem;
}
.footer--en .footer-menu__left {
  margin-right: 23%;
}
.footer--en .footer-menu__right {
  flex-grow: unset;
}

@media screen and (max-width: 767px) {
  .footer--en .footer__left {
    max-width: 100%;
    padding-right: 0;
  }
  .footer--en .footer__inner {
    padding-bottom: 1.25rem;
  }
}

.footer__to-top {
  font-size: 0.875rem;
  margin-top: 2.5rem;
  text-transform: uppercase;
  line-height: 1.785;
  letter-spacing: 0.08em;
  width: 100%;
  font-weight: 600;
}

.hamburger {
  position: relative;
  z-index: 9999;
  cursor: pointer;
}

.hamburger span {
  position: relative;
  display: block;
  height: 2px;
  height: 0.125rem;
  width: 25px;
  width: 1.5625rem;
  background: #fff;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  box-shadow: 0 0 3px rgb(0 0 0 / 30%);
  -webkit-box-shadow: 0 0 3px rgb(0 0 0 / 30%);
}

.hamburger--top span {
  background-color: #16205c;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 5px 0;
  margin: 0.3125rem 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/*OPEN時の動き*/
.hamburger.open span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  top: -6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.open span {
  background-color: #16205c;
}

.header-menu__lang-switch {
  text-align: right;
}

.header-menu__lang-switch a {
  color: #fff;
  padding: 0 10px;
  padding: 0 0.625rem;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}

.header-menu__lang-switch a:hover {
  color: #16205c;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}

.header-menu__en {
  border-left: solid 2px #fff;
  border-left: solid 0.125rem #fff;
}

.header-menu__jp {
  border-left: solid 2px #fff;
  border-left: solid 0.125rem #fff;
  border-right: solid 2px #fff;
  border-right: solid 0.125rem #fff;
}

.header-menu__items {
  margin-top: 10px;
  margin-top: 0.625rem;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.header-menu__item {
  display: inline-block;
}

.header-menu__item a {
  display: block;
  padding: 0 20px;
  padding: 0 1.25rem;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}
.header-menu__item:last-child a {
  padding-right: 0;
}

@media screen and (max-width: 1166px) {
  .header-menu__item a {
    padding: 0 10px;
    padding: 0 0.625rem;
  }
  .header-menu__item--en a {
    padding: 0 8px;
    padding: 0 0.5rem;
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0em;
  }
}

.header-menu__item a:hover {
  color: #16205c;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}

.header-menu__item--first a {
  padding-left: 0;
}

.header-menu__item--last a {
  padding-right: 0;
}

.header-menu__item a + .drawer-menu__child {
  display: none;
  position: absolute;
  text-shadow: none;
  padding-top: 8px;
  padding-top: 0.5rem;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  opacity: 0;
}

.header-menu__item:hover a + .drawer-menu__child {
  display: block;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  opacity: 1;
}

.header-menu__item a + .drawer-menu__child li a:hover {
  background: #16205c;
  color: #fff;
}

.header-sp {
  height: 36px;
  height: 2.25rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.header-sp__logo {
  width: 100%;
  max-width: 159px;
  max-width: 9.9375rem;
  margin-right: auto;
}

.header-sp__logo img {
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
}

.header {
  height: 66px;
  height: 4.125rem;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.42857;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

@media screen and (max-width: 767px) {
  .header {
    height: 2.25rem;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

@media screen and (max-width: 767px) {
  .header__inner {
    display: none;
  }
}

.header__logo {
  width: 100%;
  max-width: 140px;
  max-width: 8.75rem;
  padding: 11px 20px;
  padding: 0.6875rem 1.25rem;
}

.header__menu {
  height: inherit;
  padding: 12px 40px 0px 0px;
  padding: 0.75rem 2.5rem 0rem 0rem;
  margin-left: auto;
  width: 100%;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20%;
  max-width: 200px;
  max-width: 12.5rem;
  height: inherit;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #16205c;
  position: relative;
  transition: transform 0.3s;
}

.header__contact:hover {
  color: #16205c;
  transform: scale(1, 1);
}

.header__contact::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #fff;
  color: #16205c;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.header__contact:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.heading {
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
  color: #16205c;
}

.l-inner {
  width: 72.9136%;
  max-width: 996px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 1036px;
    padding-right: 20px;
    padding-left: 20px;
    width: 100%;
  }
}

.media {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.media--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .media--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.media__body {
  margin-left: 8.593%;
  margin-right: 9.524%;
  width: 100%;
  max-width: 43.479%;
}

@media screen and (max-width: 767px) {
  .media__body {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

.media--reverse .media__body {
  margin-left: 9.524%;
  margin-right: 8.593%;
}

@media screen and (max-width: 767px) {
  .media--reverse .media__body {
    margin-left: 0;
    margin-right: 0;
  }
}

.media__number {
  font-size: 48px;
  font-size: 3rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-top: 12px;
  padding-top: 0.75rem;
  position: relative;
  border-left: solid 4px #fff;
  border-left: solid 0.25rem #fff;
}

.media__number::before {
  position: absolute;
  content: "";
  width: 100%;
  max-width: 54px;
  max-width: 3.375rem;
  min-height: 14px;
  min-height: 0.875rem;
  -o-object-fit: cover;
  object-fit: cover;
  background: url(/assets/images/tenant/mini-text-service.png) no-repeat center center/cover;
  top: 0px;
  top: 0rem;
  left: 10px;
  left: 0.625rem;
}

.media__heading {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.875;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .media__heading {
    font-size: 1.25rem;
  }
}

.media__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 2.14286;
}

.media__img {
  width: 100%;
  max-width: 38.406%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .media__img {
    max-width: 12.5rem;
    max-width: 65.5%;
    margin-left: auto;
    position: relative;
    top: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .media--reverse .media__img {
    margin-right: auto;
    margin-left: 0;
  }
  .media--reverse .media__body {
    text-align: right;
  }
  .media--reverse .media__heading {
    text-align: left;
  }
  .media--reverse .media__text {
    text-align: left;
  }
  .media--reverse .media__number {
    display: inline-block;
    width: 4.375rem;
  }
}

.point-blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 800px;
  max-width: 50rem;
  margin: 0 auto;
  border-radius: 0.625rem;
  background-color: #16205c;
}

@media screen and (max-width: 767px) {
  .point-blue {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 19.0625rem;
  }
}

.point-blue__left {
  -ms-flex-preferred-size: 29%;
  flex-basis: 29%;
  position: relative;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.point-blue__left::after {
  position: absolute;
  content: "";
  background: url(/assets/images/common/point-logo-blue.png) no-repeat center bottom/contain;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.point-blue__heading {
  font-weight: 700;
  font-style: italic;
  font-size: 36px;
  font-size: 2.25rem;
  letter-spacing: 0.08em;
  color: #fff;
  position: relative;
  margin-right: 20px;
  margin-right: 1.25rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  height: inherit;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .point-blue__heading {
    padding: 1.25rem 2.5rem 0.625rem;
  }
}

.point-blue__heading::after {
  position: absolute;
  content: "";
  background: url(/assets/images/common/exclamation-mark.svg) no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 40px;
  height: 2.5rem;
  width: 31px;
  width: 1.9375rem;
}

.point-blue__right {
  -ms-flex-preferred-size: 71%;
  flex-basis: 71%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #16205c;
  background-color: #fff;
  border: solid 3px #16205c;
  border: solid 0.1875rem #16205c;
  border-left: none;
  border-radius: 0 0.625rem 0.625rem 0;
  padding: 10px 0px 10px 30px;
  padding: 0.625rem 0rem 0.625rem 1.875rem;
}

@media screen and (max-width: 767px) {
  .point-blue__right {
    border-left: solid 0.125rem #16205c;
    border: solid 0.125rem #16205c;
    border-radius: 0 0 0.625rem 0.625rem;
    padding-left: 1.25rem;
  }
}

.point-blue__item {
  position: relative;
  padding: 5px 0 5px 20px;
  padding: 0.3125rem 0 0.3125rem 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.66667;
}

.point-blue__item::before {
  position: absolute;
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background-color: #16205c;
  border-radius: 0.125rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .point-blue__item::before {
    top: 0;
    -webkit-transform: unset;
    transform: unset;
    margin-top: 0.75rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.point-blue__item--br {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

@media screen and (max-width: 1023px) {
  .point-blue__item--br {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.point-blue__item--br span {
  font-weight: 700;
}

@media screen and (max-width: 1023px) {
  .point-blue__item--br span {
    padding-right: 1.25rem;
  }
}

.point-blue__item-sub {
  font-weight: 700;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.66667;
}

@media screen and (max-width: 767px) {
  .point-blue__item-sub {
    font-size: 0.875rem;
    line-height: 1.78571;
    padding-right: 1.25rem;
  }
}

.point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 800px;
  max-width: 50rem;
  margin: 0 auto;
  border-radius: 0.625rem;
  background-color: #f4921f;
}

@media screen and (max-width: 767px) {
  .point {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 19.0625rem;
  }
}

.point__left {
  -ms-flex-preferred-size: 29%;
  flex-basis: 29%;
  position: relative;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.point__left::after {
  position: absolute;
  content: "";
  background: url(/assets/images/common/point-logo-orange.png) no-repeat center bottom/contain;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.point__heading {
  font-weight: 700;
  font-style: italic;
  font-size: 36px;
  font-size: 2.25rem;
  letter-spacing: 0.08em;
  color: #fff;
  position: relative;
  margin-right: 20px;
  margin-right: 1.25rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  height: inherit;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .point__heading {
    padding: 1.25rem 2.5rem 0.625rem;
  }
}

.point__heading::after {
  position: absolute;
  content: "";
  background: url(/assets/images/common/exclamation-mark.svg) no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 40px;
  height: 2.5rem;
  width: 31px;
  width: 1.9375rem;
}

.point__right {
  -ms-flex-preferred-size: 71%;
  flex-basis: 71%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #f4921f;
  background-color: #fff;
  border: solid 3px #f4921f;
  border: solid 0.1875rem #f4921f;
  border-left: none;
  border-radius: 0rem 0.625rem 0.625rem 0;
  padding: 10px 0px 10px 30px;
  padding: 0.625rem 0rem 0.625rem 1.875rem;
}

@media screen and (max-width: 767px) {
  .point__right {
    border-left: solid 0.125rem #f4921f;
    border: solid 0.125rem #f4921f;
    border-radius: 0 0 0.625rem 0.625rem;
    padding-left: 1.25rem;
  }
}

.point__item {
  position: relative;
  padding: 5px 0 5px 20px;
  padding: 0.3125rem 0 0.3125rem 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.66667;
}

@media screen and (max-width: 767px) {
  .point__item {
    font-size: 0.875rem;
    line-height: 1.78571;
    padding-right: 1.25rem;
  }
}

.point__item::before {
  position: absolute;
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background-color: #f4921f;
  border-radius: 0.125rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .point__item::before {
    top: 0;
    -webkit-transform: unset;
    transform: unset;
    margin-top: 0.75rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.point__item--br {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

@media screen and (max-width: 1023px) {
  .point__item--br {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.point__item--br span {
  font-weight: 700;
}

@media screen and (max-width: 1023px) {
  .point__item--br span {
    padding-right: 1.25rem;
  }
}

.point__item-sub {
  font-weight: 700;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.66667;
}

@media screen and (max-width: 767px) {
  .point__item-sub {
    font-size: 0.875rem;
    line-height: 1.78571;
    padding-right: 1.25rem;
  }
}

.recruit-page {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", sans-serif;
  font-weight: 500;
}

.section-title {
  position: relative;
  z-index: 100;
}

.section-title--message::before {
  position: absolute;
  content: "Message";
  font-size: 120px;
  font-size: 7.5rem;
  color: #f5f5f5;
  letter-spacing: 0.08em;
  left: 0;
  top: -28%;
  z-index: -10;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-title--message::before {
    font-size: 3.625rem;
    top: -20%;
  }
}

.section-title--service::before {
  position: absolute;
  content: "Service";
  font-size: 120px;
  font-size: 7.5rem;
  color: #f5f5f5;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 0;
  top: -28%;
  z-index: -10;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-title--service::before {
    font-size: 3.625rem;
    top: -20%;
  }
}


.section-title--fc::before {
  position: absolute;
  content: "01";
  font-size: 120px;
  font-size: 7.5rem;
  color: #f5f5f5;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 0;
  top: -45%;
  z-index: 0;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-title--fc::before {
    font-size: 5.125rem;
    top: -33%;
  }
}


.section-title--brand::before {
  position: absolute;
  content: "02";
  font-size: 120px;
  font-size: 7.5rem;
  color: #f5f5f5;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 0;
  top: -45%;
  z-index: 0;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-title--brand::before {
    font-size: 5.125rem;
    top: -33%;
  }
}


.section-title--overseas::before {
  position: absolute;
  content: "03";
  font-size: 120px;
  font-size: 7.5rem;
  color: #f5f5f5;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 0;
  top: -45%;
  z-index: 0;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-title--overseas::before {
    font-size: 5.125rem;
    top: -33%;
  }
}

.section-title--construction::before {
  position: absolute;
  content: "04";
  font-size: 120px;
  font-size: 7.5rem;
  color: #f5f5f5;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 0;
  top: -45%;
  z-index: 0;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-title--construction::before {
    font-size: 5.125rem;
    top: -33%;
  }
}



.section-title--industry::before {
  position: absolute;
  content: "05";
  font-size: 120px;
  font-size: 7.5rem;
  color: #f5f5f5;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 0;
  top: -35%;
  z-index: 0;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-title--industry::before {
    font-size: 5.125rem;
    top: -25%;
  }
}

.section-title--environment::before {
  position: absolute;
  content: "06";
  font-size: 120px;
  font-size: 7.5rem;
  color: #f5f5f5;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 0;
  top: -45%;
  z-index: 0;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-title--environment::before {
    font-size: 5.125rem;
    top: -35%;
  }
}






.section-title--m-navi::before {
  position: absolute;
  white-space: pre;
  content: "M Navi";
  font-size: 120px;
  font-size: 7.5rem;
  color: #f5f5f5;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 0;
  top: -20%;
  z-index: -1;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-title--m-navi::before {
    font-size: 3.625rem;
    top: -20%;
  }
}

.section-title--community::before {
  position: absolute;
  content: "Community";
  font-size: 120px;
  font-size: 7.5rem;
  color: #f5f5f5;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 0;
  top: -34%;
  z-index: 0;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-title--community::before {
    font-size: 3.625rem;
    top: -20%;
  }
}

.section-title--info::before {
  position: absolute;
  content: "Topics";
  font-size: 60px;
  font-size: 3.75rem;
  color: #f5f5f5;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 0;
  top: -36%;
  z-index: 0;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-title--info::before {
    content: "Topics";
    font-size: 3.625rem;
  }
}

.section-title--vision::before {
  position: absolute;
  content: "Vision";
  font-size: 120px;
  font-size: 7.5rem;
  color: #323c83;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 0;
  top: -25%;
  z-index: 0;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-title--vision::before {
    font-size: 3.625rem;
    top: -16%;
  }
}

.section-title--recruit::before {
  position: absolute;
  content: "Recruit";
  font-size: 60px;
  font-size: 3.75rem;
  color: #323c83;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 0;
  top: -10%;
  z-index: 0;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-title--recruit::before {
    font-size: 3.625rem;
    top: -25%;
  }
}

.section-title--field::before {
  position: absolute;
  white-space: pre;
  content: "Field";
  font-size: 120px;
  font-size: 7.5rem;
  color: #323c83;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 0;
  top: -40px;
  z-index: -10;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-title--field::before {
    font-size: 3.625rem;
    top: -20%;
  }
}

.section-title--tenant::before {
  position: absolute;
  white-space: pre;
  content: "Tenant\AGroup";
  font-size: 120px;
  font-size: 7.5rem;
  color: #323c83;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 0;
  top: -62%;
  z-index: -10;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-title--tenant::before {
    font-size: 3.625rem;
    top: -28%;
  }
}

.section-title__name {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.38889;
  letter-spacing: 0.1em;
  position: relative;
  font-weight: 700;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  color: #16205c;
}

@media screen and (max-width: 767px) {
  .section-title__name {
    font-size: 1rem;
  }
}

.section-title__name::after {
  position: absolute;
  content: "";
  width: 55px;
  width: 3.4375rem;
  height: 2px;
  height: 0.125rem;
  background-color: #16205c;
  left: 0;
  bottom: 0;
}

.section-title__name--white {
  color: #fff;
}

.section-title__name--white::after {
  background-color: #fff;
}

.section-title__heading {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

@media screen and (max-width: 767px) {
  .section-title__heading {
    font-size: 1.25rem;
    line-height: 1.75;
  }
}

.section-title__heading--white {
  color: #fff;
}

.square-btn {
  color: #fff;
  background-color: #16205c;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  display: block;
  width: 100%;
  max-width: 318px;
  max-width: 19.875rem;
  padding: 20px 0;
  padding: 1.25rem 0;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  line-height: 1.42857;
}

.square-btn::before,
.square-btn::after {
  position: absolute;
  content: "";
  background-color: #fff;
  height: 1px;
  height: 0.0625rem;
  right: 30px;
  right: 1.875rem;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}

.square-btn:hover::before,
.square-btn:hover::after {
  right: 16px;
  right: 1rem;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .square-btn::before,
  .square-btn::after {
    right: 0.625rem;
  }
}

.square-btn::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 26px;
  width: 1.625rem;
}

.square-btn::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 6px;
  width: 0.375rem;
  top: 45%;
  right: 29px;
  right: 1.8125rem;
}

@media screen and (max-width: 767px) {
  .square-btn::after {
    right: 0.5625rem;
  }
}

.square-btn--white,
.square-btn--wide-white,
.square-btn--form-white,
.square-btn--short-white {
  color: #16205c;
  background-color: #fff;
}

.square-btn--white::before,
.square-btn--white::after,
.square-btn--wide-white::before,
.square-btn--wide-white::after,
.square-btn--form-white::before,
.square-btn--form-white::after {
  position: absolute;
  content: "";
  background-color: #16205c;
  height: 1px;
  height: 0.0625rem;
  right: 30px;
  right: 1.875rem;
}

@media screen and (max-width: 767px) {
  .square-btn--white::before,
  .square-btn--white::after,
  .square-btn--wide-white::before,
  .square-btn--wide-white::after,
  .square-btn--form-white::before,
  .square-btn--form-white::after {
    right: 0.625rem;
  }
}

.square-btn--short-white::before,
.square-btn--short-white::after,
.square-btn--recruit::before,
.square-btn--recruit::after {
  position: absolute;
  content: "";
  background-color: #16205c;
  height: 1px;
  height: 0.0625rem;
  right: 20px;
  right: 1.25rem;
}

.square-btn--white::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 26px;
  width: 1.625rem;
}

.square-btn--white::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 6px;
  width: 0.375rem;
  top: 45%;
  right: 29px;
  right: 1.8125rem;
}

@media screen and (max-width: 767px) {
  .square-btn--white::after {
    right: 0.5625rem;
  }
}

.square-btn--wide,
.square-btn--wide-white {
  max-width: 390px;
  max-width: 24.375rem;
}

.square-btn--recruit {
  max-width: 452px;
  max-width: 28.25rem;
  color: #16205c;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 21px 0;
  padding: 1.3125rem 0;
  background-color: #ffeb55;
  border-radius: 1.875rem;
}

@media screen and (max-width: 767px) {
  .square-btn--recruit {
    font-size: 0.875rem;
    max-width: 19.0625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.square-btn--form,
.square-btn--form-white {
  max-width: 338px;
  max-width: 21.125rem;
}

.square-btn--short,
.square-btn--short-white {
  max-width: 200px;
  max-width: 12.5rem;
  text-align: left;
  padding-left: 20px;
  padding-left: 1.25rem;
  width: 21.91%;
}

@media screen and (max-width: 767px) {
  .square-btn--short,
  .square-btn--short-white {
    width: 100%;
    max-width: 19.0625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.square-btn--topic-back {
  background-color: #adadad;
  color: #242424;
  max-width: 509px;
  max-width: 31.8125rem;
}

.square-btn--topic-back::before,
.square-btn--topic-back::after {
  position: absolute;
  content: "";
  background-color: #242424;
  height: 1px;
  height: 0.0625rem;
  left: 20px;
  left: 1.25rem;
}

.square-btn--topic-back::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 6px;
  width: 0.375rem;
  top: 45%;
  right: 29px;
  right: 1.8125rem;
}

.square-btn--to-top,
.square-btn--form-back {
  background-color: #adadad;
  color: #242424;
}

.square-btn--to-top::before,
.square-btn--to-top::after,
.square-btn--form-back::before,
.square-btn--form-back::after {
  position: absolute;
  content: "";
  background-color: #242424;
  height: 1px;
  height: 0.0625rem;
  left: 20px;
  left: 1.25rem;
}

.square-btn--to-top::after,
.square-btn--form-back::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 6px;
  width: 0.375rem;
  top: 45%;
  right: 29px;
  right: 1.8125rem;
}

.sub-mv {
  color: #fff;
  width: 100%;
  height: 33%;
}

.sub-mv--about {
  background: url(/assets/images/about/sub-mv-about.jpg) no-repeat center center/cover;
}

.sub-mv--service {
  background: url(/assets/images/service/sub-mv-service.jpg) no-repeat center center/cover;
}

.sub-mv--tenant {
  background: url(/assets/images/tenant/tenant-mv-img.jpg) no-repeat center center/cover;
}

.sub-mv--company {
  background: url(/assets/images/company/company-sub-mv.jpg) no-repeat center center/cover;
}

.sub-mv--topics {
  background: url(/assets/images/topics/topics-sub-mv.jpg) no-repeat center center/cover;
}

.sub-mv--contact {
  background: url(/assets/images/contact/contact-sub-mv.jpg) no-repeat center center/cover;
}

.sub-mv--privacy {
  background: url(/assets/images/privacy/privacy-sub-mv.jpg) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  .sub-mv--about {
    background: url(/assets/images/about/about-mv-sp.jpg) no-repeat center center/cover;
  }
  .sub-mv--service {
    background: url(/assets/images/service/service-mv-sp.jpg) no-repeat bottom center/cover;
  }
  .sub-mv--tenant {
    background: url(/assets/images/tenant/tenant-mv-sp.jpg) no-repeat bottom center/cover;
  }
  .sub-mv--company {
    background: url(/assets/images/company/company-mv-sp.jpg) no-repeat bottom center/cover;
  }
  .sub-mv--topics {
    background: url(/assets/images/topics/topics-mv-sp.jpg) no-repeat bottom center/cover;
  }
  .sub-mv--contact {
    background: url(/assets/images/contact/contact-mv-sp.jpg) no-repeat bottom center/cover;
  }
  .sub-mv--privacy {
    background: url(/assets/images/privacy/privacy-mv-sp.jpg) no-repeat bottom center/cover;
  }
}

.sub-mv__inner {
  width: 100%;
  max-width: 996px;
  padding: 139px 15px 40px;
  padding: 8.6875rem 15px 2.5rem;
  margin: 0 auto;
  min-height: 400px;
}

@media screen and (max-width: 767px) {
  .sub-mv__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 6.5rem;
    padding-bottom: 1.25rem;
  }
}

.sub-mv__sub-title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  font-weight: 700;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .sub-mv__sub-title {
    font-size: 0.75rem;
    padding-bottom: 0.9375rem;
  }
}

.sub-mv__sub-title::after {
  position: absolute;
  content: "";
  width: 50px;
  width: 3.125rem;
  height: 2px;
  height: 0.125rem;
  background-color: #fff;
  left: 5px;
  left: 0.3125rem;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .sub-mv__sub-title::after {
    width: 2.0625rem;
  }
}

.sub-mv__title {
  font-size: 90px;
  font-size: 5.625rem;
  line-height: 1.44444;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .sub-mv__title {
    font-size: 3.125rem;
  }
}

@media screen and (max-width: 767px) {
  .sub-mv--privacy .sub-mv__title {
    letter-spacing: 0;
  }
}

.sub-mv__message {
  width: 100%;
  max-width: 424px;
  max-width: 26.5rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .sub-mv__message {
    margin-top: 8.125rem;
  }
}

.sub-mv__message--no-text {
  width: 100%;
  max-width: 424px;
  max-width: 26.5rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  margin-left: auto;
  display: block;
  content: "";
  height: 96px;
  height: 6rem;
}

.appp {
  margin: 1px;
}

.text {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 2.14286;
}

.to-top {
  width: 76px;
  width: 4.75rem;
  height: 76px;
  height: 4.75rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  text-transform: uppercase;
  color: #fff;
  background-color: #16205c;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  z-index: 9999;
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 16%);
  box-shadow: 0 0 10px rgb(0 0 0 / 40%);
}

@media screen and (max-width: 767px) {
  .to-top {
    width: 4rem;
    height: 4rem;
    font-size: 1rem;
  }
}

.to-top::after {
  width: 2px;
  width: 0.125rem;
  height: 30px;
  height: 1.875rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #16205c), color-stop(50%, #fff));
  background: linear-gradient(to bottom, #16205c 50%, #fff 50% 100%);
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-width: 767px) {
  .to-top::after {
    height: 1.3125rem;
  }
}

.feature-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .feature-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.feature-block::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 95%;
  height: 86.4406%;
  background-color: #16205c;
  z-index: 10;
}

.feature-block__img {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  -ms-flex-preferred-size: 41.25%;
  flex-basis: 41.25%;
  position: relative;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .feature-block__img {
    -ms-flex-preferred-size: unset;
    flex-basis: unset;
    max-width: 77.7049%;
  }
}

.feature-block__text-box {
  padding: 40px 30px 50px 0;
  padding: 2.5rem 1.875rem 3.125rem 0;
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-left: 30px;
  margin-left: 1.875rem;
  -ms-flex-preferred-size: 58.75%;
  flex-basis: 58.75%;
  border-bottom: solid 5px #f4921f;
  border-bottom: solid 0.3125rem #f4921f;
  position: relative;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .feature-block__text-box {
    margin-top: 0;
    padding: 0 1.875rem 2.1875rem 0;
    -ms-flex-preferred-size: unset;
    flex-basis: unset;
    margin-left: 3.4375rem;
  }
}

.feature-block__heading {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 11;
}

.feature-block__heading span {
  font-size: 52px;
  font-size: 3.25rem;
}

.feature-block__heading--bridge::after {
  position: absolute;
  content: "Bridge";
  font-size: 40px;
  font-size: 2.5rem;
  color: #323c83;
  line-height: 1;
  letter-spacing: 0.08em;
  right: 0;
  bottom: 0;
  z-index: -1;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .feature-block__heading--bridge::after {
    font-size: 1.875rem;
    bottom: -0.9375rem;
    right: -0.625rem;
  }
}

.feature-block__heading--runAround::after {
  position: absolute;
  content: "Run Around";
  font-size: 40px;
  font-size: 2.5rem;
  color: #323c83;
  line-height: 1;
  letter-spacing: 0.08em;
  right: 0;
  bottom: 0;
  z-index: -1;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .feature-block__heading--runAround::after {
    font-size: 1.875rem;
    bottom: -0.9375rem;
    right: -0.625rem;
  }
}

.feature-block__heading--multiply::after {
  position: absolute;
  content: "Multiply";
  font-size: 40px;
  font-size: 2.5rem;
  color: #323c83;
  line-height: 1;
  letter-spacing: 0.08em;
  right: 0;
  bottom: 0;
  z-index: -1;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .feature-block__heading--multiply::after {
    font-size: 1.875rem;
    bottom: -0.9375rem;
    right: -0.625rem;
  }
}

.feature-block__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.065em;
}

@media screen and (max-width: 767px) {
  .feature-block__text {
    margin-top: 2.375rem;
  }
}

.feature-block--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.feature-block--reverse::after {
  left: 0;
}

.feature-block--reverse .feature-block__text-box {
  padding: 40px 0 50px 30px;
  padding: 2.5rem 0 3.125rem 1.875rem;
  margin-left: 0;
  margin-right: 30px;
  margin-right: 1.875rem;
}

@media screen and (max-width: 767px) {
  .feature-block--reverse .feature-block__text-box {
    margin-right: 3.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .feature-block--reverse .feature-block__img {
    margin-left: auto;
  }
}

@media screen and (max-width: 767px) {
  .feature-block--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.feature {
  color: #fff;
  background-color: #fff;
}

.feature__title-wrap {
  color: #16205c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 540px;
  max-width: 33.75rem;
  padding: 2px 15px 0;
  padding: 0.125rem 0.9375rem 0;
  margin: 0 auto;
  margin-top: 60px;
  margin-top: 3.75rem;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .feature__title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }
}

.feature__title-wrap::after {
  position: absolute;
  content: "";
  background: url(/assets/images/about/kakeru-bg.png) no-repeat center center/contain;
  width: 100%;
  max-width: 510px;
  max-width: 31.875rem;
  height: 83px;
  height: 5.1875rem;
  top: 40%;
  left: 20px;
  left: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .feature__title-wrap::after {
    left: 0;
    top: 50%;
    height: 3.125rem;
  }
}

.feature__title-left {
  font-size: 34px;
  font-size: 2.125rem;
  letter-spacing: 0.04em;
  line-height: 1.32353;
  font-weight: 700;
  padding-right: 18px;
  padding-right: 1.125rem;
  margin-left: 29px;
  margin-left: 1.8125rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  margin-top: -10px;
  margin-top: -0.625rem;
}

@media screen and (max-width: 767px) {
  .feature__title-left {
    margin-left: 0;
    padding-right: 0;
    padding-bottom: 0.875rem;
  }
}

.feature__title-left span {
  font-size: 43px;
  font-size: 2.6875rem;
  line-height: 1;
}

.feature__title-right {
  font-size: 34px;
  font-size: 2.125rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  font-weight: 700;
  position: relative;
  padding-left: 60px;
  padding-left: 3.75rem;
  padding-bottom: 26px;
  padding-bottom: 1.625rem;
}

@media screen and (max-width: 767px) {
  .feature__title-right {
    padding-left: 0;
    margin-bottom: 0;
    padding-bottom: 1.25rem;
  }
}

.feature__title-right::before {
  position: absolute;
  content: "かける";
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.6em;
  font-weight: 700;
  line-height: 1;
  bottom: 0;
  left: 50%;
}

@media screen and (max-width: 767px) {
  .feature__title-right::before {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-left: 0.25rem;
  }
}

.feature__cross-icon {
  width: 100%;
  max-width: 45px;
  max-width: 2.8125rem;
  position: relative;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

@media screen and (max-width: 767px) {
  .feature__cross-icon {
    max-width: 1.5625rem;
  }
}

.feature__cross-icon span {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  content: "";
  width: 84px;
  width: 5.25rem;
  height: 2px;
  height: 0.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #16205c;
}

@media screen and (max-width: 767px) {
  .feature__cross-icon span {
    width: 1.75rem;
    top: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.feature__cross-icon .cross-1 {
  -webkit-transform: translateY(-50%) rotate(40deg);
  transform: translateY(-50%) rotate(40deg);
}

.feature__cross-icon .cross-2 {
  -webkit-transform: translateY(-50%) rotate(-40deg);
  transform: translateY(-50%) rotate(-40deg);
}

.feature__item {
  width: 100%;
  max-width: 800px;
  max-width: 50rem;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}

@media screen and (max-width: 767px) {
  .feature__item {
    margin-top: 2.5rem;
  }
}

.field {
  color: #fff;
  position: relative;
  z-index: 10;
}

.field__inner {
  margin-top: 100px;
  margin-top: 6.25rem;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 15px 140px;
  padding: 0 15px 8.75rem;
}

@media screen and (max-width: 767px) {
  .field__inner {
    padding: 0 20px 3.75rem;
  }
}

.field__inner::after {
  position: absolute;
  content: "";
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(91.508%, #16205c),
    color-stop(91.508%, transparent)
  );
  background: linear-gradient(to left, #16205c 91.508%, transparent 91.508% 100%);
  width: 100%;
  max-width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -10;
}

@media screen and (max-width: 767px) {
  .field__inner::after {
    background: -webkit-gradient(linear, right top, left top, color-stop(96%, #16205c), color-stop(96%, transparent));
    background: linear-gradient(to left, #16205c 96%, transparent 96% 100%);
  }
}

.field__wrapper {
  position: relative;
  z-index: -5;
  width: 100%;
  max-width: 996px;
  max-width: 62.25rem;
  margin: 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 175px;
  padding-top: 10.9375rem;
}

@media screen and (max-width: 767px) {
  .field__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 6.25rem;
    max-width: 28.125rem;
  }
}

.field__body {
  padding: 0px 8.352% 60px 80px;
  padding: 0rem 8.352% 3.75rem 5rem;
  width: 100%;
  max-width: 62.112%;
  min-width: 490px;
  min-width: 30.625rem;
}

@media screen and (max-width: 767px) {
  .field__body {
    min-width: unset;
    padding: 0;
    max-width: 100%;
  }
}

.field__body .section-title {
  color: #fff;
}

.field__text {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.field__btn-wrap {
  width: 100%;
  max-width: 996px;
  max-width: 62.25rem;
  padding: 0 15px 0 95px;
  padding: 0 15px 0 5.9375rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .field__btn-wrap {
    padding: 0;
    margin-top: 2.5rem;
    text-align: center;
  }
}

.field__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -3.065%;
}

@media screen and (max-width: 767px) {
  .field__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.field__btns a {
  margin-right: 3.065%;
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (max-width: 767px) {
  .field__btns a {
    margin-right: auto;
  }
}

.field__img {
  width: 100%;
  max-width: 40.0602%;
}

@media screen and (max-width: 767px) {
  .field__img {
    max-width: 100%;
    margin-top: 2.5rem;
  }
}

.message {
  position: relative;
}

.message .section-title__heading {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.message::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 14.642%;
  height: 100%;
  background-color: #8a8eb4;
  z-index: -10;
}

@media screen and (max-width: 767px) {
  .message::after {
    width: 5.3%;
  }
}
@media screen and (min-width: 1400px) {
  .message::after {
    width: 23vw;
  }
}

.message::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100vw;
  max-width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -11;
}

.message__inner {
  margin: 140px auto 0;
  margin: 8.75rem auto 0;
  /* padding: 144px 15px 140px 10.25%; */
  position: relative;
  z-index: -10;
  width: 100%;
  max-width: 996px;
  max-width: 62.25rem;
  padding: 144px 15px 140px 15px;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .message__inner {
    margin-top: 200px;
    margin-top: 12.5rem;
    padding: 0 1.25rem 3.75rem;
    max-width: 34.375rem;
  }
}

.message__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 80px;
  padding-left: 5rem;
  position: relative;
  z-index: 10;
  margin-right: -3.75rem;
}
@media screen and (max-width: 767px) {
  .message__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-left: 0;
    margin-right: 0;
  }
}

.message__contents {
  width: 100%;
  max-width: 58.7%;
  max-width: 55%;
  margin-right: 3.75rem;
}

@media screen and (max-width: 767px) {
  .message__contents {
    min-width: unset;
    margin-right: 0;
    max-width: 100%;
    padding: 0 0.9375rem;
  }
}

.message__texts {
  width: 100%;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.message__text {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.message__ceo-info {
  width: 100%;
  max-width: 190px;
  max-width: 11.875rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.78571;
  letter-spacing: 0.04em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", sans-serif;
  font-weight: 500;
  margin-top: 58px;
  margin-top: 3.625rem;
}

@media screen and (max-width: 767px) {
  .message__ceo-info {
    margin-top: 3.0625rem;
    font-size: 0.75rem;
    max-width: 10.1875rem;
  }
}

.message__ceo-name {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.message__img {
  width: 100%;
  max-width: 363px;
  max-width: 22.6875rem;
  position: relative;
  z-index: 101;
}
@media screen and (max-width: 1200px) {
  .message__img {
    max-width: 300px;
    max-width: 18.75rem;
  }
}

@media screen and (max-width: 767px) {
  .message__img {
    position: relative;
    width: 100%;
    max-width: 69.2%;
    margin-left: auto;
    top: -6.25rem;
  }
}
.message__img img {
  position: relative;
  z-index: 10;
}

.vision {
  color: #fff;
  position: relative;
}

.vision::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100%;
  height: 65.9586%;
  min-height: 1149px;
  min-height: 71.8125rem;
  background-color: #8a8eb4;
  z-index: -1;
}

.vision__inner {
  padding-top: 150px;
  padding-top: 9.375rem;
  width: 100%;
  max-width: 996px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .vision__inner {
    padding-top: 5.1875rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 40.625rem;
  }
}

.vision__text-wrap {
  width: 100%;
  max-width: 830px;
  max-width: 51.875rem;
  padding: 0 15px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .vision__text-wrap {
    padding: 0 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .vision__text {
    margin-top: 1.25rem;
  }
}

.vision__body {
  width: 100%;
  max-width: 996px;
  max-width: 62.25rem;
  padding: 1px 15px 60px;
  padding: 0.0625rem 0.9375rem 3.75rem;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}

@media screen and (max-width: 767px) {
  .vision__body {
    margin-top: 5.1875rem;
  }
}

.vision__text {
  margin: 16px auto 0;
  margin: 1rem auto 0;
}

.corporate {
  position: relative;
  z-index: 20;
}

.corporate__inner {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .corporate__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 34.375rem;
    padding-bottom: 3.75rem;
  }
}

.corporate-bg {
  position: absolute;
  right: 0;
  object-position: center center;
  max-height: 550px;
  max-height: 34.375rem;
  width: 85.3587%;
  min-width: 740px;
  bottom: 0;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .corporate-bg {
    width: 90.6666%;
    bottom: -40px;
    bottom: -2.5rem;
    min-width: unset;
  }
}

.corporate__body {
  padding: 40px 72px;
  padding: 2.5rem 4.5rem;
  background-color: #fff;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .corporate__body {
    padding: 2.25rem 0.9375rem;
    text-align: center;
  }
}

.corporate__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  padding: 1.25rem 0;
  border-bottom: solid 1px #f5f5f5;
  border-bottom: solid 0.0625rem #f5f5f5;
}

@media screen and (max-width: 767px) {
  .corporate__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
    border-bottom: none;
  }
}

.corporate__block:last-child {
  border-bottom: none;
}

.corporate__block dt {
  min-width: 24.24%;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #16205c;
  line-height: 1.42857;
}

@media screen and (max-width: 767px) {
  .corporate__block dt {
    color: #fff;
    background-color: #16205c;
    padding: 0.5rem 0;
    min-width: unset;
  }
}

.corporate__block dd {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  line-height: 1.42857;
}

@media screen and (max-width: 767px) {
  .corporate__block dd {
    margin-top: 0.625rem;
    line-height: 2.14286;
  }
}

.corporate__block--map-link-wrap {
  padding: 13.5px 0;
  padding: 0.84375rem 0;
}

.corporate__block--map-link-wrap dt {
  line-height: 2.14286;
}

@media screen and (max-width: 767px) {
  .corporate__block--map-link-wrap dt {
    line-height: 1.42857;
  }
}

.corporate__block--map-link-wrap dd {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .corporate__block--map-link-wrap dd {
    margin-top: 0.625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.corporate__map-link {
  border: solid 1px #16205c;
  border: solid 0.0625rem #16205c;
  color: #16205c;
  padding: 0px 4px;
  padding: 0rem 0.25rem;
  display: inline-block;
  line-height: 2.14286;
  margin-left: auto;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .corporate__map-link {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.corporate__map-link:hover {
  color: #fff;
  background: #16205c;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}

.corporate__link {
  text-decoration: underline;
  color: #16205c;
}

.philosophy__inner {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 114px;
  padding-top: 7.125rem;
}

@media screen and (max-width: 767px) {
  .philosophy__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 34.375rem;
  }
}

.philosophy__title {
  color: #16205c;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.philosophy__title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 55px;
  width: 3.4375rem;
  height: 2px;
  height: 0.125rem;
  background-color: #16205c;
}

.philosophy__title::before {
  position: absolute;
  white-space: pre;
  content: "Management\APhilosophy";
  font-size: 120px;
  font-size: 7.5rem;
  color: #fff;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 50%;
  top: -44px;
  top: -2.75rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -10;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .philosophy__title::before {
    font-size: 3.125rem;
    top: 40%;
  }
}

.philosophy__text {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-top: 13px;
  margin-top: 0.8125rem;
  line-height: 1.83333;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 50;
}

@media screen and (max-width: 767px) {
  .philosophy__text {
    font-size: 1.25rem;
    line-height: 2;
  }
}

.philosophy__img-wrap {
  margin-top: 114px;
  margin-top: 7.125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .philosophy__img-wrap {
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 3.75rem;
  }
}

.philosophy__img-wrap img {
  width: 100%;
  max-width: 43.635%;
  display: block;
}

@media screen and (max-width: 767px) {
  .philosophy__img-wrap img {
    margin-right: 0;
    max-width: 61.4%;
  }
}

@media screen and (max-width: 767px) {
  .philosophy__img-wrap img:nth-child(1) {
    margin-bottom: 1.25rem;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .philosophy__img-wrap img:nth-child(2) {
    margin-left: auto;
  }
}

.confirm__inner {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 114px;
  padding-top: 7.125rem;
}

@media screen and (max-width: 767px) {
  .confirm__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 34.375rem;
  }
}

.confirm__title {
  color: #16205c;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  width: 100%;
  text-align: center;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .confirm__title {
    font-size: 1rem;
  }
}

.confirm__title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 55px;
  width: 3.4375rem;
  height: 2px;
  height: 0.125rem;
  background-color: #16205c;
}

.confirm__title::before {
  position: absolute;
  white-space: pre;
  content: "Contact\A Form";
  font-size: 120px;
  font-size: 7.5rem;
  color: #fff;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 50%;
  top: -48px;
  top: -3rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -10;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .confirm__title::before {
    font-size: 3.625rem;
  }
}

.confirm__text {
  text-align: center;
  position: relative;
  z-index: 50;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

@media screen and (max-width: 767px) {
  .confirm__text {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.confirm__content {
  margin-top: 87px;
  margin-top: 5.4375rem;
  background-color: #fff;
  padding: 40px 50px;
  padding: 2.5rem 3.125rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.42857;
  letter-spacing: 00.08em;
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  .confirm__content {
    text-align: center;
  }
}

.confirm__content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 20px 0;
  padding: 1.25rem 0;
  border-bottom: solid 1px #dedede;
  border-bottom: solid 0.0625rem #dedede;
}

@media screen and (max-width: 767px) {
  .confirm__content dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-bottom: none;
  }
}

.confirm__content dl:last-child {
  border-bottom: none;
}

.confirm__content dt {
  display: block;
  width: 100%;
  max-width: 220px;
  max-width: 13.75rem;
}

@media screen and (max-width: 767px) {
  .confirm__content dt {
    background-color: #adadad;
    max-width: 100%;
    padding: 0.25rem;
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .confirm__content dd {
    width: 100%;
    margin-top: 0.625rem;
  }
}

.confirm__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .confirm__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 19.0625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .confirm__btn {
    margin-top: 2.5rem;
  }
}

.contact-form__inner {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 114px;
  padding-top: 7.125rem;
}

@media screen and (max-width: 767px) {
  .contact-form__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 34.375rem;
  }
}

.contact-form__title {
  color: #16205c;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  width: 100%;
  text-align: center;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .contact-form__title {
    font-size: 1rem;
  }
}

.contact-form__title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 55px;
  width: 3.4375rem;
  height: 2px;
  height: 0.125rem;
  background-color: #16205c;
}

.contact-form__title::before {
  position: absolute;
  white-space: pre;
  content: "Contact\A Form";
  font-size: 120px;
  font-size: 7.5rem;
  color: #fff;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 50%;
  top: -48px;
  top: -3rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -10;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .contact-form__title::before {
    font-size: 3.625rem;
  }
}

.contact-form__text {
  text-align: center;
  position: relative;
  z-index: 50;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

@media screen and (max-width: 767px) {
  .contact-form__text {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.contact-form__content {
  margin-top: 87px;
  margin-top: 5.4375rem;
  background-color: #fff;
  padding: 20px 50px 58px;
  padding: 1.25rem 3.125rem 3.625rem;
}

@media screen and (max-width: 767px) {
  .contact-form__content {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

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

@media screen and (max-width: 767px) {
  .contact-form__check {
    font-size: 0.875rem;
    text-align: left;
    line-height: 1.78571;
    width: 60%;
    max-width: 12.1875rem;
    margin: 0 auto;
  }
}

.contact-form__check-label {
  position: relative;
}

.contact-form__check a {
  color: #16205c;
  text-decoration: underline;
}

.contact-form__check-label::before {
  background: #fff;
  border: 1px solid #242424;
  border: 0.0625rem solid #242424;
  content: "";
  display: block;
  left: -23px;
  left: -1.4375rem;
  margin-top: -7px;
  margin-top: -0.4375rem;
  position: absolute;
  top: 50%;
  height: 15px;
  height: 0.9375rem;
  width: 15px;
  width: 0.9375rem;
  z-index: 9;
}

@media screen and (max-width: 767px) {
  .contact-form__check-label::before {
    top: 0;
    margin-top: 0.25rem;
  }
}

.contact-form__check-label::after {
  border-right: 2px solid #16205c;
  border-right: 0.125rem solid #16205c;
  border-bottom: 2px solid #16205c;
  border-bottom: 0.125rem solid #16205c;
  content: "";
  display: block;
  height: 11px;
  height: 0.6875rem;
  width: 6px;
  width: 0.375rem;
  left: -18px;
  left: -1.125rem;
  margin-top: -6px;
  margin-top: -0.375rem;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .contact-form__check-label::after {
    top: 0;
    margin-top: 0.25rem;
  }
}

input[type="checkbox"]:checked + .contact-form__check-label::after {
  opacity: 1;
}

.contact-form__btn {
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-form__back-btn {
  margin-top: 60px;
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .contact-form__back-btn {
    max-width: 19.0625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.form__item {
  padding: 20px 0;
  padding: 1.25rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 00.08em;
}

@media screen and (max-width: 767px) {
  .form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.form__item dt,
.form__item label {
  width: 38%;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.6;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .form__item dt,
  .form__item label {
    width: 100%;
  }
}

.form__item .form__title {
  width: 100%;
}

.form__item .form__title ~ .error {
  margin-top: 10px;
  color: red;
}

.contact-form__check .error {
  margin-top: 10px;
  color: red;
}

.form__item dd {
  width: 60%;
}

@media screen and (max-width: 767px) {
  .form__item dd {
    width: 100%;
    margin-top: 0.9375rem;
  }
}

.form__item dd input[type="text"],
.form__item dd input[type="email"],
.form__item dd input[type="tel"],
.form__item dd select,
.form__item dd textarea {
  display: inline-block;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 11px 20px;
  padding: 0.6875rem 1.25rem;
  background-color: #f5f5f5;
}

@media screen and (max-width: 767px) {
  .form__item dd input[type="text"],
  .form__item dd input[type="email"],
  .form__item dd input[type="tel"],
  .form__item dd select,
  .form__item dd textarea {
    margin-top: 0.9375rem;
  }
}

.form__item dd select {
  width: 100%;
  height: 42px;
  height: 2.625rem;
  color: #dedede;
}

@media screen and (max-width: 767px) {
  .form__item dd select {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .form__postal-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}

.form__postal {
  display: inline-block;
  width: 188px;
  width: 11.75rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  padding: 11px 20px;
  padding: 0.6875rem 1.25rem;
  background-color: #f5f5f5;
}

@media screen and (max-width: 767px) {
  .form__postal {
    margin-top: 0.9375rem;
    max-width: 11.5625rem;
  }
}

.form__item input {
  width: 100%;
}

.form__item input::-webkit-input-placeholder,
.form__item textarea::-webkit-input-placeholder {
  color: #dedede;
}

.form__item input::-moz-placeholder,
.form__item textarea::-moz-placeholder {
  color: #dedede;
}

.form__item input::-ms-input-placeholder,
.form__item textarea::-ms-input-placeholder {
  color: #dedede;
}

.form__item input::placeholder,
.form__item textarea::placeholder {
  color: #dedede;
}

.form__product-wrap {
  max-width: 293px;
  max-width: 18.3125rem;
  position: relative;
  z-index: 10;
}
.form__product-wrap .form__select {
  background-color: #f5f5f5;
  position: relative;
}

.form__select .form__confirm-select {
  color: #242424;
}

.form__product-wrap select {
  background-color: transparent !important;
}

.form__product-wrap select:invalid {
  color: #dedede;
}

.form__select::after {
  position: absolute;
  content: "▼";
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  color: #dedede;
  z-index: 1;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .form__product-wrap::after {
    height: inherit;
    top: 50%;
    bottom: 50%;
  }
}

.form__pref-wrap {
  max-width: 188px;
  max-width: 11.75rem;
  position: relative;
}

.form__pref-wrap select:invalid {
  color: #dedede;
}

.form__require {
  background-color: #f4921f;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 5px 4.5px;
  padding: 0.3125rem 0.28125rem;
  margin-left: 10px;
  margin-left: 0.625rem;
  display: inline-block;
  line-height: 1;
}

.form__border {
  height: 1px;
  height: 0.0625rem;
  width: 100%;
  background-color: #dedede;
  content: "";
  display: block;
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-bottom: 57px;
  margin-bottom: 3.5625rem;
}

@media screen and (max-width: 767px) {
  .form__border {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

.form__postal-code-btn {
  background-color: #16205c;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  padding: 14px 42px;
  padding: 0.875rem 2.625rem;
  height: inherit;
}

@media screen and (max-width: 767px) {
  .form__postal-code-btn {
    padding: 0.625rem 1.5625rem 0.75rem;
    font-size: 0.875rem;
    height: 2.625rem;
  }
}

.form__item--textarea {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.form__item--textarea label {
  padding-top: 10px;
  padding-top: 0.625rem;
}

.form__item dd textarea {
  height: 200px;
  height: 12.5rem;
  width: 100%;
  resize: none;
}

@media screen and (max-width: 767px) {
  .form__item dd textarea {
    height: 9.125rem;
  }
}

@media screen and (max-width: 767px) {
  .form__textarea {
    width: 100%;
  }
}

.error {
  margin-top: 8px;
  margin-top: 0.5rem;
  color: #f4921f;
}

.privacy-block {
  padding: 0 50px 40px;
  padding: 0 3.125rem 2.5rem;
}

@media screen and (max-width: 767px) {
  .privacy-block {
    padding: 0 0.9375rem 0;
  }
}

.privacy-block:last-child {
  padding-bottom: 0;
}

.privacy-block__heading {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  color: #16205c;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .privacy-block__heading {
    font-size: 1.25rem;
    line-height: 1.75;
  }
}

.privacy-block__text {
  letter-spacing: 00.04em;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 767px) {
  .privacy-block__text {
    margin-bottom: 2.5rem;
  }
}

.privacy__inner {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .privacy__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 34.375rem;
    padding-top: 2.9375rem;
  }
}

.r-banner {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -150px;
  top: -9.375rem;
  z-index: 999;
}

@media screen and (max-width: 767px) {
  .r-banner {
    margin-bottom: -3.125rem;
    max-width: 31.25rem;
  }
}

.r-card {
  background-color: #fff;
  border: solid 2px #242424;
  border: solid 0.125rem #242424;
  border-radius: 1.25rem;
  width: 100%;
  padding: 20px 22px 40px;
  padding: 1.25rem 1.375rem 2.5rem;
  width: 30.304%;
  max-width: 250px;
  max-width: 15.625rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .r-card {
    width: 46%;
    max-width: 152px;
    max-width: 9.5rem;
    padding-bottom: 1.25rem;
    padding-left: 1.0625rem;
    padding-right: 1.0625rem;
    padding-top: 0.625rem;
    padding: 0.625rem 0.9375rem 1.25rem;
  }
}

.r-card__border {
  content: "";
  width: 36px;
  width: 2.25rem;
  height: 2px;
  height: 0.125rem;
  background-color: #242424;
  display: block;
  margin: 0 auto;
}

.r-card__heading {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .r-card__heading {
    margin-top: 0.625rem;
    font-size: 0.75rem;
  }
}

.r-card__icon {
  display: block;
  height: 70px;
  height: 4.375rem;
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (max-width: 767px) {
  .r-card__icon {
    height: 2.375rem;
    margin-top: 0.625rem;
  }
}

.r-card__icon--cup {
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}

@media screen and (max-width: 767px) {
  .r-card__icon--cup {
    padding-bottom: 0;
    padding-top: 0.5rem;
  }
}

.r-card__number-wrap {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (max-width: 767px) {
  .r-card__number-wrap {
    margin-top: 0.625rem;
  }
}

.r-card__number {
  font-family: "Roboto", sans-serif;
  font-size: 74px;
  font-size: 4.625rem;
  letter-spacing: 0.004em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .r-card__number {
    font-size: 2.5rem;
  }
}

.r-card__number-wrap--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.r-card__word {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .r-card__word {
    font-size: 0.75rem;
  }
}

.r-card__word--big {
  font-size: 34px;
  font-size: 2.125rem;
}

.r-drawer-menu {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  min-height: 617px;
  min-height: 38.5625rem;
  text-align: center;
  border-radius: 0 0 3.125rem 3.125rem;
  padding-top: 78px;
  padding-top: 4.875rem;
  display: none;
}

.r-drawer-menu__item {
  font-size: 18px;
  font-size: 1.125rem;
}

.r-drawer-menu__item a {
  display: block;
  padding: 15px 0;
  padding: 0.9375rem 0;
}

.r-drawer-menu__btn a {
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #ffeb55;
  margin-left: auto;
  margin-right: auto;
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.r-entry {
  background: url(/assets/images/recruit/entry-bg.jpg) no-repeat center center/cover;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", sans-serif;
}

.r-entry__inner {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-top: 140px;
  padding-top: 8.75rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .r-entry__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 34.375rem;
  }
}

.r-entry__body {
  padding: 60px 50px;
  padding: 3.75rem 3.125rem;
  background-color: #fff;
  border-radius: 6.25rem;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .r-entry__body {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    padding-top: 2.5rem;
    padding-bottom: 4.125rem;
    border-radius: 3.125rem;
  }
}

.r-entry__body::after {
  position: absolute;
  content: "";
  background: url(/assets/images/recruit/entry-check-flag.png) no-repeat center center/cover;
  width: 134px;
  width: 8.375rem;
  height: 126px;
  height: 7.875rem;
  top: -25px;
  top: -1.5625rem;
  left: 44px;
  left: 2.75rem;
}

@media screen and (max-width: 767px) {
  .r-entry__body::after {
    width: 5.8125rem;
    height: 5.5rem;
    left: 0;
    top: -2.75rem;
  }
}

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

.r-entry__head-top {
  font-size: 34px;
  font-size: 2.125rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .r-entry__head-top {
    font-size: 1.5rem;
  }
}

.r-entry__head-top::after {
  position: absolute;
  content: "";
  background-color: #aceefa;
  width: 94%;
  height: 10px;
  height: 0.625rem;
  bottom: 0px;
  bottom: 0rem;
  left: 0;
  border-radius: 0.3125rem;
  z-index: -1;
}

.r-entry__head-bottom {
  font-size: 54px;
  font-size: 3.375rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-top: 25px;
  margin-top: 1.5625rem;
  display: inline-block;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .r-entry__head-bottom {
    font-size: 2rem;
    margin-top: 0.625rem;
  }
}

.r-entry__head-bottom::after {
  position: absolute;
  content: "";
  background-color: #aceefa;
  width: 100%;
  height: 10px;
  height: 0.625rem;
  bottom: 0px;
  bottom: 0rem;
  left: 0;
  border-radius: 0.3125rem;
  z-index: -1;
}

.r-entry__text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", sans-serif;
  font-weight: 500;
  width: 100%;
  max-width: 452px;
  max-width: 28.25rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.04em;
}

.r-entry__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 100%;
  max-width: 452px;
  max-width: 28.25rem;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {
  .r-entry__btn {
    font-size: 0.875rem;
  }
}

.r-header-menu {
  height: inherit;
  color: #242424;
}

.r-header-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  height: inherit;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.r-header-menu__item {
  display: inline-block;
}

.r-header-menu__item a {
  display: block;
  padding: 0 10px;
  padding: 0 0.625rem;
}

.r-header-menu__item--first a {
  padding-left: 0;
}

.r-header-menu__item--last a {
  padding-right: 0;
}

.r-header-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .r-header-sp {
    width: 100%;
    height: 2.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1.25rem;
    z-index: 9000;
    position: fixed;
  }
}

.r-header-sp__logo {
  width: 100%;
  max-width: 159px;
  max-width: 9.9375rem;
  margin-right: auto;
  display: block;
  position: relative;
  z-index: 9000;
}

.r-header {
  position: fixed;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  line-height: 1.42857;
  color: #242424;
  background-color: #fff;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .r-header {
    position: absolute;
    background-color: transparent;
  }
}

.r-header__inner {
  height: 76px;
  height: 4.75rem;
  width: 100vw;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .r-header__inner {
    display: none;
  }
}

.r-header__logo {
  width: 100%;
  max-width: 140px;
  max-width: 8.75rem;
  padding: 11px 20px;
  padding: 0.6875rem 1.25rem;
}

.r-header__menu {
  height: inherit;
  padding-right: 40px;
  padding-right: 2.5rem;
  margin-left: auto;
  width: 100%;
}

.r-header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 231px;
  max-width: 14.4375rem;
  height: inherit;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffeb55;
  border-radius: 0 0 0 2.5rem;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  position: relative;
}

.r-header__contact:hover {
  background: #aceefa;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  transform: scale(1, 1);
}

.r-header__contact::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #aceefa;
  border-radius: 0 0 0 2.5rem;
  transform-origin: left top;
  transform: scale(1, 0);
  transition: transform 0.3s;
}
.r-header__contact:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.r-job-description {
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .r-job-description {
    padding: 0 1.25rem;
  }
}

.r-job-description::after {
  position: absolute;
  content: "";
  background-color: #f5f5f5;
  width: 100%;
  max-width: 100vw;
  height: 77.046%;
  top: 100px;
  top: 6.25rem;
  left: 0;
}

@media screen and (max-width: 767px) {
  .r-job-description::after {
    top: 5.625rem;
    height: 85%;
  }
}

.r-job-description::before {
  position: absolute;
  content: "";
  background: url(/assets/images/recruit/piece-sub-color.png) no-repeat center center/cover;
  width: 258px;
  width: 16.125rem;
  height: 354px;
  height: 22.125rem;
  bottom: 13%;
  right: 0;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .r-job-description::before {
    display: none;
  }
}

.r-job-description__inner {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin: 140px auto;
  margin: 8.75rem auto;
  border-radius: 6.25rem;
  position: relative;
  z-index: 10;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .r-job-description__inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: 34.375rem;
    border-radius: 1.875rem;
  }
}

.r-job-description__title-en {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #ffeb55;
}

@media screen and (max-width: 767px) {
  .r-job-description__title-en {
    font-size: 0.75rem;
  }
}

.r-job-description__title {
  margin-top: 10px;
  margin-top: 0.625rem;
  position: relative;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 00.04em;
}

@media screen and (max-width: 767px) {
  .r-job-description__title {
    font-size: 1.125rem;
  }
}

.r-job-description__title::after {
  position: absolute;
  content: "";
  background-color: #ffeb55;
  height: 25px;
  height: 1.5625rem;
  width: 2px;
  width: 0.125rem;
  border-radius: 0.125rem;
  bottom: -44px;
  bottom: -2.75rem;
  left: 0;
}

.r-job-description__content {
  padding: 60px 50px 0;
  padding: 3.75rem 3.125rem 0;
  margin-bottom: -30px;
  margin-bottom: -1.875rem;
}

@media screen and (max-width: 767px) {
  .r-job-description__content {
    width: 100%;
    max-width: 28.125rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.r-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .r-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.r-media--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .r-media--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

/* @media screen and (max-width: 767px) {
  .r-media--reverse .r-media__theme {
    margin-left: auto;
    margin-right: 0;
  }
} */

.r-media__body {
  margin-left: 8.593%;
  margin-right: auto;
  width: 100%;
  max-width: 392px;
  max-width: 24.5rem;
}

@media screen and (max-width: 767px) {
  .r-media__body {
    max-width: 100%;
    margin-left: 0;
    padding: 0 0.9375rem;
  }
}

.r-media--reverse .r-media__body {
  margin-left: 9.524%;
  margin-left: auto;
  margin-right: 8.593%;
}

@media screen and (max-width: 767px) {
  .r-media--reverse .r-media__body {
    margin-left: 0;
    margin-right: 0;
  }
}

.r-media__theme {
  font-size: 74px;
  font-size: 4.625rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-top: 12px;
  padding-top: 0.75rem;
  position: relative;
  display: table;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .r-media__theme {
    font-size: 2.6875rem;
  }
}

.r-media__theme::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  height: 1.25rem;
  border-radius: 0.625rem;
  bottom: 0;
  left: 10px;
  left: 0.625rem;
  background-color: #ffeb55;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .r-media__theme::before {
    height: 0.875rem;
    left: 0;
  }
}

.r-media__theme span {
  display: table;
  position: relative;
}

@media screen and (max-width: 767px) {
  .r-media__theme span {
    display: inline-block;
  }
}

.r-media__theme span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  height: 1.25rem;
  border-radius: 0.625rem;
  bottom: 0;
  left: 0px;
  left: 0rem;
  background-color: #ffeb55;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .r-media__theme span::before {
    display: none;
  }
}

.r-media__heading {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 34px;
  font-size: 2.125rem;
  letter-spacing: 0.04em;
  line-height: 1.875;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .r-media__heading {
    font-size: 20px;
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}

.r-media__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 2.14286;
}

@media screen and (max-width: 767px) {
  .r-media__text {
    margin-top: 1.25rem;
  }
}

.r-media__img {
  width: 100%;
  max-width: 421px;
  max-width: 26.3125rem;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 10px;
  margin-right: 0.625rem;
  margin-top: auto;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

@media screen and (max-width: 767px) {
  .r-media__img {
    max-width: 60.8%;
    margin-left: auto;
  }
}

@media screen and (max-width: 767px) {
  .r-media--reverse .r-media__img {
    margin-left: 0;
    margin-right: auto;
  }
}

.r-media__img img {
  border-radius: 1.25rem;
  -webkit-box-shadow: 10px 10px 0px 0px #ffeb55;
  box-shadow: 10px 10px 0px 0px #ffeb55;
}

@media screen and (max-width: 767px) {
  .r-media__img img {
    -webkit-box-shadow: 6px 6px 0px 0px #ffeb55;
    box-shadow: 6px 6px 0px 0px #ffeb55;
  }
}

.r-mv {
  background: url(/assets/images/recruit/recruit-mv-img.jpg) no-repeat center center/cover;
  position: relative;
  z-index: 20;
  margin-top: 76px;
  margin-top: 4.75rem;
}

@media screen and (max-width: 767px) {
  .r-mv {
    background: url(/assets/images/recruit/recruit-mv-sp.jpg) no-repeat center top/cover;
    margin-top: 0;
  }
}

.r-mv::after {
  position: absolute;
  content: "";
  background-color: #fff;
  height: 110px;
  height: 6.875rem;
  width: 2px;
  width: 0.125rem;
  bottom: -110px;
  bottom: -6.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .r-mv::after {
    height: 2.25rem;
    bottom: -2.25rem;
  }
}

.r-mv__inner {
  padding: 127px 50px 27px;
  padding: 7.9375rem 3.125rem 1.6875rem;
}

@media screen and (max-width: 767px) {
  .r-mv__inner {
    padding-left: 2.1875rem;
    padding-right: 2.1875rem;
    padding-top: 23.875rem;
  }
}

.r-mv__title-wrap {
  position: relative;
  z-index: 10;
}

.r-mv__title-wrap span {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

@media screen and (max-width: 767px) {
  .r-mv__title-wrap span {
    margin-bottom: 1.25rem;
  }
}

.r-mv__title-jp {
  font-size: 94px;
  font-size: 5.875rem;
  letter-spacing: 0.12em;
  position: relative;
  display: table;
  z-index: 30;
}

@media screen and (max-width: 767px) {
  .r-mv__title-jp {
    font-size: 2.5rem;
  }
}

.r-mv__title-jp::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100%;
  border-radius: 0 3.125rem 3.125rem 0rem;
  height: 60px;
  height: 3.75rem;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .r-mv__title-jp::before {
    height: 1.625rem;
  }
}

.r-mv__title-en {
  font-size: 114px;
  font-size: 7.125rem;
  letter-spacing: 0.08em;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  position: relative;
  display: table;
  z-index: 30;
}

@media screen and (max-width: 767px) {
  .r-mv__title-en {
    font-size: 3.25rem;
  }
}

.r-mv__title-en::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100%;
  border-radius: 0 3.125rem 3.125rem 0rem;
  height: 60px;
  height: 3.75rem;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .r-mv__title-en::before {
    height: 1.625rem;
  }
}

.r-mv__sub-title {
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding-bottom: 168px;
  padding-bottom: 10.5rem;
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", sans-serif;
}

@media screen and (max-width: 767px) {
  .r-mv__sub-title {
    font-size: 1rem;
    padding-bottom: 0.5rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .r-mv__title-wrap .r-mv__sub-title {
    margin-bottom: 0;
  }
}

.r-mv__text {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 767px) {
  .r-mv__text {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
  }
}

.r-mv__text::after {
  position: absolute;
  content: "";
  background-color: #242424;
  height: 43px;
  height: 2.6875rem;
  width: 1.5px;
  width: 0.09375rem;
  border-radius: 0.125rem;
  bottom: 32px;
  bottom: 2rem;
  left: 0;
}

@media screen and (max-width: 767px) {
  .r-mv__text::after {
    display: none;
  }
}

.r-number {
  background: url(/assets/images/recruit/r-number-bg.jpg) no-repeat center center/cover;
  margin-top: 73px;
  margin-top: 4.5625rem;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .r-number {
    margin-top: 0;
  }
}

.r-number::after {
  position: absolute;
  content: "";
  background: url(/assets/images/recruit/number-piece.png) no-repeat center center/cover;
  width: 258px;
  width: 16.125rem;
  height: 354px;
  height: 22.125rem;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .r-number::after {
    display: none;
  }
}

.r-number__inner {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 200px;
  margin-bottom: 12.5rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}

@media screen and (max-width: 767px) {
  .r-number__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 31.25rem;
    margin-bottom: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.r-number__heading {
  font-size: 34px;
  font-size: 2.125rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  background-color: #aceefa;
  max-width: 675px;
  max-width: 42.1875rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-radius: 2.4375rem;
  border: solid 2px #242424;
  padding: 22px 0px;
  padding: 22px 0rem;
  position: relative;
  z-index: 10;
  top: -41px;
  top: -2.5625rem;
}

@media screen and (max-width: 767px) {
  .r-number__heading {
    font-size: 1.125rem;
    padding: 0.875rem 0;
    top: -1.5625rem;
  }
}

.r-number__heading::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 11.5px 0 11.5px;
  border-color: #aceefa transparent transparent transparent;
  left: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  bottom: -29px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .r-number__heading::before {
    left: 48%;
  }
}

.r-number__heading::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 11.5px 0 11.5px;
  border-color: #242424 transparent transparent transparent;
  left: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  bottom: -32px;
  z-index: -2;
}

@media screen and (max-width: 767px) {
  .r-number__heading::after {
    left: 48%;
  }
}

.r-number__body {
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-right: -3.125%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -30px;
  margin-bottom: -1.875rem;
}

@media screen and (max-width: 767px) {
  .r-number__body {
    margin-right: auto;
    margin-left: auto;
    max-width: 355px;
    max-width: 22.1875rem;
  }
}

.r-number__item {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

@media screen and (max-width: 767px) {
  .r-number__item {
  }
}

.r-office {
  position: relative;
}

.r-office__inner {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .r-office__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 31.25rem;
  }
}

.r-office__title-en {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #ffeb55;
  padding-left: 83px;
  padding-left: 5.1875rem;
}

@media screen and (max-width: 767px) {
  .r-office__title-en {
    padding-left: 0;
  }
}

.r-office__title {
  margin-top: 10px;
  margin-top: 0.625rem;
  position: relative;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 00.04em;
  padding-left: 83px;
  padding-left: 5.1875rem;
}

@media screen and (max-width: 767px) {
  .r-office__title {
    padding-left: 0;
  }
}

.r-office__title::after {
  position: absolute;
  content: "";
  background-color: #ffeb55;
  height: 25px;
  height: 1.5625rem;
  width: 2px;
  width: 0.125rem;
  border-radius: 0.125rem;
  bottom: -44px;
  bottom: -2.75rem;
  left: 83px;
  left: 5.1875rem;
}

@media screen and (max-width: 767px) {
  .r-office__title::after {
    left: 0;
  }
}

.r-office__body {
  margin-top: 90px;
  margin-top: 5.625rem;
  margin-bottom: -70px;
  margin-bottom: -4.375rem;
}

@media screen and (max-width: 767px) {
  .r-office__body {
    margin-bottom: -3.9375rem;
  }
}

.r-office__item {
  margin-bottom: 70px;
  margin-bottom: 4.375rem;
}

@media screen and (max-width: 767px) {
  .r-office__item {
    margin-bottom: 3.9375rem;
  }
}

.r-poem-card {
  background-color: #fff;
  border: solid 12px #aceefa;
  border: solid 0.75rem #aceefa;
  min-height: 406px;
  min-height: 25.375rem;
  max-width: 237px;
  max-width: 14.8125rem;
  min-width: 237px;
  min-width: 14.8125rem;
  z-index: 10;
  position: relative;
  padding: 58px 40.5px 0;
  padding: 3.625rem 2.53125rem 0;
  background: url(/assets/images/recruit/poem-piece.png) no-repeat;
  background-position: bottom -12px right -12px;
  background-position: bottom -0.75rem right -0.75rem;
  background-size: 8.75rem 6.375rem;
}

.r-poem-card::before {
  position: absolute;
  content: "";
  background: url(/assets/images/recruit/poem-logo.png) no-repeat center center/cover;
  width: 39px;
  width: 2.4375rem;
  height: 31px;
  height: 1.9375rem;
  bottom: 4px;
  bottom: 0.25rem;
  left: 27px;
  left: 1.6875rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.r-poem-card__body {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 8;
  width: 100%;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  min-height: 352px;
  min-height: 22rem;
}

.r-poem-card__text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.6em;
}

.r-poem-card--excel::after,
.r-poem-card--special::after {
  position: absolute;
  content: "";
  width: 83px;
  width: 5.1875rem;
  height: 107px;
  height: 6.6875rem;
  top: -52px;
  top: -3.25rem;
  right: -82px;
  right: -5.125rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.r-poem-card--excel::after {
  background: url(/assets/images/recruit/excel-prize-icon.png) no-repeat center center/cover;
}

.r-poem-card--special::after {
  background: url(/assets/images/recruit/special-prize-icon.png) no-repeat center center/cover;
}

.r-poem-card--big::after,
.r-poem-card--welcome::after {
  position: absolute;
  content: "";
  width: 83px;
  width: 5.1875rem;
  height: 107px;
  height: 6.6875rem;
  top: -52px;
  top: -3.25rem;
  right: -34px;
  right: -2.125rem;
}

.r-poem-card--excel,
.r-poem-card--special {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.r-poem-card--big {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

.r-poem-card--big::after {
  background: url(/assets/images/recruit/big-prize-icon.png) no-repeat center center/cover;
}

.r-poem-card--welcome::after {
  background: url(/assets/images/recruit/welcome-prize-icon.png) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  .r-poem-card--big {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 0;
  }
  .r-poem-card--excel {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 5rem;
  }
  .r-poem-card--special {
    margin-top: 5rem;
  }
}

.r-poem {
  background: url(/assets/images/recruit/r-number-bg.jpg) no-repeat center center/cover;
  position: relative;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .r-poem {
    background: url(/assets/images/recruit/repeat-bg-sp.jpg) no-repeat center center/cover;
  }
}

.r-poem::after {
  background: url(/assets/images/recruit/poem-radius-bg.png) no-repeat center bottom/cover;
  position: absolute;
  content: "";
  bottom: 70%;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 33%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .r-poem::after {
    bottom: unset;
    top: 0;
    height: 19%;
  }
}

.r-poem__inner {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  padding-top: 140px;
  padding-top: 8.75rem;
  margin-top: 140px;
  margin-top: 8.75rem;
}

@media screen and (max-width: 767px) {
  .r-poem__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 34.375rem;
    margin-top: 1.25rem;
  }
}

.r-poem__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-top: 11px;
  margin-top: 0.6875rem;
}

@media screen and (max-width: 767px) {
  .r-poem__title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.r-poem__balloon {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: 00.06em;
  color: #aceefa;
  background-color: #242424;
  position: absolute;
  display: inline-block;
  border-radius: 1.875rem;
  padding: 14px 22px;
  padding: 0.875rem 1.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 190px;
  width: 11.875rem;
  top: -100%;
  font-style: normal;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .r-poem__balloon {
    font-size: 1.125rem;
    width: 122px;
    width: 7.625rem;
  }
}

.r-poem__balloon::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 9px 0 9px;
  border-color: #242424 transparent transparent transparent;
  bottom: -14px;
  bottom: -0.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.r-poem__title {
  font-size: 74px;
  font-size: 4.625rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 00.06em;
  min-width: 187px;
  min-width: 11.6875rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .r-poem__title {
    font-size: 3.75rem;
    margin-bottom: 1.0625rem;
  }
}

.r-poem__title-wrap img {
  display: block;
  max-width: 366px;
  max-width: 22.875rem;
}

@media screen and (max-width: 767px) {
  .r-poem__title-wrap img {
    max-width: 19.0625rem;
  }
}

.r-poem__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -5.625%;
  margin-top: 125px;
  margin-top: 7.8125rem;
}

@media screen and (max-width: 767px) {
  .r-poem__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0 0.9375rem;
    margin-right: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 70px;
    margin-top: 4.375rem;
  }
}

.r-poem__welcome {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 125px;
  margin-top: 7.8125rem;
}

@media screen and (max-width: 767px) {
  .r-poem__welcome {
    margin-top: 6.5625rem;
  }
}

.r-poem__item {
  margin-right: 5.326%;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .r-poem__item {
    margin-right: 0;
  }
}

.r-poem__border-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .r-poem__border-wrap {
    padding: 0 0.9375rem;
  }
}

.r-poem__border-wrap span {
  content: "";
  height: 1px;
  height: 0.0625rem;
  width: 100%;
  max-width: 100%;
  background-color: #242424;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.r-poem__border-text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 00.06em;
  min-width: 320px;
  min-width: 20rem;
  padding: 0 19px;
  padding: 0 1.1875rem;
}

@media screen and (max-width: 767px) {
  .r-poem__border-text {
    font-size: 1.125rem;
    min-width: 15.625rem;
  }
}

.r-poem__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .r-poem__text {
    padding: 0 0.9375rem;
  }
}

.r-tsumugibito {
  position: relative;
  z-index: 10;
  background-color: #ffeb55;
  background: -webkit-gradient(linear, right top, left top, color-stop(85.3588%, #ffeb55), color-stop(85.3588%, #fff));
  background: linear-gradient(to left, #ffeb55 85.3588%, #fff 85.3588% 100%);
}

.r-tsumugibito::before {
  position: absolute;
  content: "";
  background: url(/assets/images/recruit/tsumugibito-top-piece.png) no-repeat center center/cover;
  width: 258px;
  width: 16.125rem;
  height: 354px;
  height: 22.125rem;
  top: 0;
  left: 0;
  z-index: -9;
}

@media screen and (max-width: 767px) {
  .r-tsumugibito::before {
    display: none;
  }
}

.r-tsumugibito::after {
  position: absolute;
  content: "";
  background: url(/assets/images/recruit/tsumugibito-bottom-piece.png) no-repeat center center/cover;
  width: 258px;
  width: 16.125rem;
  height: 354px;
  height: 22.125rem;
  bottom: -354px;
  bottom: -22.125rem;
  right: 0;
  z-index: -9;
}

@media screen and (max-width: 767px) {
  .r-tsumugibito::after {
    display: none;
  }
}

.r-tsumugibito__inner {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-top: 138px;
  padding-top: 8.625rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .r-tsumugibito__inner {
    padding-top: 16.5625rem;
    padding-left: 0rem;
    padding-right: 2.1875rem;
    margin-left: 0;
  }
}

.r-tsumugibito__title-en {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #ffeb55;
}

@media screen and (max-width: 767px) {
  .r-tsumugibito__title-en {
    font-size: 0.75rem;
  }
}

.r-tsumugibito__title {
  margin-top: 10px;
  margin-top: 0.625rem;
  position: relative;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 00.04em;
}

@media screen and (max-width: 767px) {
  .r-tsumugibito__title {
    font-size: 1.125rem;
  }
}

.r-tsumugibito__title::after {
  position: absolute;
  content: "";
  background-color: #ffeb55;
  height: 25px;
  height: 1.5625rem;
  width: 2px;
  width: 0.125rem;
  border-radius: 0.125rem;
  bottom: -44px;
  bottom: -2.75rem;
  left: 0;
}

@media screen and (max-width: 767px) {
  .r-tsumugibito__title::after {
    bottom: -1.875rem;
    height: 1.25rem;
  }
}

.r-tsumugibito__body {
  margin-top: 75px;
  margin-top: 4.6875rem;
}

@media screen and (max-width: 767px) {
  .r-tsumugibito__body {
    margin-top: 3.125rem;
  }
}

.r-tsumugibito__heading {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: 00.06em;
}

@media screen and (max-width: 767px) {
  .r-tsumugibito__heading {
    font-size: 1.5rem;
    line-height: 1.45833;
  }
}

.r-tsumugibito__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  letter-spacing: 00.04em;
}

.r-tsumugibito__content {
  padding-top: 58px;
  padding-top: 3.625rem;
  padding-bottom: 208px;
  padding-bottom: 13rem;
  width: 100%;
  max-width: 504px;
  max-width: 31.5rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .r-tsumugibito__content {
    padding-left: 2.1875rem;
    padding-right: 1.875rem;
    padding-bottom: 11.625rem;
    max-width: 38.75rem;
  }
}

.r-tsumugibito__content::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100%;
  min-width: 100vw;
  height: 100%;
  top: 0px;
  top: 0rem;
  right: -73px;
  right: -4.5625rem;
  z-index: -10;
  border-radius: 0 6.25rem 0rem 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 767px) {
  .r-tsumugibito__content::after {
    min-width: unset;
    right: unset;
    left: 0;
  }
}

.r-tsumugibito__img {
  width: 39vw;
  max-width: 504px;
  max-width: 31.5rem;
  position: absolute;
  right: -38vw;
  top: -80px;
  top: -5rem;
}

@media screen and (max-width: 767px) {
  .r-tsumugibito__img {
    right: -0.9375rem;
    top: -13.0625rem;
    max-width: 14.625rem;
    width: 100%;
  }
}

.r-welfare-base__heading {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 00.06em;
  background-color: #aceefa;
  padding: 20px 0;
  padding: 1.25rem 0;
  text-align: center;
  border-radius: 1.25rem 1.25rem 0 0;
}

@media screen and (max-width: 767px) {
  .r-welfare-base__heading {
    font-size: 1.125rem;
  }
}

.r-welfare-base__heading span {
  position: relative;
}

.r-welfare-base__heading span::after {
  position: absolute;
  content: "";
  background: url(/assets/images/recruit/to-relax-icon.png) no-repeat center center/contain;
  width: 82px;
  width: 5.125rem;
  height: 72px;
  height: 4.5rem;
  left: -95px;
  left: -5.9375rem;
  top: -40px;
  top: -2.5rem;
}

.r-welfare-base__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: solid 8px #aceefa;
  border: solid 0.5rem #aceefa;
  border-top: none;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 40px 75px 32px;
  padding: 2.5rem 4.6875rem 2rem;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .r-welfare-base__item-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.25rem 3.125rem 1.25rem;
    margin-left: auto;
    margin-right: auto;
    border: solid 0.25rem #aceefa;
  }
}

.r-welfare-base__items {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 270px;
  max-width: 16.875rem;
}

@media screen and (max-width: 767px) {
  .r-welfare-base__items {
    margin-left: auto;
    margin-right: auto;
    width: 11.375rem;
  }
}

.r-welfare-base__item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 00.06em;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 767px) {
  .r-welfare-base__item {
    font-size: 1rem;
  }
}

.r-welfare-base__item span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 00.06em;
  color: #aceefa;
  margin-right: 11px;
  margin-right: 0.6875rem;
}

@media screen and (max-width: 767px) {
  .r-welfare-base__item span {
    font-size: 1rem;
  }
}

.r-welfare-original__heading {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 00.06em;
  background-color: #ffeb55;
  padding: 20px 0;
  padding: 1.25rem 0;
  text-align: center;
  border-radius: 1.25rem 1.25rem 0 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .r-welfare-original__heading {
    font-size: 1.125rem;
  }
}

.r-welfare-original__heading span {
  position: relative;
}

.r-welfare-original__heading span::after {
  position: absolute;
  content: "";
  background: url(/assets/images/recruit/to-fun-icon.png) no-repeat center bottom/contain;
  width: 82px;
  width: 5.125rem;
  height: 72px;
  height: 4.5rem;
  left: -85px;
  left: -5.3125rem;
  top: -40px;
  top: -2.5rem;
}

.r-welfare-original__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: solid 8px #ffeb55;
  border: solid 0.5rem #ffeb55;
  border-top: none;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 40px 75px 32px;
  padding: 2.5rem 4.6875rem 2rem;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .r-welfare-original__item-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.25rem 0.3125rem 1.25rem;
    margin-left: auto;
    margin-right: auto;
    border: solid 0.25rem #ffeb55;
  }
}

.r-welfare-original__items {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 317px;
  max-width: 19.8125rem;
}

@media screen and (max-width: 767px) {
  .r-welfare-original__items {
    margin-left: auto;
    margin-right: auto;
    width: 19.8125rem;
  }
}

.r-welfare-original__item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 00.06em;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 767px) {
  .r-welfare-original__item {
    font-size: 1rem;
  }
}

.r-welfare-original__item span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 00.06em;
  color: #ffeb55;
  padding-right: 11px;
  padding-right: 0.6875rem;
}

@media screen and (max-width: 767px) {
  .r-welfare-original__item span {
    font-size: 1rem;
  }
}

.r-welfare {
  position: relative;
  z-index: 10;
}

.r-welfare::before {
  position: absolute;
  content: "";
  background-color: #f5f5f5;
  width: 100%;
  max-width: 85.3588vw;
  min-width: 980px;
  min-width: 61.25rem;
  height: 100%;
  top: 0px;
  top: 0rem;
  right: 0;
  z-index: -10;
  border-radius: 6.25rem 0 0 6.25rem;
}

@media screen and (max-width: 767px) {
  .r-welfare::before {
    min-width: unset;
    max-width: 96%;
    border-radius: 1.875rem 0 0 1.875rem;
  }
}

.r-welfare::after {
  position: absolute;
  content: "";
  background: url(/assets/images/recruit/piece-sub-color.png) no-repeat center center/cover;
  width: 258px;
  width: 16.125rem;
  height: 354px;
  height: 22.125rem;
  bottom: 0;
  right: 0;
  z-index: -9;
}

@media screen and (max-width: 767px) {
  .r-welfare::after {
    width: 14.125rem;
    height: 19.375rem;
  }
}

.r-welfare__inner {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-top: 138px;
  padding-top: 8.625rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .r-welfare__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 34.375rem;
    padding-top: 3.625rem;
    padding-bottom: 6.25rem;
  }
}

.r-welfare__title-en {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-style: italic;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #ffeb55;
}

@media screen and (max-width: 767px) {
  .r-welfare__title-en {
    padding-left: 0.9375rem;
  }
}

.r-welfare__title {
  margin-top: 10px;
  margin-top: 0.625rem;
  position: relative;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 00.04em;
}

@media screen and (max-width: 767px) {
  .r-welfare__title {
    font-size: 1.125rem;
    padding-left: 0.9375rem;
  }
}

.r-welfare__title::after {
  position: absolute;
  content: "";
  background-color: #ffeb55;
  height: 25px;
  height: 1.5625rem;
  width: 2px;
  width: 0.125rem;
  border-radius: 0.125rem;
  bottom: -44px;
  bottom: -2.75rem;
  left: 0;
}

@media screen and (max-width: 767px) {
  .r-welfare__title::after {
    left: 0.9375rem;
  }
}

.r-welfare__body {
  margin-top: 75px;
  margin-top: 4.6875rem;
}

@media screen and (max-width: 767px) {
  .r-welfare__body {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.r-welfare__heading {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: 00.06em;
}

@media screen and (max-width: 767px) {
  .r-welfare__heading {
    font-size: 1.4375rem;
  }
}

.r-welfare__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  letter-spacing: 00.04em;
}

.r-welfare__content {
  padding-top: 40px;
  padding-top: 2.5rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.r-work-info__item {
  background-color: #dedede;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1.75rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

@media screen and (max-width: 767px) {
  .r-work-info__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 1.25rem;
    text-align: center;
  }
}

.r-work-info__item dt {
  width: 100%;
  max-width: 134px;
  max-width: 8.375rem;
  border-radius: 1.75rem 0rem 0rem 1.75rem;
  padding: 19px 20px;
  padding: 1.1725rem 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 00.04em;
}

@media screen and (max-width: 767px) {
  .r-work-info__item dt {
    border-radius: 0;
    font-size: 0.875rem;
    padding: 0.625rem;
  }
}

.r-work-info__item dd {
  background-color: #f5f5f5;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-radius: 0rem 1.75rem 1.75rem 0;
  padding: 13px 30px;
  padding: 0.8125rem 1.875rem;
}

@media screen and (max-width: 767px) {
  .r-work-info__item dd {
    border-radius: 0 0 1.25rem 1.25rem;
    width: 100%;
    padding: 0.625rem;
  }
}

.r-work-info__item dd a {
  text-decoration: underline;
  color: #16205c;
}

.construction-description {
  background-color: #16205c;
}

@media screen and (max-width: 767px) {
  .construction-description {
    background-color: transparent;
  }
}

.construction-description__service {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}

@media screen and (max-width: 767px) {
  .construction-description__service {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.construction-overview {
  padding-top: 175px;
  padding-top: 10.9375rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .construction-overview {
    padding-top: 0rem;
    margin-top: 12.5rem;
    padding-left: 2.1875rem !important;
    padding-right: 2.1875rem !important;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
  }
}

.construction-overview::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100vw;
  height: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  top: 0;
  right: 0;
  z-index: -10;
}

@media screen and (max-width: 767px) {
  .construction-overview::after {
    right: 1.25rem;
  }
}

.construction-overview__wrap {
  position: relative;
}

@media screen and (max-width: 767px) {
  .construction-overview__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.construction-overview__body {
  width: 100%;
  max-width: 420px;
  max-width: 26.25rem;
}

.construction-overview__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.construction-overview__img {
  position: absolute;
  content: "";
  width: 100%;
  max-width: 53.75%;
  height: auto;
  top: 0;
  right: -18%;
}

@media screen and (max-width: 767px) {
  .construction-overview__img {
    position: relative;
    max-width: 17.75rem;
    top: -6.25rem;
    right: 0;
    margin-left: auto;
  }
}

.construction-overview__point {
  margin-top: 105px;
  margin-top: 6.5625rem;
}

@media screen and (max-width: 767px) {
  .construction-overview__point {
    margin-top: 2.5rem;
    max-width: 20.9375rem;
  }
}

.construction-service {
  color: #fff;
  background-color: #16205c;
}

@media screen and (max-width: 767px) {
  .construction-service {
    background-color: transparent;
  }
}

.construction-service__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 36px;
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  .construction-service__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.construction-service__img {
  width: 100%;
  max-width: 51.25%;
  padding-right: 5%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .construction-service__img {
    max-width: 100%;
  }
}

.construction-service__body {
  width: 100%;
  max-width: 46.25%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .construction-service__body {
    max-width: 100%;
  }
}

.construction-service__heading {
  line-height: 1.94444;
  letter-spacing: 0.04em;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .construction-service__heading {
    font-size: 1rem;
    margin-top: 1.25rem;
    text-align: center;
  }
}

.construction-service__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.construction {
  position: relative;
  padding: 0 4%;
}

@media screen and (max-width: 767px) {
  .construction {
    padding: 0;
  }
}

.construction::after {
  position: absolute;
  content: "";
  background-color: #16205c;
  width: 85.359%;
  height: calc(100% - 3.5rem);
  top: 56px;
  top: 3.5rem;
  right: 0;
  z-index: -20;
}

@media screen and (max-width: 767px) {
  .construction::after {
    width: 96%;
    height: 94.3%;
  }
}

.construction__content {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .construction__content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 34.375rem;
  }
}

.environment-overview {
  padding-top: 175px;
  padding-top: 10.9375rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .environment-overview {
    padding-top: 0;
    padding-bottom: 3.75rem;
  }
}

.environment-overview__wrap {
  position: relative;
}

@media screen and (max-width: 767px) {
  .environment-overview__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.environment-overview__body {
  width: 100%;
  max-width: 420px;
  max-width: 26.25rem;
}

.environment-overview__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  letter-spacing: 0.04em;
}

.environment-overview__img {
  position: absolute;
  content: "";
  width: 100%;
  max-width: 53.75%;
  height: auto;
  top: 0;
  right: -18%;
}

@media screen and (max-width: 767px) {
  .environment-overview__img {
    position: relative;
    max-width: 17.75rem;
    top: -6.25rem;
    right: 0;
    margin-left: auto;
  }
}

.environment-overview__point {
  margin-top: 105px;
  margin-top: 6.5625rem;
}

@media screen and (max-width: 767px) {
  .environment-overview__point {
    margin-top: 2.5rem;
    max-width: 19.0625rem;
  }
}

.environment-service {
  color: #fff;
  background-color: #16205c;
}

.environment-service__title {
  padding-top: 60px;
  padding-top: 3.75rem;
}

.environment-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}

@media screen and (max-width: 767px) {
  .environment-service__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0;
    padding-bottom: 4.375rem;
  }
}

.environment-service__item {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.environment-service__left {
  padding-right: 6.314%;
}

@media screen and (max-width: 767px) {
  .environment-service__left {
    padding-right: 0;
  }
}

.environment-service__right {
  padding-left: 6.314%;
}

@media screen and (max-width: 767px) {
  .environment-service__right {
    padding-left: 0;
  }
}

.environment-service__heading {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 1.94444;
  letter-spacing: 0.04em;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .environment-service__heading {
    font-size: 1rem;
    margin-top: 1.875rem;
  }
}

.environment-service__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .environment-service__text {
    padding-bottom: 1.875rem;
  }
}

.environment {
  position: relative;
  padding: 0 4%;
  margin-top: 140px;
  margin-top: 8.75rem;
}

@media screen and (max-width: 767px) {
  .environment {
    margin-top: 240px;
    margin-top: 15rem;
  }
}

.environment::after {
  position: absolute;
  content: "";
  background-color: #16205c;
  width: 85.359%;
  /* min-width: 366px;
  min-width: 22.875rem; */
  height: calc(100% - 3.5rem);
  top: 56px;
  top: 3.5rem;
  right: 0;
  z-index: -20;
}
@media screen and (max-width: 767px) {
  .environment::after {
    width: 96%;
  }
}

.environment-bg {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 100vw;
  height: 856px;
  /* height: 53.5rem; */
  height: 38.5rem;
  right: 0;
  top: 0;
  z-index: -1;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1367px) {
  .environment-bg {
    /* max-width: 85.359%; */
  }
}
@media screen and (max-width: 767px) {
  .environment-bg {
    width: 100vw;
    height: 100%;
  }
}

.environment__content {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .environment__content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 34.375rem;
  }
}




.fc-case__inner {
  margin-top: 90px;
  margin-top: 5.625rem;
  background-color: #fff;
  position: relative;
}

.fc-case__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: -72px;
  top: -4.5rem;
  left: 0;
}

@media screen and (max-width: 767px) {
  .fc-case__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    top: -3.75rem;
    width: 100%;
  }
}

.fc-case__header-name {
  -ms-flex-preferred-size: 56.25%;
  flex-basis: 56.25%;
  margin-right: 8.75%;
  background-color: #8a8eb4;
  min-height: 100px;
  min-height: 6.25rem;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 32px 0 32px 5%;
  padding: 2rem 0 2rem 5%;
  line-height: 1.5;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .fc-case__header-name {
    font-size: 1.125rem;
    padding: 0.625rem;
    -ms-flex-preferred-size: unset;
    flex-basis: unset;
    min-height: unset;
    display: inline-block;
    margin-right: auto;
    position: relative;
    top: -0.6875rem;
  }
}

.fc-case__header-name span {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .fc-case__header-name span {
    font-size: 0.875rem;
  }
}

.fc-case__header-img {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  margin-right: 5%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .fc-case__header-img {
    margin-right: 0;
    margin-left: auto;
    -ms-flex-preferred-size: unset;
    flex-basis: unset;
    width: 100%;
    max-width: 67.5%;
    max-width: 12.6875rem;
  }
}

.fc-case__body {
  padding: 110px 40px 40px;
  padding: 6.875rem 2.5rem 2.5rem;
}

@media screen and (max-width: 767px) {
  .fc-case__body {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.fc-case__body-heading {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5625;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .fc-case__body-heading {
    margin-top: 3.75rem;
  }
}

.fc-case__body-text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.fc-description {
  background-color: #16205c;
}

.fc-description__service {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

@media screen and (max-width: 767px) {
  .fc-description__service {
    padding-bottom: 0.625rem;
  }
}

.fc-description__strength {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.fc-description__case {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}

@media screen and (max-width: 767px) {
  .fc-description__case {
    padding-bottom: 6.25rem;
  }
}

.fc-overview {
  background-color: #fff;
  position: relative;
  padding-top: 175px;
  padding-top: 10.9375rem;
}

@media screen and (max-width: 767px) {
  .fc-overview {
    padding-top: 6.9375rem;
  }
}

.fc-overview::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100vw;
  height: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  top: 0;
  right: 0;
  z-index: -10;
}

.fc-overview__body {
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}

@media screen and (max-width: 767px) {
  .fc-overview__body {
    padding-bottom: 3.75rem;
  }
}

.fc-overview__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.fc-overview__img {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.fc-overview__img img {
  -o-object-fit: cover;
  object-fit: cover;
}

.fc-overview__point {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.fc-service-block {
  color: #fff;
}

.fc-service-block__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .fc-service-block__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.fc-service-block__item {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.fc-service-block__left {
  padding-right: 3.675%;
}

@media screen and (max-width: 767px) {
  .fc-service-block__left {
    padding-right: 0;
  }
}

.fc-service-block__right {
  padding-left: 3.675%;
}

@media screen and (max-width: 767px) {
  .fc-service-block__right {
    padding-left: 0;
    margin-top: 1.875rem;
  }
}

.fc-service-block__img img {
  -o-object-fit: cover;
  object-fit: cover;
}

.fc-service-block__heading {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 1.94444;
  letter-spacing: 0.04em;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .fc-service-block__heading {
    font-size: 1rem;
    line-height: 2.1875;
  }
}

.fc-service-block__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (max-width: 767px) {
  .fc-service-block__text {
    padding-bottom: 1.875rem;
  }
}

.fc-strength {
  color: #16205c;
  background-color: #fff;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
}

@media screen and (max-width: 767px) {
  .fc-strength {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.fc-strength__body {
  text-align: center;
  border-bottom: solid 1px #dedede;
  border-bottom: solid 0.0625rem #dedede;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}

@media screen and (max-width: 767px) {
  .fc-strength__body {
    text-align: left;
  }
}

.fc-strength__heading {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .fc-strength__heading {
    text-align: center;
    font-size: 1rem;
  }
}

.fc-strength__kind-wrap {
  margin-top: 15px;
  margin-top: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fc-strength__kind {
  color: #fff;
  background-color: #f4921f;
  border-radius: 1.5rem;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  padding: 4px 20px;
  padding: 0.25rem 1.25rem;
  margin: 0 5px;
  margin: 0 0.3125rem;
}

@media screen and (max-width: 767px) {
  .fc-strength__kind {
    font-size: 1.125rem;
    padding: 0.5rem 0.875rem;
    margin: 0 0.1875rem;
  }
}

.fc-strength__text {
  color: #242424;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.fc-strength__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .fc-strength__icons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0;
  }
}

.fc-strength__item {
  width: 100%;
  max-width: 160px;
  max-width: 10rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .fc-strength__item {
    max-width: 100%;
    margin-top: 1.875rem;
  }
}

.fc-strength__item-text {
  display: none;
}

@media screen and (max-width: 767px) {
  .fc-strength__item-text {
    display: block;
    text-align: center;
    width: 100%;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5625;
    letter-spacing: 0.04em;
    margin-top: 1.4375rem;
  }
}

.fc-strength__icon-wrap {
  width: 97px;
  width: 6.0625rem;
  height: 97px;
  height: 6.0625rem;
  border-radius: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
}

.fc-strength__icon-text {
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #f4921f;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}

.fc-strength__icon {
  width: 46px;
  width: 2.875rem;
}

.fc-strength__summary-wrap {
  margin-top: 10px;
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.fc-strength__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5625;
  letter-spacing: 0.04em;
}

.fc {
  -webkit-transform: translateY(-3.5rem);
  transform: translateY(-3.5rem);
  position: relative;
  padding: 0 4%;
}

.fc::after {
  position: absolute;
  content: "";
  background-color: #16205c;
  width: 85.359%;
  height: calc(100% - 3.5rem);
  top: 56px;
  top: 3.5rem;
  right: 0;
  z-index: -20;
}

.fc__content {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .fc__content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 35.625rem;
  }
}







.brand {
  -webkit-transform: translateY(-3.5rem);
  transform: translateY(-3.5rem);
  position: relative;
  padding: 0 4%;
  margin-top: 9.3125rem;
}

.brand::after {
  position: absolute;
  content: "";
  background-color: #16205c;
  width: 85.359%;
  height: calc(100% - 3.5rem);
  top: 56px;
  top: 3.5rem;
  right: 0;
  z-index: -20;
}

.brand__content {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .brand {
    margin-top: 5.3125rem;
    padding: 0 4% 0 0%;
  }
  .brand__content {
    padding-left: 1.25rem;
    padding-right: 0.25rem;
    max-width: 35.625rem;
  }
}



.brand-overview {
  background-color: #fff;
  position: relative;
  padding-top: 175px;
  padding-top: 10.9375rem;
}

@media screen and (max-width: 767px) {
  .brand-overview {
    padding-top: 6.9375rem;
  }
}

.brand-overview::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100vw;
  height: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  top: 0;
  right: 0;
  z-index: -10;
}

.brand-overview__body {
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}

@media screen and (max-width: 767px) {
  .brand-overview__body {
    padding-bottom: 3.75rem;
  }
}

.brand-overview__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.brand-overview__img {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.brand-overview__img img {
  -o-object-fit: cover;
  object-fit: cover;
}

.brand-overview__point {
  margin-top: 60px;
  margin-top: 3.75rem;
}


.brand-description {
  background-color: #16205c;
}

.brand-description__service {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

@media screen and (max-width: 767px) {
  .brand-description__service {
    padding-bottom: 2.625rem;
  }
}




.brand-service-block__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-top: 1.875rem;
  background-color: #fff;
  padding: 50px 50px;
}

@media screen and (max-width: 767px) {
  .brand-service-block__items {
    padding: 30px 30px;
    gap: 10px 4%;
  }
}

.brand-service-block__item {
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
}


@media screen and (max-width: 767px) {
  .brand-service-block__item {
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
  }
}


.brand-service-block__img{
  text-align: center;
}


.brand-service-block__img img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 150px;
  margin: 0px auto;
}


.brand__btn{
  margin-top: 30px;
  text-align: center;
}


.brand__btn .square-btn{
  border: 1px solid #fff;
  margin: 0px auto;
}




.icon-card {
  padding: 0 20px 40px;
  padding: 0 1.25rem 2.5rem;
}

.icon-card--bg-blue,
.icon-card--bg-blue-pc {
  background-color: #16205c;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .icon-card--bg-blue-pc {
    background-color: #dedede;
    color: #16205c;
  }
}

.icon-card--bg-gray,
.icon-card--bg-gray-pc {
  background-color: #dedede;
  color: #16205c;
}

@media screen and (max-width: 767px) {
  .icon-card--bg-gray-pc {
    background-color: #16205c;
    color: #fff;
  }
}

.icon-card__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.icon-card__number {
  width: 76px;
  width: 4.75rem;
}

.icon-card__icon {
  width: 81px;
  width: 5.0625rem;
}

.icon-card__heading {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.icon-card__text {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.industry-overview {
  padding-top: 175px;
  padding-top: 10.9375rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  position: relative;
  margin-top: 136px;
  margin-top: 8.5rem;
}

@media screen and (max-width: 767px) {
  .industry-overview {
    padding-top: 0;
    padding-bottom: 3.75rem;
  }
}

/* .industry-overview::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  top: 0;
  left: 0;
  z-index: -10;
} */

.industry-overview__wrap {
  position: relative;
}

@media screen and (max-width: 767px) {
  .industry-overview__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.industry-overview__body {
  width: 100%;
  max-width: 420px;
  max-width: 26.25rem;
}

.industry-overview__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.industry-overview__img {
  position: absolute;
  content: "";
  width: 100%;
  max-width: 53.75%;
  height: auto;
  top: 0;
  right: -148px;
}
@media screen and (max-width: 1120px) {
  .industry-overview__img {
    right: -15%;
  }
}

@media screen and (max-width: 767px) {
  .industry-overview__img {
    position: relative;
    max-width: 17.75rem;
    top: -6.25rem;
    right: 0;
    margin-left: auto;
  }
}

.industry-overview__point {
  margin-top: 105px;
  margin-top: 6.5625rem;
}

@media screen and (max-width: 767px) {
  .industry-overview__point {
    margin-top: 2.5rem;
    max-width: 20.9375rem;
  }
}

.industry-service {
  /* background-color: #8a8eb4; */
}

.industry-service__title {
  padding-top: 64px;
  padding-top: 4rem;
}

.industry-service__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -7.5%;
  margin-top: 36px;
  margin-top: 2rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

@media screen and (max-width: 767px) {
  .industry-service__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
    padding-bottom: 1.875rem;
  }
}

.industry-service__item {
  width: 100%;
  max-width: 43.025%;
  margin-right: 6.97%;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

@media screen and (max-width: 767px) {
  .industry-service__item {
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 1.875rem;
  }
  .industry-service__item:last-child {
    /* margin-bottom: 0; */
  }
}

.industry {
  position: relative;
  padding: 0 4%;
}

.industry::after {
  position: absolute;
  content: "";
  background-color: #8a8eb4;
  width: 85.359%;
  width: 94%;
  height: calc(100% - 3.5rem);
  top: 56px;
  top: 3.5rem;
  left: 0;
  z-index: -20;
}
@media screen and (max-width: 767px) {
  .industry::after {
    width: 100%;
    height: 99.463%;
  }
}

.industry-bg {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 92%;
  max-width: 1166px;
  height: 690px;
  height: 43.125rem;
  right: 0;
  top: 0;
  z-index: -1;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1367px) {
  .industry-bg {
    max-width: 85.359%;
  }
}
@media screen and (max-width: 767px) {
  .industry-bg {
    width: 100%;
    max-width: 96%;
    min-width: unset;
    height: 695px;
    height: 43.4375rem;
  }
}

.industry__content {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .industry__content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 34.375rem;
  }
}

.l-construction {
  margin-top: 140px;
  margin-top: 8.75rem;
}

.overseas-case__inner {
  margin-top: 112px;
  margin-top: 7rem;
  background-color: #fff;
  position: relative;
}

.overseas-case__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: -72px;
  top: -4.5rem;
  left: 0;
}

@media screen and (max-width: 767px) {
  .overseas-case__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    top: -3.75rem;
    width: 100%;
  }
}

.overseas-case__header-name {
  -ms-flex-preferred-size: 56.25%;
  flex-basis: 56.25%;
  margin-right: 8.75%;
  background-color: #16205c;
  min-height: 100px;
  min-height: 6.25rem;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 32px 0 32px 5%;
  padding: 2rem 0 2rem 5%;
  line-height: 1.5;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .overseas-case__header-name {
    font-size: 1.125rem;
    padding: 0.625rem 0.5rem;
    -ms-flex-preferred-size: unset;
    flex-basis: unset;
    min-height: unset;
    display: inline-block;
    margin-right: auto;
    position: relative;
    top: -0.6875rem;
  }
}

.overseas-case__header-name span {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .overseas-case__header-name span {
    font-size: 0.875rem;
  }
}

.overseas-case__header-img {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  margin-right: 5%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .overseas-case__header-img {
    margin-right: 0;
    margin-left: auto;
    -ms-flex-preferred-size: unset;
    flex-basis: unset;
    width: 100%;
    max-width: 67.5%;
    max-width: 12.6875rem;
  }
}

.overseas-case__body {
  padding: 110px 40px 40px;
  padding: 6.875rem 2.5rem 2.5rem;
}

@media screen and (max-width: 767px) {
  .overseas-case__body {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.overseas-case__body-heading {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5625;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .overseas-case__body-heading {
    margin-top: 3.75rem;
  }
}

.overseas-case__body-text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.overseas-description {
  /* background-color: #8a8eb4; */
}
@media screen and (max-width: 767px) {
  .overseas-description {
    background-color: unset;
    padding-top: 20px;
    padding-top: 1.25rem;
  }
}

.overseas-description__service {
  padding-top: 60px;
  padding-top: 3.75rem;
}

.overseas-description__case {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 130px;
  padding-bottom: 8.125rem;
}

@media screen and (max-width: 767px) {
  .overseas-description__case {
    padding-bottom: 6.25rem;
    padding-top: 1.875rem;
  }
}

.overseas-overview {
  padding-top: 175px;
  padding-top: 10.9375rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  position: relative;
  margin-top: 85px;
  margin-top: 5.3125rem;
}

@media screen and (max-width: 767px) {
  .overseas-overview {
    padding-top: 0rem;
    margin-top: 9.0625rem;
    padding-bottom: 3.75rem;
  }
}

/* .overseas-overview::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 90%;
  height: 100%;
  top: 0;
  right: 0;
} */

/* .overseas-overview::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;

  top: 0;
  left: 0;
  z-index: -10;
} */

.overseas-overview__wrap {
  position: relative;
}

@media screen and (max-width: 767px) {
  .overseas-overview__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.overseas-overview__body {
  width: 100%;
  max-width: 420px;
  max-width: 26.25rem;
}

.overseas-overview__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.overseas-overview__img {
  position: absolute;
  content: "";
  width: 100%;
  max-width: 53.75%;
  height: auto;
  top: 0;
  right: -148px;
}
@media screen and (max-width: 1120px) {
  .overseas-overview__img {
    right: -15%;
  }
}

@media screen and (max-width: 767px) {
  .overseas-overview__img {
    position: relative;
    max-width: 17.75rem;
    top: -6.25rem;
    right: 0;
    margin-left: auto;
  }
}

.overseas-overview__point {
  margin-top: 105px;
  margin-top: 6.5625rem;
}

@media screen and (max-width: 767px) {
  .overseas-overview__point {
    margin-top: 2.5rem;
  }
}

.overseas-service-block {
  color: #fff;
}

.overseas-service-block__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .overseas-service-block__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0;
  }
}

.overseas-service-block__item {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.overseas-service-block__left {
  padding-right: 6.314%;
}

@media screen and (max-width: 767px) {
  .overseas-service-block__left {
    padding-right: 0;
  }
}

.overseas-service-block__right {
  padding-left: 6.314%;
}

@media screen and (max-width: 767px) {
  .overseas-service-block__right {
    padding-left: 0;
  }
}

.overseas-service-block__heading {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 1.94444;
  letter-spacing: 0.04em;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .overseas-service-block__heading {
    font-size: 1rem;
    margin-top: 1.875rem;
  }
}

.overseas-service-block__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (max-width: 767px) {
  .overseas-service-block__text {
    padding-bottom: 1.875rem;
  }
}

.overseas {
  position: relative;
  padding: 0 4%;
}

.overseas::after {
  position: absolute;
  content: "";
  background-color: #8a8eb4;
  width: 85.359%;
  width: 94%;
  height: calc(100% - 3.5rem);
  top: 56px;
  top: 3.5rem;
  left: 0;
  z-index: -20;
}

@media screen and (max-width: 767px) {
  .overseas::after {
    width: 100%;
    height: 97.8965%; /*2609pxになるよう調節*/
  }
}

.overseas-bg {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 92%;
  max-width: 1166px;
  height: 856px;
  height: 53.5rem;
  right: 0;
  top: 0;
  z-index: -1;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1367px) {
  .overseas-bg {
    max-width: 85.359%;
  }
}
@media screen and (max-width: 767px) {
  .overseas-bg {
    width: 100%;
    max-width: 96%;
    min-width: unset;
    height: 36%;
    min-height: 850px;
    min-height: 53.125rem;
  }
}

.overseas__content {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .overseas__content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 34.375rem;
  }
}

.achievement {
  margin-top: 140px;
  margin-top: 8.75rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  .achievement {
    margin-top: 100px;
    margin-top: 6.25rem;
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }
}

.achievement__title-en {
  color: #16205c;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  width: 100%;
  text-align: center;
  z-index: 10;
  font-family: "Roboto", sans-serif;
}

.achievement__title-en::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 55px;
  width: 3.4375rem;
  height: 2px;
  height: 0.125rem;
  background-color: #16205c;
}

.achievement__title {
  color: #16205c;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .achievement__title {
    font-size: 1.25rem;
    line-height: 1.75;
  }
}

.achievement__list-wrap {
  margin-bottom: -20px;
  margin-bottom: -1.25rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.achievement__list-item {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 00.08em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .achievement__list-item {
    display: block;
  }
}

.achievement__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.achievement__category {
  color: #fff;
  background-color: #16205c;
  padding: 10px 0px;
  padding: 0.625rem 0rem;
  min-width: 99px;
  min-width: 6.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .achievement__category {
    font-size: 0.75rem;
    min-width: 4.4375rem;
    padding: 0.625rem 0.3125rem;
  }
}

.achievement__date {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  min-width: 99px;
  min-width: 6.1875rem;
  padding: 10px 0px;
  padding: 0.625rem 0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .achievement__date {
    font-size: 0.75rem;
    min-width: unset;
    padding: 0.625rem 0.3125rem;
    margin-left: 0.3125rem;
  }
}

.achievement__heading {
  line-height: 1.78571;
  padding: 8px 20px 8px 0;
  padding: 0.5rem 1.25rem 0.5rem 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .achievement__heading {
    padding: 0.625rem 0.9375rem 1.25rem;
    font-size: 0.875rem;
  }
}

.achievement__img-wrap {
  margin-top: 60px;
  margin-top: 3.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .achievement__img-wrap {
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.achievement__img-wrap img {
  width: 100%;
  max-width: 43.635%;
  display: block;
}

@media screen and (max-width: 767px) {
  .achievement__img-wrap img {
    margin-right: 0;
    max-width: 66.86%;
  }
}

@media screen and (max-width: 767px) {
  .achievement__img-wrap img:first-child {
    margin-bottom: 1.25rem;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .achievement__img-wrap img:nth-child(2) {
    margin-left: auto;
  }
}

.community-overview {
  background-color: #fff;
  position: relative;
  padding-top: 184px;
  padding-top: 11.5rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  background-color: #fff;
  margin-bottom: 140px;
  margin-bottom: 8.75rem;
}

@media screen and (max-width: 767px) {
  .community-overview {
    padding-bottom: 3.75rem;
    margin-bottom: 6.25rem;
    padding-top: 100px;
    padding-top: 6.25rem;
  }
}

.community-overview::after {
  position: absolute;
  content: "";
  background-color: #8a8eb4;
  width: 100vw;
  max-width: 100vw;
  height: 66%;
  top: 302px;
  top: 18.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -20;
}

.community-overview__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  letter-spacing: 0.04em;
}

.community-overview__img {
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .community-overview__img {
    width: 100%;
    max-width: 28.125rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.community-overview__img img {
  -o-object-fit: cover;
  object-fit: cover;
}

.community-overview__point {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.community {
  position: relative;
  padding: 0 4%;
}

@media screen and (max-width: 767px) {
  .community {
    padding: 0;
  }
}

.community__content {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .community__content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 34.375rem;
  }
}

.community__content--wide {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 767px) {
  .m-navi-function {
    max-width: 28.125rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.m-navi-function__heading {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  background-color: #16205c;
  padding: 24px 0;
  padding: 1.5rem 0;
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .m-navi-function__heading {
    padding: 1rem 0;
  }
}

.m-navi-function__img {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

@media screen and (max-width: 767px) {
  .m-navi-function__img {
    margin-bottom: 2.5rem;
  }
}

.m-navi-info {
  padding-top: 140px;
  padding-top: 8.75rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  background-color: #fff;
  position: relative;
  top: -140px;
  top: -8.75rem;
}

@media screen and (max-width: 767px) {
  .m-navi-info {
    top: -3.75rem;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    margin-bottom: 10rem;
  }
}

.m-navi-info__title-en {
  color: #16205c;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.m-navi-info__title-en::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 55px;
  width: 3.4375rem;
  height: 2px;
  height: 0.125rem;
  background-color: #16205c;
}

.m-navi-info__title {
  color: #16205c;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .m-navi-info__title {
    font-size: 1.25rem;
  }
}

.m-navi-overview {
  padding-top: 175px;
  padding-top: 10.9375rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  position: relative;
  background-color: #fff;
  top: -60px;
  top: -3.75rem;
}

@media screen and (max-width: 767px) {
  .m-navi-overview {
    padding-top: 0;
    padding-bottom: 3.75rem;
  }
}

.m-navi-overview__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .m-navi-overview__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.m-navi-overview__body {
  width: 100%;
  max-width: 522px;
  max-width: 32.625rem;
  min-width: 65.164%;
}

.m-navi-overview__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  letter-spacing: 0.04em;
}

.m-navi-overview__img {
  width: 100%;
  max-width: 46.25%;
  margin-top: auto;
  margin-left: 7.395%;
  margin-right: -19%;
}

@media screen and (max-width: 767px) {
  .m-navi-overview__img {
    margin-right: 0;
    margin-left: 0;
    max-width: 78.6%;
    position: relative;
    top: -6.25rem;
    margin-left: auto;
  }
}

.m-navi-overview__point {
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .m-navi-overview__point {
    margin-top: 2.5rem;
  }
}

.m-navi-overview__point span {
  font-weight: 700;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.66667;
}

@media screen and (max-width: 767px) {
  .m-navi-posting {
    max-width: 28.125rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.m-navi-posting__heading {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  background-color: #16205c;
  padding: 24px 0;
  padding: 1.5rem 0;
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .m-navi-posting__heading {
    padding: 1rem 0;
  }
}

.m-navi-posting__contents {
  margin-top: 30px;
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -7.5%;
  margin-bottom: -20px;
  margin-bottom: -1.25rem;
}

@media screen and (max-width: 767px) {
  .m-navi-posting__contents {
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 1.25rem;
  }
}

.m-navi-posting__items {
  text-align: center;
  width: 100%;
  max-width: 43.025%;
  margin-right: 6.975%;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 767px) {
  .m-navi-posting__items {
    max-width: 100%;
    margin-right: 0;
  }
}

.m-navi-posting__item-heading {
  background-color: #8a8eb4;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding: 8.5px 0;
  padding: 0.53125rem 0;
}

.m-navi-posting__item-text {
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  border-bottom: solid 1px #dedede;
  border-bottom: solid 0.0625rem #dedede;
}

.m-navi-posting__item-text:last-child {
  border-bottom: none;
}

.m-navi-service {
  background-color: #16205c;
  padding: 120px 0 140px;
  padding: 7.5rem 0 8.75rem;
}

@media screen and (max-width: 767px) {
  .m-navi-service {
    padding-top: 0rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.m-navi-service__title {
  color: #fff;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.m-navi-service__title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 55px;
  width: 3.4375rem;
  height: 2px;
  height: 0.125rem;
  background-color: #fff;
}

.m-navi-service__title::before {
  position: absolute;
  content: "Service";
  font-size: 120px;
  font-size: 7.5rem;
  color: #323c83;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -100%;
  z-index: -1;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .m-navi-service__title::before {
    font-size: 3.625rem;
    top: -20%;
  }
}

.m-navi-service__body {
  margin-top: 106px;
  margin-top: 6.625rem;
  margin-bottom: -70px;
  margin-bottom: -4.375rem;
}

@media screen and (max-width: 767px) {
  .m-navi-service__body {
    margin-top: 0;
    margin-bottom: 6.25rem;
  }
}

.m-navi-service__item {
  margin-bottom: 70px;
  margin-bottom: 4.375rem;
}

@media screen and (max-width: 767px) {
  .m-navi-service__item {
    margin-bottom: 2.5rem;
  }
  .m-navi-service__item:first-child {
    margin-bottom: 0;
  }
}

.m-navi {
  position: relative;
  padding: 0 8%;
  margin-bottom: -110px;
  margin-bottom: -6.875rem;
}

@media screen and (max-width: 767px) {
  .m-navi {
    padding: 0 1.25rem;
  }
}

.m-navi__bg-blue {
  position: relative;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  .m-navi__bg-blue {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
  }
}

.m-navi__bg-blue::after {
  position: absolute;
  content: "";
  background-color: #16205c;
  width: 100vw;
  max-width: 100vw;
  height: 100%;
  top: 0px;
  top: 0rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -20;
}

.m-navi__content {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .m-navi__content {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: 34.375rem;
  }
}

.m-navi__content--wide {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 767px) {
  .m-navi__content--wide {
    padding: 0 0.9375rem;
  }
}

.tenant-service {
  padding: 166px 0 140px;
  padding: 10.375rem 0 8.75rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .tenant-service {
    padding-top: 6.9375rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.tenant-service::after {
  position: absolute;
  content: "";
  background-color: #16205c;
  width: 100vw;
  max-width: 100vw;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -20;
}

.tenant-service__title {
  color: #fff;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.tenant-service__title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 55px;
  width: 3.4375rem;
  height: 2px;
  height: 0.125rem;
  background-color: #fff;
}

.tenant-service__title::before {
  position: absolute;
  content: "Service";
  font-size: 120px;
  font-size: 7.5rem;
  color: #323c83;
  line-height: 0.91667;
  letter-spacing: 0.08em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -100%;
  z-index: -1;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .tenant-service__title::before {
    font-size: 3.625rem;
    top: -20%;
  }
}

.tenant-service__body {
  margin-top: 106px;
  margin-top: 6.625rem;
  margin-bottom: -70px;
  margin-bottom: -4.375rem;
}

@media screen and (max-width: 767px) {
  .tenant-service__body {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    margin-top: 0rem;
  }
}

.tenant-service__item {
  margin-bottom: 70px;
  margin-bottom: 4.375rem;
}

@media screen and (max-width: 767px) {
  .tenant-service__item {
    margin-bottom: 2.5rem;
  }
  .tenant-service__item:first-child {
    margin-bottom: 0;
  }
}

.about {
  position: relative;
  padding-top: 163px;
  padding-top: 10.1875rem;
  z-index: 100;
}

@media screen and (max-width: 767px) {
  .about {
    padding-top: 0;
  }
}

.about::before {
  position: absolute;
  content: "";
  background-color: #16205c;
  top: 0;
  left: 0;
  width: 72.1083%;
  height: 770px;
  height: 48.125rem;
  z-index: -10;
}

@media screen and (max-width: 767px) {
  .about::before {
    height: 45.625rem;
  }
}

.about::after {
  position: absolute;
  content: "";
  background: url(/assets/images/common/top-about-cross.png) no-repeat center center/cover;
  width: 20%;
  min-height: 37%;
  bottom: 27%;
  left: 0;
  z-index: -10;
}

@media screen and (max-width: 767px) {
  .about::after {
    display: none;
  }
}

.about__scroll {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  font-family: "Roboto", sans-serif;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  position: absolute;
  left: 50%;
  top: -50px;
  top: -3.125rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.about__scroll::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 2px;
  width: 0.125rem;
  height: 54px;
  height: 3.375rem;
  bottom: -50px;
  bottom: -3.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

.about__inner {
  position: relative;
  z-index: 10;
  padding: 0 10%;
}

@media screen and (max-width: 767px) {
  .about__inner {
    padding: 5.25rem 1.25rem 0;
  }
}

.about__wrapper {
  background-color: #fff;
  position: relative;
  width: 100%;
  z-index: -1;
  width: 100%;
  max-width: 996px;
  max-width: 62.25rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 154px 0 140px 80px;
  padding: 9.625rem 0 8.75rem 5rem;
}

@media screen and (max-width: 767px) {
  .about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0rem 0.9375rem 3.75rem;
  }
}

.about__title {
  position: absolute;
  top: -88px;
  top: -5.5rem;
  left: -13%;
  max-width: 642px;
  max-width: 40.125rem;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .about__title {
    position: static;
    position: initial;
    left: 0;
    top: 0;
    margin-top: -2.8125rem;
    max-width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.about__body {
  width: 100%;
  position: relative;
  margin-right: 50px;
  margin-right: 3.125rem;
  margin-top: auto;
  margin-top: 20%;
  max-width: 420px;
  max-width: 26.25rem;
}

@media screen and (max-width: 767px) {
  .about__body {
    margin-right: 0;
    margin-top: 2.9375rem;
  }
}

.about__heading {
  min-width: 430px;
  min-width: 26.875rem;
}

@media screen and (max-width: 767px) {
  .about__heading {
    min-width: unset;
    font-size: 1.25rem;
  }
}

.about__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  max-width: 420px;
  max-width: 26.25rem;
}

.about__btn {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.about__img {
  width: 100%;
  max-width: 42vw;
  margin-right: -136px;
  margin-right: -8.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  position: relative;
  left: 48px;
  left: 3rem;
  left: 0;
  margin-right: -100px;
  margin-right: -6.25rem;
  margin-right: -13%;
  margin-top: auto;
}

@media screen and (max-width: 767px) {
  .about__img {
    margin-right: -2rem;
    left: 1.25rem;
    max-width: 20.8125rem;
    margin-top: 2.375rem;
  }
}

.about__img img {
  -webkit-box-shadow: -10px 10px 0px 0px #8a8eb4;
  box-shadow: -10px 10px 0px 0px #8a8eb4;
}
@media screen and (max-width: 767px) {
  .about__img img {
  -webkit-box-shadow: -7px 7px 0px 0px #8a8eb4;
    box-shadow: -7px 7px 0px 0px #8a8eb4;
  }
}

.first-view {
  width: 100vw;
  position: relative;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  z-index: 100;
  height: 100%;
}
.first-view::before {
  padding-top: 56.22254758%;
  display: block;
  content: "";
}

@media screen and (max-width: 767px) {
  .first-view::before {
    padding-top: 177.8666666%;
  }
}

/* .first-view__wrapper {
  position: relative;
  width: 100%;
}
.first-view__wrapper::before {
  padding-top: 56.22254758%;
  display: block;
  content: "";
} */

.first-view__bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -10;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .first-view__bg {
    display: none;
  }
}

.first-view__img {
  height: inherit;
}

.first-view__bg-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: inherit;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.first-view__bg-left img {
  display: block;
  /* height: inherit; */
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right top;
  object-position: right top;
}

.first-view__bg-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: inherit;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.first-view__bg-right img {
  display: block;
  /* height: inherit; */
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left top;
  object-position: left top;
}

.first-view__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .first-view__content {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 15%;
    width: 100%;
    padding: 0 25px;
    padding: 0 1.5625%;
  }
}

.first-view__heading {
  font-size: 125%;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.16em;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .first-view__heading {
    font-size: 0.875rem;
    line-height: 1.42857;
  }
}

.first-view__theme {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .first-view__theme {

  }
}

.first-view__logo {
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
  width: 6.589%;
  height: auto;
  margin-top: 7.3%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .first-view__logo {
    margin-top: 64%;
    width: 6.7%;
  }
}

.first-view__bg-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .first-view__bg-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: -10;
    height: inherit;
  }
}

.fv-left__01,
.fv-left__02,
.fv-left__03,
.fv-left__04 {
  position: absolute;
  -webkit-animation-duration: 24s;
  animation-duration: 24s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.fv-left__02,
.fv-left__03,
.fv-left__04 {
  height: 0% ;
}

.fv-left__01 {
  -webkit-animation-name: left-slide-1;
  animation-name: left-slide-1;
  z-index: 1;
}

.fv-left__02 {
  -webkit-animation-name: left-slide-2;
  animation-name: left-slide-2;
  z-index: 2;
}

.fv-left__03 {
  -webkit-animation-name: left-slide-3;
  animation-name: left-slide-3;
  z-index: 3;
}

.fv-left__04 {
  -webkit-animation-name: left-slide-4;
  animation-name: left-slide-4;
  z-index: 4;
}

@-webkit-keyframes left-slide-1 {
  0% {
    height: 100%;
  }
  20% {
    height: 100%;
  }
  40% {
    height: 100%;
  }
  45% {
    height: 0%;
    z-index: 1;
  }
  50% {
    height: 0%;
    z-index: 1;
  }
  95% {
    height: 0%;
    z-index: 5;
  }
  100% {
    height: 100%;
    z-index: 5;
  }
}

@keyframes left-slide-1 {
  0% {
    height: 100%;
  }
  20% {
    height: 100%;
  }
  40% {
    height: 100%;
  }
  45% {
    height: 0%;
    z-index: 1;
  }
  50% {
    height: 0%;
    z-index: 1;
  }
  95% {
    height: 0%;
    z-index: 5;
  }
  100% {
    height: 100%;
    z-index: 5;
  }
}

@-webkit-keyframes left-slide-2 {
  0% {
    height: 0%;
  }
  20% {
    height: 0%;
  }
  25% {
    height: 100%;
  }
  45% {
    height: 100%;
  }
  50% {
  }
  70% {
    height: 100%;
  }
  75% {
    height: 0%;
  }
  100% {

  }
}

@keyframes left-slide-2 {
  0% {
    height: 0%;
  }
  20% {
    height: 0%;
  }
  25% {
    height: 100%;
  }
  45% {
    height: 100%;
  }
  50% {
  }
  70% {
    height: 100%;
  }
  75% {
    height: 0%;
  }
  100% {

  }
}

@-webkit-keyframes left-slide-3 {
  0% {
    height: 0%;
  }
  45% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  95% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

@keyframes left-slide-3 {
  0% {
    height: 0%;
  }
  45% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  95% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

@-webkit-keyframes left-slide-4 {
  0% {
    height: 100%;
    z-index: 0;
  }
  20% {
    height: 100%;
  }
  25% {
    height: 0%;
  }
  70% {
    height: 0%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 100%;
  }
}

@keyframes left-slide-4 {
  0% {
    height: 100%;
    z-index: 0;
  }
  20% {
    height: 100%;
  }
  25% {
    height: 0%;
  }
  70% {
    height: 0%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 100%;
  }
}

.fv-right__01,
.fv-right__02,
.fv-right__03,
.fv-right__04 {
  position: absolute;
  -webkit-animation-duration: 24s;
  animation-duration: 24s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: -4s;
  animation-delay: -4s;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.fv-right__01,
.fv-right__02,
.fv-right__03 {
  height: 0%;
}

.fv-right__01 {
  -webkit-animation-name: right-slide-4;
  animation-name: right-slide-4;
  z-index: 4;
}

.fv-right__02 {
  -webkit-animation-name: right-slide-3;
  animation-name: right-slide-3;
  z-index: 3;
}

.fv-right__03 {
  -webkit-animation-name: right-slide-2;
  animation-name: right-slide-2;
  z-index: 2;
}

.fv-right__04 {
  -webkit-animation-name: right-slide-1;
  animation-name: right-slide-1;
  z-index: 1;
}

@-webkit-keyframes right-slide-1 {
  0% {
    height: 100%;
  }
  20% {
    height: 100%;
  }
  40% {
    height: 100%;
  }
  45% {
    height: 0%;
    z-index: 1;
  }
  50% {
    height: 0%;
    z-index: 1;
  }
  95% {
    height: 0%;
    z-index: 5;
  }
  100% {
    height: 100%;
    z-index: 5;
  }
}

@keyframes right-slide-1 {
  0% {
    height: 100%;
  }
  20% {
    height: 100%;
  }
  40% {
    height: 100%;
  }
  45% {
    height: 0%;
  }
  50% {
    height: 0%;
    z-index: 1;
  }
  95% {
    height: 0%;
    z-index: 10;
  }
  100% {
    height: 100%;
    z-index: 10;
  }
}

@-webkit-keyframes right-slide-2 {
  0% {
    height: 0%;
  }
  20% {
    height: 0%;
  }
  25% {
    height: 100%;
  }
  45% {
    height: 100%;
  }
  50% {
  }
  70% {
    height: 100%;
  }
  75% {
    height: 0%;
  }
  100% {

  }
}

@keyframes right-slide-2 {
  0% {
    height: 0%;
  }
  20% {
    height: 0%;
  }
  25% {
    height: 100%;
  }
  45% {
    height: 100%;
  }
  50% {
  }
  70% {
    height: 100%;
  }
  75% {
    height: 0%;
  }
  100% {
    height: 0%;
  }
}

@-webkit-keyframes right-slide-3 {
  0% {
    height: 0%;
  }
  45% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  95% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

@keyframes right-slide-3 {
  0% {
    height: 0%;
  }
  45% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  95% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

@-webkit-keyframes right-slide-4 {

}

@keyframes right-slide-4 {
  0% {
    height: 100%;
    z-index: 1;
  }
  20% {
    height: 100%;
  }
  25% {
    height: 0%;
    z-index: 1;
  }
  70% {
    height: 0%;
    z-index: 5;
  }
  75% {
    height: 100%;
    z-index: 5;
  }
  100% {
    height: 100%;
  }
}

.info {
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .info {
    padding: 0 1.25rem;
  }
}

.info__inner {
  padding: 104px 83px 140px;
  padding: 6.5rem 5.1875rem 8.75rem;
  width: 100%;
  z-index: 1;
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  margin: 0 auto;
  margin-top: -105px;
  margin-top: -6.5625rem;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .info__inner {
    padding-left: 0rem;
    padding-right: 0rem;
    padding: 6.25rem 0.9375rem 3.75rem;
  }
}

.info__body {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0px 40px;
  padding: 0rem 2.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .info__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.25rem;
  }
}

.info__item--first {
  background-color: #f5f5f5;
}

.info__meta {
  padding-top: 19px;
  padding-top: 1.1875rem;
  padding-bottom: 19px;
  padding-bottom: 1.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 9.5%;
}

@media screen and (max-width: 767px) {
  .info__meta {
    padding: 0;
    margin-right: auto;
  }
}

.info__date {
  color: #dedede;
  font-weight: 700;
  margin-right: 20px;
  margin-right: 1.25rem;
  min-width: 86px;
  min-width: 5.375rem;
}

.info__category {
  background-color: #16205c;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin: 0;
  display: inline-block;
  padding: 6px 20px;
  padding: 0.375rem 1.25rem;
  min-width: 96px;
  min-width: 6rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .info__category {
    padding: 0.5rem 1.25rem;
  }
}

.info__link {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.78571;
  margin: 0;
  letter-spacing: 0.08em;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 19px 0;
  padding: 1.1875rem 0;
}

@media screen and (max-width: 767px) {
  .info__link {
    padding: 0;
    margin-top: 1.25rem;
    margin-right: auto;
  }
}

.info__btn {
  margin-top: 60px;
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .info__btn {
    margin-top: 2.5rem;
  }
}

.l-service {
  margin-top: 280px;
  margin-top: 17.5rem;
}

@media screen and (max-width: 767px) {
  .l-service {
    margin-top: 15rem;
  }
}

.recruit {
  color: #fff;
}

.recruit__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  max-width: 75rem;
  max-width: 1166px;
  max-width: 72.875rem;
  min-width: 980px;
  min-width: 61.25rem;
  margin-right: auto;
  background-color: #16205c;
  margin-top: 140px;
  margin-top: 8.75rem;
}

@media screen and (max-width: 767px) {
  .recruit__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 94.667%;
    min-width: unset;
    padding-left: 1.25rem;
    margin-top: 6.25rem;
  }
}

@media screen and (min-width: 1367px) {
  .recruit__inner {
    margin-left: auto;
  }
}

.recruit__img {
  -ms-flex-preferred-size: 44.94%;
  flex-basis: 44.94%;
}

@media screen and (max-width: 767px) {
  .recruit__img {
    -ms-flex-preferred-size: unset;
    flex-basis: unset;
    margin-left: -1.25rem;
  }
}

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

.recruit__body {
  -ms-flex-preferred-size: 54.952%;
  flex-basis: 54.952%;
  padding-top: 108px;
  padding-top: 6.75rem;
  padding-left: 80px;
  padding-left: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-right: 142px;
  padding-right: 8.875rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .recruit__body {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    padding-top: 6.25rem;
    padding-bottom: 3.75rem;
  }
}

.recruit__body .heading {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .recruit__body .heading {
    font-size: 1rem;
  }
}

.recruit__service-name {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.32353;
  margin-top: 8px;
  margin-top: 0.5rem;
}

@media screen and (max-width: 767px) {
  .recruit__service-name {
    font-size: 1.5rem;
    margin-top: 1.25rem;
  }
}

.recruit__text {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (max-width: 767px) {
  .recruit__text {
    margin-top: 1.25rem;
  }
}

.recruit__btn {
  margin-top: 54px;
  margin-top: 3.375rem;
}

@media screen and (max-width: 767px) {
  .recruit__btn {
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit__btn a {
    margin-left: auto;
    margin-right: auto;
  }
}

.service {
  background: url(/assets/images/common/service-bg-mask.jpg) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  .service {
    background: url(/assets/images/common/top-service-sp.jpg) no-repeat center bottom 130px / cover;
  }
}

.service__inner {
  top: -140px;
  top: -8.75rem;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}
.service__inner--en {
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .service__inner {
    top: -2.5rem;
    padding-bottom: 0;
  }
}

.service__wrapper {
  background-color: #fff;
  position: relative;
  z-index: -5;
  padding: 128px 0 140px 80px;
  padding: 8rem 0 8.75rem 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .service__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0;
    padding: 0 0.9375rem 3.75rem;
    width: 100%;
    max-width: 89.3333%;
  }
}

.service__body {
  width: 100%;
  max-width: 420px;
  max-width: 26.25rem;
  margin-top: 74px;
  margin-top: 4.625rem;
  min-width: 325px;
  min-width: 20.3125rem;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .service__body {
    min-width: unset;
  }
}

.service__text {
  margin-top: 22px;
  margin-top: 1.375rem;
}

@media screen and (max-width: 767px) {
  .service__text {
    margin-top: 1.25rem;
  }
}

.service__btn {
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .service__btn a {
    margin-left: auto;
    margin-right: auto;
  }
}

.service__img {
  max-width: 430px;
  max-width: 26.875rem;
  margin-left: 12%;
  margin-right: -12%;
  margin-top: auto;
  position: relative;
  z-index: 10;
  -webkit-filter: drop-shadow(-10px 10px 0 #8a8eb4);
  filter: drop-shadow(-10px 10px 0 #8a8eb4);
}

@media screen and (max-width: 767px) {
  .service__img {
    -webkit-filter: drop-shadow(-7px 7px 0 #8a8eb4);
    filter: drop-shadow(-7px 7px 0 #8a8eb4);
    margin-right: 0;
    margin-top: -6.25rem;
    width: 79.5%;
    max-width: 25rem;
    margin-left: auto;
  }
}

.tenant {
  color: #fff;
  margin-top: 140px;
  margin-top: 8.75rem;
}

.tenant__inner {
  margin-top: 100px;
  margin-top: 6.25rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  position: relative;
  z-index: 10;
}

.u-english .tenant__inner {
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}

@media screen and (max-width: 767px) {
  .tenant__inner {
    padding-bottom: 8.75rem;
    margin-top: 10rem;
  }
  .u-english .tenant__inner {
    padding-bottom: 0;
  }
}

.tenant__inner::after {
  position: absolute;
  content: "";
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(91.508%, #16205c),
    color-stop(91.508%, transparent)
  );
  background: linear-gradient(to left, #16205c 91.508%, transparent 91.508% 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: -10;
}

@media screen and (max-width: 767px) {
  .tenant__inner::after {
    background: -webkit-gradient(linear, right top, left top, color-stop(96%, #16205c), color-stop(96%, transparent));
    background: linear-gradient(to left, #16205c 96%, transparent 96% 100%);
  }
}

.tenant__wrapper {
  position: relative;
  z-index: -5;
  padding: 260px 0 140px 80px;
  padding: 16.25rem 0 8.75rem 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 966px;
  max-width: 60.375rem;
}
.tenant__wrapper--en {
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .tenant__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0 0.9375rem 3.75rem;
    width: 100%;
    max-width: 89.3333%;
  }
}

.tenant__body {
  width: 100%;
  max-width: 420px;
  max-width: 26.25rem;
  min-width: 398px;
  min-width: 24.875rem;
}

@media screen and (max-width: 767px) {
  .tenant__body {
    margin-top: 6.5rem;
    min-width: unset;
  }
}

.tenant__body .section-title {
  color: #fff;
}

.tenant__text {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.tenant__btn {
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .tenant__btn a {
    margin-left: auto;
    margin-right: auto;
  }
}

.tenant__img {
  width: 100%;
  max-width: 430px;
  max-width: 26.875rem;
  margin-left: 12%;
  margin-right: -12%;
  margin-top: auto;
  -webkit-filter: drop-shadow(-10px 10px 0 #8a8eb4);
  filter: drop-shadow(-10px 10px 0 #8a8eb4);
}

@media screen and (max-width: 767px) {
  .tenant__img {
    -webkit-filter: drop-shadow(-7px 7px 0 #8a8eb4);
    filter: drop-shadow(-7px 7px 0 #8a8eb4);
    margin-right: 0;
    margin-top: -6.25rem;
    width: 81%;
    max-width: 25rem;
    margin-left: auto;
  }
}

.article__inner {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .article__inner {
    padding-left: 2.1875rem;
    padding-right: 2.1875rem;
    max-width: 37.5rem;
  }
}

.article__meta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.article__date {
  color: #dedede;
  font-weight: 700;
  margin-right: 10px;
  margin-right: 0.625rem;
  min-width: 82px;
  min-width: 5.125rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.78571;
  letter-spacing: 0.08em;
}

.article__category {
  background-color: #16205c;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 0.08em;
  padding: 5px 3.5px;
  padding: 0.3125rem 0.21875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 61px;
  min-width: 3.8125rem;
  height: 24px;
  height: 1.5rem;
}

.article__heading {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  border-bottom: solid 1px #16205c;
  border-bottom: solid 0.0625rem #16205c;
  color: #16205c;
}

@media screen and (max-width: 767px) {
  .article__heading {
    font-size: 1.25rem;
    line-height: 1.25;
  }
}

.article__content {
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.article__paragraph {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.article__back-btn {
  width: 100%;
  margin: 0 auto;
}

.article__back-btn a {
  display: block;
  height: 100%;
}

.article__paragraph a {
  color: #16205c;
  text-decoration: underline;
}

.topic-list__inner {
  width: 100%;
  max-width: 966px;
  max-width: 60.375rem;
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 83px;
  padding-right: 5.1875rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .topic-list__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 34.375rem;
  }
}

.topic-list__body {
  background-color: #fff;
  padding: 20px 40px;
  padding: 1.25rem 2.5rem;
}

@media screen and (max-width: 767px) {
  .topic-list__body {
    padding: 0 0.9375rem;
  }
}

.topic-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #f5f5f5;
  border-bottom: solid 0.0625rem #f5f5f5;
  padding: 13px 0;
  padding: 0.8125rem 0;
}

@media screen and (max-width: 767px) {
  .topic-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.25rem 0;
  }
}

.topic-list__item:last-child {
  border-bottom: none;
}

.topic-list__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.topic-list__date {
  color: #dedede;
  font-weight: 700;
  margin-right: 10px;
  margin-right: 0.625rem;
  min-width: 82px;
  min-width: 5.125rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.78571;
  letter-spacing: 0.08em;
}

.topic-list__category {
  background-color: #16205c;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 0.08em;
  padding: 5px 3px;
  padding: 0.3125rem 0.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 67px;
  min-width: 4.1875rem;
  height: 24px;
  height: 1.5rem;
  margin-right: 110px;
  margin-right: 6.875rem;
}

.topic-list__heading {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.78571;
  margin: 0;
  letter-spacing: 0.08em;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 20px;
  padding-right: 1.25rem;
}

@media screen and (max-width: 767px) {
  .topic-list__heading {
    margin-top: 0.4375rem;
  }
}

body {
  z-index: -9999;
}

.comp-inner {
  max-width: 800px;
  max-width: 50rem;
  margin: 0 auto;
  padding: 20px;
  padding: 1.25rem;
  border: solid 1px;
  border: solid 0.0625rem;
  background-color: rgba(0, 0, 0, 0.2);
}

.margin {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  height: 6.25rem;
  background-color: gray;
  margin-top: 200px;
  margin-top: 12.5rem;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}

/* JavaScript */
.js-fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
  transform: translate(0, 50px);
}

.js-scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
.js-fade-in--center {
  transform: translateX(-50%);
}


.breadcrumb {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714;
  letter-spacing: 0.08em;
  width: 100%;
  max-width: 64.75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 35px;
  padding-right: 35px;
}

.breadcrumb__inner {
  display: flex;
  align-items: center;
  align-items: start;
  padding: 20px 0 7px;
}

.breadcrumb__pre {
  text-transform: uppercase;
  max-width: 500px;
}

.breadcrumb__arrow {
  margin: 0 10px;
}

.breadcrumb__now {
max-width: 500px;
}

@media screen and (max-width: 767px) {
  .breadcrumb__now {
    max-width: 47%;
  }
}