:root {
  --c-black: 24 24 24;
  --c-darkgray: 66 66 66;
  --c-gray: 148 148 148;
  --c-lightgray: 201 201 201;
  --c-white: 255 255 255;
  --c-blue: 19 98 216;
  --c-yellow: 255 203 20;
}

iframe {
  border: 0;
  box-shadow: none;
}
html {
  font-size: 93.75%;
  font-feature-settings: "palt";
}
html, body {
  font-family:  "Montserrat", "Noto Sans JP", sans-serif;
  color: rgba(var(--c-black) / 1);
}

@media screen and (min-width: 768px) {
  html {
    font-size: 100%;
  }
}

img {
  max-width: 100%;
}

.small {
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a > p {
  margin: 0;
}

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

.visually-hidden {
  position: absolute;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  margin: -1px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.75rem;
  background-color: rgba(var(--c-blue) / 1);
  color: rgba(var(--c-white) / 1);
  box-shadow: 0 0 1rem rgba(0 0 0 / 0.14);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  height: 3.5rem;
  min-height: 3.5rem;
  text-decoration: none;
  transition: all 150ms ease;
  font-size: 1.125rem;
  font-weight: 700;
}
.button > p {
  color: rgba(var(--c-white) / 1) !important;
}
.button:hover {
  background-color: rgba(var(--c-blue) / 0.9);
  color: rgba(var(--c-white) / 1);
}
.button.small {
  width: 3.5rem;
  min-width: 3.5rem;
  padding: 0;
}

.align-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.separator {
  margin: 0.75rem 0;
  width: 5rem;
  height: 0.375rem;
  background-color: rgba(var(--c-yellow) / 1);
}

.page-hero {
  position: relative;
  padding: 6.25rem 1.5rem 7.5rem;
  border-bottom: 1px solid rgba(var(--c-black) / 0.2);
}
.page-hero__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(to right, #fff, #fff 45%, rgba(255 255 255 / 0) 100%);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.page-hero::after {
  content: "";
  position: absolute;
  background-image: url("/system_panel/uploads/images/rectangle--landscape.svg");
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 80%;
  height: 120px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  pointer-events: none;
}
.page-hero__content {
  position: relative;
  z-index: 3;
}
.page-hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}
.page-hero__subtle {
  margin: 0;
  color: rgba(var(--c-darkgray) / 1);
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-hero {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }
  .page-hero__title {
    font-size: 4rem;
  }
}

.page-breadcrumb {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(var(--c-black) / 0.2);
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-breadcrumb__list {
  display: inline;
  white-space: nowrap;
}
.page-breadcrumb__list a,
.page-breadcrumb__list p {
  display: inline;
  font-size: 0.875rem;
}
.page-breadcrumb__list a + a::before,
.page-breadcrumb__list a + p::before,
.page-breadcrumb__list p + a::before,
.page-breadcrumb__list p + p::before {
    content: "/";
    margin: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .page-breadcrumb {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.page-section {
  position: relative;
}
.page-section + .page-section {
  border-top: 1px solid rgba(var(--c-black) / 0.2);
}
.page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6.25rem 1.5rem 7.5rem;
}
.page-container.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-container.medium {
  max-width: 1080px;
}
.page-container.small {
  max-width: 960px;
}
.page-section-title {
  font-size: 3.5rem;
  font-weight: 700;
}
.page-section-title.small {
  font-size: 2.5rem;
}
.page-section-subtle {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(var(--c-darkgray) / 1);
}
.page-section-content {
  margin-top: 4rem;
}
.page-section-content > * + * {
  margin-top: 1.5rem;
}
.page-section-content p {
  color: rgba(var(--c-darkgray) / 1);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-container {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (min-width: 1024px) {
  .page-container {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }
}
.table {
  margin-bottom: 0;
}
.table__row {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.table__heading, .table__body {
  line-height: 1.5;
}
.table__heading {
  font-size: 0.875rem;
}
.table__body {
  padding: 1rem 0;
  font-size: 1rem;
}

@media screen and (min-width: 1024px) {
  .table__row {
    grid-template-columns: 2fr 5fr;
    gap: 1rem;
  }
  .table__heading {
    padding: 1rem 0;
    font-size: 1rem;
  }
}


/***/
.recruit-image {
  margin-bottom: 4rem;
}
.recruit-table {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
}
.recruit-table .centered {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(var(--c-black) / 0.2);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}
.works-item h2 {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 700;
}
.works-item p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .works-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.workflow {
  width: 100%;
  padding: 2rem 0 4rem;
}
.workflow-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.workflow-item__image-column {
  order: 2;
  padding-bottom: 3rem;
  flex: 1 1;
}
.workflow-item__image-column-inner {
  width: 30rem;
  max-width: 100%;
  margin: auto;
}
.workflow-item__line-column {
  display: flex;
  flex-direction: column;
  order: 0;
  align-items: center;
  height: 100px;
}
.workflow-item__path-circle {
  width: 0.75rem;
  height: 0.75rem;
  background-color: rgba(var(--c-blue) / 1);
  border-radius: 9999px;
  margin: 0.25rem 0;
}
.workflow-item__path-line {
  flex: 1 1;
  border-right: 1px solid rgba(var(--c-black) / 0.2);
  width: 1px;
  align-self: center;
}
.workflow-item__path-line:not(.mb-only) {
  display: none;
}
.workflow-item__descriptions-column {
  flex: 1 1;
}
.workflow-item__descriptions-column-inner {
  width: 30rem;
  max-width: 100%;
  text-align: center;
  padding: 2rem 0.5rem;
  margin: auto;
}
.workflow-item__descriptions-column-inner h2 {
  font-size: 1.25rem;
  font-weight: 700;
}
.workflow-item__descriptions-column-inner p {
  font-size: 0.875rem;
  color: rgba(var(--c-darkgray) / 1);
  line-height: 1.8;
  margin-top: 0.75rem;
}

@media screen and (min-width: 1024px) {
  .workflow {
	margin-top: 18rem;
  }
  .workflow-item {
    flex-direction: row;
  }
  .workflow-item__image-column {
    order: 0;
    padding-bottom: 0;
  }
  .workflow-item__image-column-inner {
    width: auto;
    margin: 0;
    padding-right: 3rem;
  }
  .workflow-item__image-wrapper {
    transform: translateY(-50%);
  }
  .workflow-item__line-column {
    order: 1;
    align-items: stretch;
    height: auto;
  }
  .workflow-item__descriptions-column {
    order: 2;
  }
  .workflow-item__descriptions-column-inner {
    width: auto;
    max-width: 100%;
    text-align: left;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-top: -2.5rem;
  }
  .workflow-item__path-line:not(.mb-only) {
    display: block;
  }
  .workflow-item__path-line.mb-only {
    display: none;
  }
}

.about-policies-section {
  display: flex;
  flex-direction: column;
}
.about-policies {
  padding: 6.25rem 1.5rem 7.5rem;
  max-width: 960px;
  margin: auto;
}
.about-policies-image--desktop {
  display: none;
}
.about-policies-image--mobile {
  margin-top: -7.5rem;
}
.about-policies-image--mobile img {
  width: 100%;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}
.about-grid-item img {
  display: block;
  width: 100%;
  margin-bottom: 2rem;
}
.about-grid-item p {
  color: rgba(var(--c-darkgray) / 1);
  font-size: 1.125rem;
  line-height: 1.8;
}
.about-grid-footer {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.about-grid iframe {
  width: 100%;
  height: 100%;
}
.about-message p {
  margin-bottom: 1rem;
}
.about-message__sign {
  text-align: right;
}

@media screen and (min-width: 1024px) {
  .about-policies-section {
    flex-direction: row;
  }
  .about-policies-image--desktop {
    display: block;
    width: 55%;
  }
  .about-policies-image--desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
  }
  .about-policies-image--mobile {
    display: none;
  }
  .about-grid {
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
  }
  .about-message {
    margin-right: -4rem;
  }
}

.home-about-section {
  position: relative;
  padding: 10rem 1.5rem 0;
  border-bottom: 1px solid rgba(var(--c-black) / 0.2);
}
.home-about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 380px;
  height: 132px;
  max-width: 94%;
  transform: scaleY(-1);
  background-image: url("/system_panel/uploads/images/rectangle--landscape.svg");
  background-repeat: no-repeat;
  background-position: right top;
}
.home-about-image--desktop {
  display: none;
}
.home-about-image--mobile {
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.home-about-image--mobile img {
  width: 100%;
}
.home-news-footer {
  margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
  .home-about-section {
    padding:  7.5rem 0 7.5rem calc(8% + 7.5rem);
  }
  .home-about-section .page-section-title,
  .home-about-section .page-section-subtle,
  .home-about-section .separator {
    margin-left: -3rem;
  }
  .home-about-section::before {
    transform: none;
    background-image: url("/system_panel/uploads/images/rectangle--portrait.svg");
    bottom: 0;
    left: 0;
    top: auto;
    width: 218px;
    height: 620px;
    background-position: right bottom;
  }
  .home-about-image--mobile {
    display: none;
  }
  .home-about-image--desktop {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 43%;
    height: 100%;
  }
  .home-about-image--desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
  }
}