@charset "UTF-8";
/* ================================
Reset
================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  word-break: break-all;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

a {
  display: inline-block;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  word-wrap: break-word;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

picture {
  display: block;
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ================================
Base
================================ */
html {
  font-size: clamp(12px, 1.3vw, 16px);
  scroll-behavior: smooth;
  scroll-padding-top: 3.8rem;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 4.3vw;
    scroll-padding-top: 2.5rem;
  }
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #323232;
}

* img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
a:hover {
  opacity: 0.7;
}

/* ================================
Container
================================ */
/* root container */
.l-wrapper {
  overflow-x: clip;
}

/* main container */
.l-content-container {
  position: relative;
  padding: 0 0 7.5rem;
  background-color: #F2F2F2;
}
@media screen and (max-width: 768px) {
  .l-content-container {
    padding: 0;
  }
}

/* container */
.l-container {
  width: calc(100% - 2.5rem);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.l-container.-sm {
  max-width: 1000px;
}

/* ================================
Header
================================ */
.l-header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.8rem;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l-header__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.5rem;
  padding: 0 0 0 2.5rem;
}
.l-header__logo {
  position: relative;
  z-index: 1000;
  width: 10.9rem;
  aspect-ratio: 174/34;
  margin: 0 auto 0 0;
}
.l-header__logo-img {
  width: 100%;
  height: 100%;
  color: #323232;
}
.l-header__toggle {
  display: none;
}
.l-header.-transparent {
  background-color: transparent;
}
.l-header.-transparent .l-header__logo-img {
  color: #fff;
}
.l-header.-transparent .l-header__toggle span {
  background-color: #fff;
}
.l-header.is-fixed {
  background-color: #fff;
}
.l-header.is-fixed .l-header__logo-img {
  color: #323232;
}
.l-header.is-fixed .l-header__toggle span {
  background-color: #323232;
}
.l-header:has(.l-header-drawer.is-active) .l-header__toggle span {
  background-color: #323232;
}
@media screen and (min-width: 769px) {
  .l-header.-transparent .l-header-drawer__menu-item {
    color: #fff;
  }
  .l-header.is-fixed .l-header-drawer__menu-item {
    color: #323232;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 2.5rem;
  }
  .l-header__inner {
    padding: 0 0 0 1.3rem;
  }
  .l-header__logo {
    width: 8.1rem;
  }
  .l-header__toggle {
    display: block;
    position: relative;
    z-index: 1000;
    width: 4rem;
    height: 2.5rem;
    cursor: pointer;
  }
  .l-header__toggle span {
    position: absolute;
    left: 1.3rem;
    display: inline-block;
    width: 1.5rem;
    height: 0.1rem;
    background-color: #323232;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l-header__toggle span:nth-of-type(1) {
    top: 0.7rem;
  }
  .l-header__toggle span:nth-of-type(2) {
    top: 1.2rem;
  }
  .l-header__toggle span:nth-of-type(3) {
    bottom: 0.7rem;
  }
  .l-header__toggle.is-active span:nth-of-type(1) {
    -webkit-transform: translateY(0.5rem) rotate(45deg);
            transform: translateY(0.5rem) rotate(45deg);
  }
  .l-header__toggle.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header__toggle.is-active span:nth-of-type(3) {
    -webkit-transform: translateY(-0.5rem) rotate(-45deg);
            transform: translateY(-0.5rem) rotate(-45deg);
  }
}

.l-header-drawer {
  -ms-flex-item-align: start;
      align-self: flex-start;
  height: 3.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header-drawer__menu {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem 2.5rem;
  padding: 0 2.5rem 0 0;
}
.l-header-drawer__menu-item a {
  display: block;
  cursor: pointer;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-header-drawer__menu-item a:hover a {
  opacity: 0.7;
}
.l-header-drawer__recruit-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 9.8rem;
  height: 100%;
  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;
  color: #fff;
  background-color: #447C71;
}
@media screen and (max-width: 768px) {
  .l-header-drawer {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    width: 100%;
    height: 100svh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem 0;
    padding: 2.5rem 1.3rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l-header-drawer__menu {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .l-header-drawer__menu-item {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
  }
  .l-header-drawer__recruit-btn {
    width: 10.1rem;
    height: 2.6rem;
    font-size: 1rem;
  }
  .l-header-drawer.is-active {
    visibility: visible;
    opacity: 1;
  }
}

/* ================================
Footer
================================ */
.l-footer {
  padding: 3.5rem 0 2.5rem;
}
.l-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.9rem 2.5rem;
  padding: 0 0 1.9rem;
  margin: 0 0 1.3rem;
  border-bottom: 1px solid #C8C8C8;
}
.l-footer__logo {
  width: 12.1rem;
}
.l-footer__logo-img {
  width: 100%;
  aspect-ratio: 174/34;
  color: #00aeef;
}
.l-footer__mid {
  margin: 0 0 1.3rem;
}
.l-footer__copyright {
  display: block;
  font-family: "Figtree", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 3.8rem 0 1.3rem;
  }
  .l-footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0 2.5rem;
    margin: 0 0 2.5rem;
  }
  .l-footer__mid {
    margin: 0 0 2.3rem;
  }
  .l-footer__copyright {
    text-align: center;
  }
}

.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3rem 1.3rem;
}
.l-footer-nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.3rem 2.5rem;
}
.l-footer-nav__menu-item {
  font-size: 0.9rem;
  font-weight: 400;
}
.l-footer-nav__menu-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.l-footer-nav__menu-item.-facebook {
  height: 2.3rem;
  aspect-ratio: 1/1;
}
.l-footer-nav__menu-item.-facebook img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .l-footer-nav__menu {
    gap: 1.9rem 1.3rem;
  }
  .l-footer-nav__menu-item {
    width: calc(50% - 0.7rem);
    font-size: 0.9rem;
    text-align: center;
  }
  .l-footer-nav__menu-item.-facebook {
    height: 1.9rem;
  }
}

.l-footer-company__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.3rem 6.3rem;
}
.l-footer-company__title {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.6rem;
}
.l-footer-company__desc {
  font-size: 0.9rem;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .l-footer-company__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .l-footer-company__title {
    font-size: 1rem;
  }
  .l-footer-company__desc {
    font-size: 0.9rem;
  }
}

/* ================================
Common module
================================ */
/* heading */
.c-heading {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-align: center;
}
.c-heading::before {
  content: attr(data-en);
  color: #60A89A;
  font-family: "Figtree", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: capitalize;
}
.c-heading[data-en] {
  gap: 0.6rem 0;
}
.c-heading.-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
.c-heading.-wh {
  color: #fff;
}
.c-heading.-wh::before {
  color: #fff;
}
.c-heading + .c-sentence {
  margin-top: 1.9rem;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 2.1rem;
  }
  .c-heading::before {
    font-size: 0.9rem;
  }
  .c-heading[data-en] {
    gap: 0;
  }
  .c-heading + .c-sentence {
    margin-top: 1.9rem;
  }
}

/*sentence*/
.c-sentence {
  line-height: 1.8;
}
.c-sentence + .c-sentence {
  margin-top: 1.1rem;
}
.c-sentence + .c-btn__wrap {
  margin-top: 1.3rem;
}
@media screen and (max-width: 768px) {
  .c-sentence {
    font-size: 0.9rem;
  }
}
.c-sentence.-sm {
  font-size: 0.9rem;
}
.c-sentence.-center_only_desktop {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-sentence.-center_only_desktop {
    text-align: left;
  }
}
.c-sentence.-right_only_desktop {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .c-sentence.-right_only_desktop {
    text-align: left;
  }
}

.c-underline-link {
  color: #60A89A;
  text-decoration: underline;
}

/* button */
.c-btn {
  min-width: 12.5rem;
  height: 3.8rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-weight: 500;
  padding: 0 3em;
  background-color: #323232;
}
.c-btn.-gn {
  background-color: #447C71;
}
@media screen and (max-width: 768px) {
  .c-btn {
    min-width: initial;
    height: 2.6rem;
    font-size: 0.9rem;
  }
}

.c-btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 1.3rem;
}
.c-btn__wrap + .c-sentence {
  margin-top: 1.3rem;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap {
    gap: 0.5rem 0.5rem;
  }
}
.c-btn__wrap.-left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.c-btn__wrap.-right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.c-btn__wrap.-vertical_only_desktop {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-vertical_only_desktop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-btn__wrap.-right_only_desktop {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-right_only_desktop {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-btn__wrap.-left_only_desktop {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-left_only_desktop {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-left_only_mobile {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

/* table */
.c-table {
  width: 100%;
}
.c-table tr:last-child th, .c-table tr:last-child td {
  border-bottom: none;
}
.c-table th,
.c-table td {
  border-bottom: 1px solid #C8C8C8;
}
.c-table th {
  font-weight: 500;
  white-space: nowrap;
  padding: 1.1rem 2.5rem 1.1rem 0;
}
.c-table td {
  width: 100%;
  padding: 1.1rem 0;
}
.c-table td a {
  text-decoration: underline;
}
.c-table td table th, .c-table td table td {
  border-bottom: none;
}
.c-table td table th {
  font-weight: 400;
  padding: 0 1em 0 0;
}
.c-table td table td {
  padding: 0;
}
.c-table td p + p {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .c-table th, .c-table td {
    display: block;
    width: 100%;
    font-size: 1rem;
  }
  .c-table th {
    border-bottom: none;
    padding: 1.3rem 0 0;
  }
  .c-table td {
    padding: 0.3rem 0 1.3rem;
  }
  .c-table td table th {
    padding: 0.5em 0 0;
  }
  .c-table td table td {
    padding: 0.25em 0 0.5em;
  }
}

/* pager */
.c-pager__list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 1rem;
}
.c-pager__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.9rem;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.c-pager__item.current {
  color: #fff;
  background-color: #447C71;
}
.c-pager__item.prev {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-pager__item.prev::before {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 0.5rem 0.9rem 0.5rem 0;
  border-color: transparent #447C71 transparent transparent;
}
.c-pager__item.next {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-pager__item.next::after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 0.5rem 0 0.5rem 0.9rem;
  border-color: transparent transparent transparent #447C71;
}
.c-pager__item:hover {
  opacity: 0.7;
}
.c-pager .screen-reader-text {
  display: none;
}

/* breadcrumbs */
.c-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: auto;
}
.c-breadcrumbs__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8rem;
  font-weight: 400;
  white-space: nowrap;
}
.c-breadcrumbs__item:not(:last-of-type)::after {
  content: "〉";
  display: inline-block;
  margin: 0 0.25em 0 0.5em;
}

/* Contact Form 7 */
.wpcf7-item.-required .wpcf7-form-label::after {
  content: "*";
  color: #ff4b4b;
}

.wpcf7-form-table th,
.wpcf7-form-table td {
  font-size: 0.9rem;
}
.wpcf7-form-table td {
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-table th,
  .wpcf7-form-table td {
    border-bottom: none;
  }
  .wpcf7-form-table th {
    padding: 0;
  }
  .wpcf7-form-table td {
    padding: 0.6rem 0 1.3rem;
  }
}

.wpcf7-form-label {
  min-height: 2.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-label {
    min-height: initial;
  }
}

.wpcf7-form-control-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.3rem 0.6rem;
}
.wpcf7-form-control-block.-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.wpcf7-text {
  width: 100%;
  height: 2.9rem;
  background-color: #F2F2F2;
  padding: 0 1em;
}

.wpcf7-textarea {
  width: 100%;
  height: 11.9rem;
  background-color: #F2F2F2;
  padding: 1em;
}

.wpcf7-select-wrap {
  position: relative;
  width: 100%;
  max-width: 21.9rem;
  height: 2.9rem;
  background-color: #fff;
  border: 1px solid #C8C8C8;
}
.wpcf7-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  border-style: solid;
  border-width: 0.5rem 0.3rem 0 0.3rem;
  border-color: #447C71 transparent transparent transparent;
}
.wpcf7-select-wrap select {
  width: 100%;
  height: 100%;
  padding: 0 1em;
  outline: none;
}

.wpcf7-checkbox,
.wpcf7-acceptance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 2.5rem;
}

.wpcf7-acceptance {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wpcf7-list-item {
  margin: 0;
}
.wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.6rem;
}
.wpcf7-list-item input {
  width: 0.8rem;
  height: 0.8rem;
}

.wpcf7-privacy {
  margin: 1.9rem 0 0;
}

.wpcf7-privacy-text {
  text-align: center;
}

.wpcf7-privacy-control {
  margin: 1.3rem 0 0;
}

.wpcf7-form-control-wrap {
  width: 100%;
  height: 100%;
}

.wpcf7-not-valid-tip {
  font-size: 0.8em;
  white-space: nowrap;
}

.wpcf7-spinner {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  margin: 0;
}

.wpcf7-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem 1.3rem;
  margin: 1.5rem 0 0;
}
@media screen and (max-width: 768px) {
  .wpcf7-action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.wpcf7-form-button {
  min-width: 12.5rem;
  height: 3.8rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  padding: 0 3em;
  background-color: #323232;
}
.wpcf7-form-button.-gn {
  background-color: #447C71;
}
.wpcf7-form-button:has(input:disabled) {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-button {
    min-width: initial;
    height: 2.6rem;
  }
}

/* section header */
.c-sec-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2.5rem 5.4rem;
  margin: 0 0 8.8rem;
}
.c-sec-header__typo {
  position: relative;
  z-index: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 34.4rem;
  min-height: 25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
  font-family: "Figtree", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  background: url(../img/cmn/hexagon_object.png) no-repeat top left/100% 100%;
  padding: 0 0 2rem 9.4rem;
  margin: 0 0 0 -7.5rem;
}
.c-sec-header__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-sec-header__title {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.05em;
  margin: 0 0 1.3rem;
}
.c-sec-header__desc {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .c-sec-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 0 2.5rem;
  }
  .c-sec-header__typo {
    width: 11.9rem;
    min-height: 8.8rem;
    font-size: 1.8rem;
    padding: 0 0 0.6rem 3rem;
    margin: 0 0 0 -1.3rem;
  }
  .c-sec-header__title {
    font-size: 2.2rem;
    margin: 0 0 1.3rem;
  }
}

/* news list */
.c-news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem 0;
}
.c-news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem 1.9rem;
  border-bottom: 1px solid #C8C8C8;
  padding: 0.6rem 0;
}
.c-news-list__meta {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.8rem;
}
.c-news-list__date {
  font-family: "Figtree", sans-serif;
  color: #2F48AB;
  font-size: 0.9rem;
  font-weight: 600;
}
.c-news-list__category {
  width: 4.8rem;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  padding: 0.3rem 0.6rem;
  background-color: #dcdcdc;
}
.c-news-list__title {
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-news-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 0.9rem 0;
  }
  .c-news-list__date {
    font-size: 1rem;
  }
}

/* work card */
.c-works-card {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-works-card__thumb {
  width: 100%;
  aspect-ratio: 378/302;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 3.8rem 100%, 0 calc(100% - 5.4rem));
  margin: 0 0 1.3rem;
}
.c-works-card__title {
  font-size: 1.4rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0 0 1.3rem;
}
.c-works-card__category {
  display: inline-block;
  font-size: 0.8rem;
  line-height: 1;
  background-color: #C8C8C8;
  padding: 0.5em;
}
.c-works-card:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-works-card__thumb {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 1.6rem 100%, 0 calc(100% - 2.3rem));
    margin: 0 0 0.6rem;
  }
  .c-works-card__title {
    font-size: 1rem;
    margin: 0 0 0.6rem;
  }
  .c-works-card__category {
    font-size: 0.8rem;
  }
}

.c-works-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.1rem 2.1rem;
}
.c-works-card__wrap .c-works-card {
  width: calc((100% - 4.3rem) / 3);
}
@media screen and (max-width: 768px) {
  .c-works-card__wrap {
    gap: 2.5rem 1.3rem;
  }
  .c-works-card__wrap .c-works-card {
    width: calc(50% - 0.7rem);
  }
}

/* member card */
.c-member-card {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-member-card__thumb {
  width: 100%;
  aspect-ratio: 580/360;
  clip-path: polygon(0 0, 100% 0, calc(100% - 4.3rem) 0, 100% 6.3rem, 100% 100%, 4.3rem 100%, 0 calc(100% - 6.3rem));
  margin: 0 0 1.3rem;
}
.c-member-card__catch {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1.3rem;
}
.c-member-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem 0.5rem;
}
.c-member-card__job {
  display: inline-block;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  background-color: #447C71;
  padding: 0.5em;
}
.c-member-card__year, .c-member-card__name {
  font-size: 0.9rem;
}
.c-member-card:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-member-card__thumb {
    clip-path: polygon(0 0, 100% 0, calc(100% - 2.5rem) 0, 100% 3.6rem, 100% 100%, 2.5rem 100%, 0 calc(100% - 3.6rem));
  }
  .c-member-card__catch {
    font-size: 1.3rem;
  }
}

.c-member-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem 2.5rem;
}
.c-member-card__wrap .c-member-card {
  width: calc(50% - 1.3rem);
}
@media screen and (max-width: 768px) {
  .c-member-card__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-member-card__wrap .c-member-card {
    width: 100%;
  }
}

/* CTA */
.c-cta__list {
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.5rem;
  margin: 2.9rem auto 0;
}
.c-cta__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #323232;
  padding: 2.9rem 1.3rem;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-cta__item:hover {
  opacity: 0.7;
}
.c-cta__item.-tel {
  background-color: #447C71;
}
.c-cta__item.-tel .c-cta__title::before {
  background: url(../img/cmn/phone_ico_wh.png) no-repeat center center/contain;
}
.c-cta__title {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin: 0 0 1.3rem;
}
.c-cta__title::before {
  content: "";
  display: inline-block;
  width: 1.84em;
  aspect-ratio: 1/1;
  background: url(../img/cmn/mail_ico_wh.png) no-repeat center center/contain;
}
.c-cta__num {
  font-family: "Figtree", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .c-cta__item.-tel {
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .c-cta__list {
    width: 100vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 3.8rem calc(50% - 50vw) 0;
  }
  .c-cta__num {
    font-size: 2rem;
  }
}

.c-recruit-cta__body {
  display: grid;
  grid-template-areas: "img heading" "img content";
  grid-template-columns: 68% 1fr;
  grid-template-rows: 1fr -webkit-min-content;
  grid-template-rows: 1fr min-content;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.6rem 5rem;
  margin: 0 0 0 -7.5rem;
}
.c-recruit-cta__img {
  grid-area: img;
  width: 100%;
  aspect-ratio: 897/646;
  clip-path: polygon(0 0, calc(100% - 8.1rem) 0, 100% 11.9rem, 100% 100%, 8.1rem 100%, 0 calc(100% - 11.9rem));
}
.c-recruit-cta__heading {
  grid-area: heading;
  align-self: end;
  font-family: "Figtree", sans-serif;
  color: #447C71;
  font-size: 5.6rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}
.c-recruit-cta__content {
  grid-area: content;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-recruit-cta__desc {
  line-height: 2;
  margin: 0 0 1.6rem;
}
.c-recruit-cta + .c-cta {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .c-recruit-cta__body {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.9rem 0;
    margin: 0;
  }
  .c-recruit-cta__heading {
    -ms-flex-item-align: center;
        align-self: center;
    font-size: 5rem;
  }
  .c-recruit-cta__img {
    clip-path: polygon(0 0, calc(100% - 3.1rem) 0, 100% 4.6rem, 100% 100%, 3.1rem 100%, 0 calc(100% - 4.6rem));
  }
  .c-recruit-cta__desc {
    margin: 0 0 2.5rem;
  }
}

/* ================================
Page
================================ */
.p-page-content {
  padding: 0 0 10.6rem;
}
.p-page-content.-pb0 {
  padding-bottom: 0;
}
.p-page-content__editable-area p {
  line-height: 1.8;
}
.p-page-content__editable-area p:has(img) {
  margin: 1.9rem 0;
}
.p-page-content__editable-area p a {
  text-decoration: underline;
}
.p-page-content__editable-area p + p {
  margin-top: 1.8em;
}
.p-page-content__editable-area h2 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  background-color: #323232;
  padding: 0.6rem 1.9rem;
  margin: 1.9rem 0;
}
.p-page-content__editable-area h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: #447C71;
  padding: 0.6rem 1.9rem;
  margin: 1.9rem 0;
}
.p-page-content__editable-area h4 {
  color: #447C71;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0 0 0.6rem;
  border-bottom: 1px solid #323232;
  margin: 1.3rem 0;
}
.p-page-content__editable-area div:has(img) {
  margin: 1.9rem 0;
}
.p-page-content__editable-area ul {
  margin: 1.9rem 0;
}
.p-page-content__editable-area ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-page-content__editable-area ul li::before {
  content: "・";
  width: 1em;
}
.p-page-content__editable-area ul li:not(:last-child) {
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 768px) {
  .p-page-content {
    padding: 0 0 3.8rem;
  }
  .p-page-content__editable-area p {
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .p-page-content__editable-area p:has(img) {
    margin: 1.9rem 0;
  }
  .p-page-content__editable-area p + p {
    margin-top: 1.8em;
  }
  .p-page-content__editable-area h2 {
    font-size: 1.3rem;
    padding: 0.6rem 0.9rem;
    margin: 1.9rem 0;
  }
  .p-page-content__editable-area h3 {
    font-size: 1.1rem;
    font-weight: 600;
  }
  .p-page-content__editable-area h4 {
    font-size: 1rem;
  }
  .p-page-content__editable-area div:has(img) {
    margin: 1.9rem 0;
  }
  .p-page-content__editable-area ul {
    margin: 1.3rem 0;
  }
}

.p-page-breadcrumbs {
  padding: 3.8rem 0;
}
.p-page-breadcrumbs__inner {
  width: 100%;
  max-width: calc(100% - 5rem);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-page-breadcrumbs__inner {
    max-width: calc(100% - 2.5rem);
  }
}

/* ================================
Top
================================ */
.p-top-strength {
  margin: 0 0 10.6rem;
}
.p-top-strength__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5.4rem 6.3rem;
}
.p-top-strength__item {
  width: calc(50% - 3.2rem);
}
.p-top-strength__img {
  width: 100%;
  aspect-ratio: 550/400;
  clip-path: polygon(0 0, calc(100% - 8.1rem) 0, 100% 11.9rem, 100% 100%, 8.1rem 100%, 0 calc(100% - 11.9rem));
}
.p-top-strength__title-wrap {
  position: relative;
  z-index: 2;
  margin: -1.4rem 0 2.4rem;
}
.p-top-strength__title {
  display: inline;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  color: #fff;
  font-size: 2.3rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: -0.05em;
  background-color: #323232;
  padding: 0 0.8rem 2px;
}
@media screen and (max-width: 768px) {
  .p-top-strength {
    margin: 0 0 7.5rem;
  }
  .p-top-strength__list {
    gap: 2.5rem 1.3rem;
  }
  .p-top-strength__item {
    width: calc(50% - 0.7rem);
  }
  .p-top-strength__img {
    clip-path: polygon(0 0, calc(100% - 1.3rem) 0, 100% 2rem, 100% 100%, 1.3rem 100%, 0 calc(100% - 2rem));
  }
  .p-top-strength__title-wrap {
    margin: -0.8rem 0 1.3rem;
  }
  .p-top-strength__title {
    font-size: 0.8rem;
    line-height: 2.5;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    padding: 0.3rem 0.3rem;
  }
}

.p-top-service {
  margin: 0 0 13.8rem;
}
.p-top-service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6.3rem 1.5rem;
}
.p-top-service__item {
  width: calc((100% - 3rem) / 3);
}
.p-top-service__img-wrap {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 384/472;
  margin: 0 0 1.9rem;
}
.p-top-service__img {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 6.9rem 100%, 0 calc(100% - 10.3rem));
}
.p-top-service__item:nth-child(5) .p-top-service__img img {
  transform: scale(1.2) translateY(20px);
}
.p-top-service__title {
  position: absolute;
  top: -1.3rem;
  left: 0;
  color: #fff;
  font-size: 2rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1;
  font-weight: 700;
  background-color: #323232;
  padding: 0.6rem;
}
@media screen and (max-width: 768px) {
  .p-top-service {
    margin: 0 0 5rem;
  }
  .p-top-service__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 2.5rem 1.3rem;
  }
  .p-top-service__item {
    width: calc(50% - 0.7rem);
  }
  .p-top-service__img-wrap {
    margin: 0 0 1.3rem;
  }
  .p-top-service__img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 2.9rem 100%, 0 calc(100% - 4rem));
  }
  .p-top-service__title {
    top: -0.6rem;
    font-size: 1rem;
    letter-spacing: 0.3em;
    padding: 0.4rem 0.6rem;
  }
}

.p-top-works {
  margin: 0 0 9.4rem;
}
.p-top-works__list {
  margin: 2.9rem 0 3.8rem;
}
@media screen and (max-width: 768px) {
  .p-top-works {
    margin: 0 0 5rem;
  }
  .p-top-works__list {
    margin: 2.5rem 0;
  }
  .p-top-works__card:nth-of-type(3) {
    display: none;
  }
}

.p-top-equipment {
  margin: 0 0 7.5rem;
}
.p-top-equipment__slider {
  width: 100vw;
  height: 22.9vw;
  margin: 2.5rem calc(50% - 50vw) 1.9rem;
}
.p-top-equipment__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top-equipment__slide {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  will-change: transform;
}
.p-top-equipment__slide.slick-center {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-top-equipment__arrow {
  position: absolute;
  z-index: 5;
  top: 8vw;
  width: 4.3rem;
  aspect-ratio: 1/1;
  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;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.25);
}
.p-top-equipment__arrow::before {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 0.5rem 0 0.5rem 0.9rem;
  border-color: transparent transparent transparent #2F48AB;
}
.p-top-equipment__arrow.-prev {
  left: 1rem;
}
.p-top-equipment__arrow.-prev::before {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.p-top-equipment__arrow.-next {
  right: 1rem;
}
.p-top-equipment__img {
  width: 100%;
  aspect-ratio: 350/380;
}
.p-top-equipment__caption {
  -webkit-transform: none;
          transform: none;
  font-weight: 500;
  margin: 0.9rem 0 0;
}
.p-top-equipment__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 0.6rem;
}
.p-top-equipment__list li {
  width: calc((100% - 1.3rem) / 3);
  font-weight: 500;
  letter-spacing: -0.05em;
  background-color: #fff;
  padding: 0.6rem 1.3rem;
}
@media screen and (max-width: 1024px) {
  .p-top-equipment__slider {
    height: 34.7vw;
  }
  .p-top-equipment__arrow {
    top: 13.7vw;
  }
}
@media screen and (max-width: 768px) {
  .p-top-equipment {
    margin: 0 0 7.5rem;
  }
  .p-top-equipment__slider {
    height: 21.3rem;
    margin: 2.5rem calc(50% - 50vw);
  }
  .p-top-equipment__arrow {
    top: 8.1rem;
    width: 2.9rem;
    height: 2.9rem;
  }
  .p-top-equipment__arrow.-prev {
    left: 1.8rem;
  }
  .p-top-equipment__arrow.-next {
    right: 1.8rem;
  }
  .p-top-equipment__list {
    gap: 0.3rem 0.3rem;
  }
  .p-top-equipment__list li {
    width: calc(50% - 0.2rem);
    font-size: 0.9rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    padding: 0.6rem 0.6rem;
  }
}

.p-top-message {
  margin: 0 0 10.9rem;
}
.p-top-message__body {
  display: grid;
  grid-template-areas: "img-wrap heading" "img-wrap content";
  grid-template-columns: 50% 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3.1rem 4.4rem;
}
.p-top-message__heading {
  grid-area: heading;
}
.p-top-message__img-wrap {
  grid-area: img-wrap;
  position: relative;
  z-index: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}
.p-top-message__img-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 73.3333333333%;
  aspect-ratio: 440/460;
  background-color: rgba(68,124,113,0.4);
/*   background-image: url(../img/top/message_img-02.jpg); */
}
.p-top-message__img {
  width: 75%;
  aspect-ratio: 450/460;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 4.8rem 100%, 0 calc(100% - 7.1rem));
  margin: 7.1rem 0 0 auto;
}
.p-top-message__content {
  grid-area: content;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-message__desc {
  line-height: 2;
}
.p-top-message__name {
  line-height: 2;
  letter-spacing: -0.05em;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .p-top-message {
    margin: 0 0 5rem;
  }
  .p-top-message__body {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.1rem 0;
  }
  .p-top-message__heading.-left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-top-message__img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 2.8rem 100%, 0 calc(100% - 4rem));
  }
  .p-top-message__name {
    font-size: 1rem;
  }
}

.p-top-philo {
  margin: 0 0 14.4rem 0;
}
.p-top-philo__container {
  width: 100%;
}
.p-top-philo__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4.4rem 0;
  background: url(../img/top/philo_bg.jpg) no-repeat center center/cover;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 5.4rem 100%, 0 calc(100% - 8rem));
  padding: 6.3rem 7.5rem 4.3rem 6.3rem;
  margin: 0 -7.5rem 0 0;
}
.p-top-philo__header {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-top-philo__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-philo__list {
  position: relative;
  width: 35rem;
  aspect-ratio: 560/526;
  margin: 0 0 0 auto;
}
.p-top-philo__item {
  width: 18.1rem;
  aspect-ratio: 1/1;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
}
.p-top-philo__item:nth-of-type(1) {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-top-philo__item:nth-of-type(2) {
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-top-philo__item:nth-of-type(3) {
  position: absolute;
  bottom: 0;
  right: 0;
}
.p-top-philo__title {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem 0;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 1.3rem;
}
.p-top-philo__title::before {
  content: attr(data-en);
  color: #60A89A;
  font-family: "Figtree", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}
.p-top-philo__title span {
  color: #fff;
  line-height: 1;
  background-color: #447C71;
  padding: 0.6rem 0.9rem 0.8rem;
}
.p-top-philo__desc {
  color: #fff;
  text-align: center;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .p-top-philo {
    margin: 0 0 5rem;
  }
  .p-top-philo__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    background: url(../img/top/philo_bg_sp.jpg) no-repeat center center/cover;
    padding: 3.1rem 1.3rem 8.8rem;
    margin: 0;
  }
  .p-top-philo__list {
    width: 100%;
    aspect-ratio: 336/326;
  }
  .p-top-philo__item {
    width: 11.9rem;
    border-width: 1px;
  }
  .p-top-philo__item:nth-of-type(2), .p-top-philo__item:nth-of-type(3) {
    padding-top: 1.3rem;
  }
  .p-top-philo__title {
    gap: 0.3rem 0;
    font-size: 1.3rem;
    margin: 0 0 0.6rem;
  }
  .p-top-philo__title::before {
    font-size: 0.9rem;
  }
  .p-top-philo__title span {
    padding: 0.3rem 0.6rem 0.4rem;
  }
  .p-top-philo__desc {
    font-size: 0.8rem;
    line-height: 1.6;
  }
}

.p-top-outline {
  margin: 0 0 7.5rem;
}
.p-top-outline__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.5rem 0;
}
.p-top-outline__header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 15.4rem;
}
.p-top-outline__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-outline__table-wrap {
  max-width: 40rem;
}
@media screen and (max-width: 768px) {
  .p-top-outline {
    margin: 0 0 5rem;
  }
  .p-top-outline__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .p-top-outline__header {
    width: 100%;
  }
}

.p-top-history {
  margin: 0 0 8.8rem;
}
.p-top-history__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.5rem 0;
}
.p-top-history__header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 15.4rem;
}
.p-top-history__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-history__table-wrap {
  max-width: 40rem;
}
@media screen and (max-width: 768px) {
  .p-top-history__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .p-top-history__header {
    width: 100%;
  }
}

.p-top-news {
  margin: 0 0 9.1rem;
}
@media screen and (max-width: 768px) {
  .p-top-news {
    margin: 0 0 7.5rem;
  }
  .p-top-news__header {
    margin: 0;
  }
  .p-top-news__list {
    margin: 0 0 3.1rem;
  }
}

/* ================================
Post
================================ */
.archive .l-content-container {
  padding-top: 0;
}

.p-post-archive__categories {
  position: relative;
  width: 16.4rem;
  height: 3.1rem;
  font-size: 0.9rem;
  background-color: #fff;
  margin: 0 0 2.5rem;
}
.p-post-archive__categories::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  border-style: solid;
  border-width: 0.5rem 0.3rem 0 0.3rem;
  border-color: #447C71 transparent transparent transparent;
}
.p-post-archive__categories select {
  width: 100%;
  height: 100%;
  padding: 0 1.3rem;
}
.p-post-archive__footer {
  margin: 3.1rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-post-archive__categories {
    width: 100%;
  }
  .p-post-archive__footer {
    margin: 2.5rem 0 0;
  }
}

.p-post-single__footer {
  margin: 7.8rem 0 0;
}
.p-post-single__pager-list {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-areas: "prev-btn back-btn next-btn";
  gap: 0 5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-post-single__prev-btn {
  grid-area: prev-btn;
  margin: 0 0 0 auto;
}
.p-post-single__back-btn {
  grid-area: back-btn;
}
.p-post-single__next-btn {
  grid-area: next-btn;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 768px) {
  .p-post-single__footer {
    margin: 3.8rem 0 0;
  }
  .p-post-single__pager-list {
    grid-template-areas: "back-btn back-btn" "prev-btn next-btn";
    gap: 2.5rem 1.3rem;
  }
  .p-post-single__back-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

.p-post-article__header {
  border-bottom: 1px solid #C8C8C8;
  padding: 0 0 1.9rem;
}
.p-post-article__title {
  color: #60A89A;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}
.p-post-article__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem 0.6rem;
}
.p-post-article__category {
  display: inline-block;
  font-size: 0.8rem;
  line-height: 1;
  background-color: #C8C8C8;
  padding: 0.5em;
}
.p-post-article__thumb {
  width: 100%;
  aspect-ratio: 1000/600;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8.1rem 100%, 0 calc(100% - 11.9rem));
  margin: 0 0 3.8rem;
}
.p-post-article__body {
  margin: 3.8rem 0 0;
}
.p-post-article__editable-area p {
  line-height: 1.8;
}
.p-post-article__editable-area p:has(img) {
  margin: 1.9rem 0;
}
.p-post-article__editable-area p a {
  text-decoration: underline;
}
.p-post-article__editable-area p + p {
  margin-top: 1.8em;
}
.p-post-article__editable-area h2 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  background-color: #323232;
  padding: 0.6rem 1.9rem;
  margin: 1.9rem 0;
}
.p-post-article__editable-area h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: #447C71;
  padding: 0.6rem 1.9rem;
  margin: 1.9rem 0;
}
.p-post-article__editable-area h4 {
  color: #447C71;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0 0 0.6rem;
  border-bottom: 1px solid #323232;
  margin: 1.3rem 0;
}
.p-post-article__editable-area div:has(img) {
  margin: 1.9rem 0;
}
.p-post-article__editable-area ul {
  margin: 1.9rem 0;
}
.p-post-article__editable-area ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-post-article__editable-area ul li::before {
  content: "・";
  width: 1em;
}
.p-post-article__editable-area ul li:not(:last-child) {
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 768px) {
  .p-post-article__header {
    padding: 0 0 1.9rem;
    margin: 0 0 2.5rem;
  }
  .p-post-article__title {
    font-size: 1.8rem;
  }
  .p-post-article__meta-wrap {
    margin: 0 0 0.9rem;
  }
  .p-post-article__meta {
    font-size: 0.9rem;
  }
  .p-post-article__categories {
    margin: 0.9rem 0 0;
  }
  .p-post-article__thumb {
    margin: 0 0 1.9rem;
  }
  .p-post-article__body {
    margin: 2.5rem 0 0;
  }
  .p-post-article__editable-area p {
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .p-post-article__editable-area p:has(img) {
    margin: 1.9rem 0;
  }
  .p-post-article__editable-area p + p {
    margin-top: 1.8em;
  }
  .p-post-article__editable-area h2 {
    font-size: 1.3rem;
    padding: 0.6rem 0.9rem;
    margin: 1.9rem 0;
  }
  .p-post-article__editable-area h3 {
    font-size: 1.1rem;
    font-weight: 600;
  }
  .p-post-article__editable-area h4 {
    font-size: 1rem;
  }
  .p-post-article__editable-area div:has(img) {
    margin: 1.9rem 0;
  }
  .p-post-article__editable-area ul {
    margin: 1.3rem 0;
  }
}

/* ================================
施工実績
================================ */
.p-works-article__header {
  border-bottom: 1px solid #C8C8C8;
  padding: 0 0 1.9rem;
}
.p-works-article__title {
  color: #60A89A;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}
.p-works-article__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem 0.6rem;
}
.p-works-article__category {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1;
  background-color: #C8C8C8;
  padding: 0.5em;
}
.p-works-article__outline-table {
  width: 100%;
}
.p-works-article__outline-table th,
.p-works-article__outline-table td {
  font-size: 0.9rem;
  border-bottom: 1px solid #C8C8C8;
}
.p-works-article__outline-table th {
  font-weight: 500;
  white-space: nowrap;
  padding: 0.6rem 1.5rem 0.6rem 0;
}
.p-works-article__outline-table td {
  width: 100%;
  padding: 0.6rem 0;
}
.p-works-article__thumb {
  width: 100%;
  aspect-ratio: 1000/600;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8.1rem 100%, 0 calc(100% - 11.9rem));
  margin: 0 0 3.8rem;
}
.p-works-article__body {
  margin: 3.8rem 0 0;
}
.p-works-article__block:not(:last-of-type) {
  margin-bottom: 3.4rem;
}
.p-works-article__block-title {
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  background-color: #447C71;
  padding: 0.3rem 0.6rem;
  margin: 0 0 1.3rem;
}
.p-works-article__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.4rem 2.5rem;
}
.p-works-article__gallery-img {
  width: calc(50% - 1.3rem);
}
.p-works-article__gallery-img img {
  width: 100%;
  height: auto;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 3.8rem 100%, 0 calc(100% - 5.4rem));
}
.p-works-article__gallery-img figcaption {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0.9rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-works-article__title {
    font-size: 2.2rem;
  }
  .p-works-article__outline-table th,
  .p-works-article__outline-table td {
    font-size: 0.9rem;
  }
  .p-works-article__body {
    margin: 2.5rem 0 0;
  }
  .p-works-article__thumb {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 2.6rem 100%, 0 calc(100% - 4rem));
    margin: 0 0 2.5rem;
  }
  .p-works-article__block:not(:last-of-type) {
    margin-bottom: 2.5rem;
  }
  .p-works-article__block-title {
    font-size: 1.3rem;
    margin: 0 0 1.3rem;
  }
  .p-works-article__gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem 0;
  }
  .p-works-article__gallery-img {
    width: 100%;
  }
  .p-works-article__gallery-img img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 3.8rem 100%, 0 calc(100% - 5.4rem));
  }
}

/* ================================
採用情報
================================ */
.p-recruit-intro {
  position: relative;
  z-index: 0;
  color: #fff;
  padding: 8.8rem 0 0;
  margin: 0 0 10.6rem;
}
.p-recruit-intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(100% - 10rem);
  background-color: #447C71;
}
.p-recruit-intro__catch {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.9rem;
}
.p-recruit-intro__desc {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 2;
}
.p-recruit-intro__gallery {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 0.6rem;
  margin: 6.3rem calc(50% - 50vw) 0;
}
.p-recruit-intro__gallery-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  aspect-ratio: 474/360;
}
@media screen and (max-width: 768px) {
  .p-recruit-intro {
    padding: 3.8rem 0 0;
    margin: 0 0 7.5rem;
  }
  .p-recruit-intro::before {
    height: calc(100% - 2.8rem);
  }
  .p-recruit-intro__catch {
    font-size: 2.2rem;
  }
  .p-recruit-intro__desc {
    font-size: 1rem;
  }
  .p-recruit-intro__gallery {
    gap: 0 0.1rem;
    margin: 2.5rem calc(50% - 50vw) 0;
  }
}

.p-recruit-sec__heading {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 4.4rem;
}
.p-recruit-sec__heading::after {
  content: attr(data-en);
  font-family: "Figtree", sans-serif;
  color: #447C71;
  font-size: 5.6rem;
  text-transform: uppercase;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-recruit-sec__heading {
    gap: 0.6rem 0;
    font-size: 1.3rem;
    margin: 0 0 2.5rem;
  }
  .p-recruit-sec__heading::after {
    font-size: 2.8rem;
  }
}

.p-recruit-job__block:not(:last-of-type) {
  margin-bottom: 8.8rem;
}
.p-recruit-job__heading {
  position: relative;
  z-index: 2;
  color: #60A89A;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 0 2.8rem 2.5rem;
  margin: 0 0 -1.3rem 1.9rem;
}
.p-recruit-job__heading::before, .p-recruit-job__heading::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #323232;
	display:none;
}
.p-recruit-job__heading::before {
  left: 0;
}
.p-recruit-job__heading::after {
  left: 1rem;
}
.p-recruit-job__img {
  width: 100%;
  aspect-ratio: 1200/590;
  clip-path: polygon(0 0, calc(100% - 8.1rem) 0, 100% 11.9rem, 100% 0, 100% 100%, 8.1rem 100%, 0 calc(100% - 11.9rem));
  margin: 0 0 2.5rem;
}
.p-recruit-job__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.5rem 4.4rem;
}
.p-recruit-job__left, .p-recruit-job__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .p-recruit-job__block:not(:last-of-type) {
    margin-bottom: 6.3rem;
  }
  .p-recruit-job__heading {
    font-size: 2rem;
    padding: 0 0 3.1rem 1.6rem;
  }
  .p-recruit-job__img {
    aspect-ratio: 335/200;
    clip-path: polygon(0 0, calc(100% - 2.6rem) 0, 100% 4rem, 100% 0, 100% 100%, 2.6rem 100%, 0 calc(100% - 4rem));
    margin: 0 0 1.9rem;
  }
  .p-recruit-job__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-recruit-job-skill {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #447C71;
  padding: 2.3rem 3.1rem;
  margin: 2.5rem 0 0;
}
.p-recruit-job-skill__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.6rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.p-recruit-job-skill__heading::before {
  content: attr(data-en);
  font-family: "Figtree", sans-serif;
  color: #60A89A;
  font-size: 2em;
  font-weight: 600;
  line-height: 1;
}
.p-recruit-job-skill__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 0.6rem;
}
.p-recruit-job-skill__list li {
  color: #fff;
  font-weight: 500;
  line-height: 1;
  background-color: #447C71;
  padding: 0.6rem 0.9rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-job-skill {
    padding: 2.5rem 1.3rem;
    margin: 2.8rem 0 0;
  }
}

.p-recruit-job-schedule__heading {
  color: #60A89A;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1.9rem;
}
.p-recruit-job-schedule__item {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 1.3rem;
}
.p-recruit-job-schedule__item:not(:last-of-type) {
  padding-bottom: 1rem;
}
.p-recruit-job-schedule__item:not(:last-of-type)::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 1.6rem;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #C8C8C8;
}
.p-recruit-job-schedule__time {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Figtree", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  background-color: #F2F2F2;
}
.p-recruit-job-schedule__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #F2F2F2;
}
.p-recruit-job-schedule__title {
  font-weight: 700;
}
.p-recruit-job-schedule__desc {
  font-size: 0.9rem;
  margin: 0.3rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-recruit-job-schedule__heading {
    font-size: 1.3rem;
  }
  .p-recruit-job-schedule__item {
    min-height: 4.8rem;
  }
  .p-recruit-job-schedule__item:not(:last-of-type) {
    padding-bottom: 0.6rem;
  }
  .p-recruit-job-schedule__time {
    padding: 0.6rem 0;
  }
  .p-recruit-job-schedule__content {
    padding: 0.6rem 0;
  }
}

.p-recruit-benefit {
  margin: 11.9rem 0 16.9rem;
}
.p-recruit-benefit__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5.4rem 0;
}
.p-recruit-benefit__heading {
  position: relative;
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 25%;
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 0;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
.p-recruit-benefit__heading::before {
  content: "";
  display: inline-block;
  width: 3.4rem;
  aspect-ratio: 54/75;
  background: url(../img/recruit/benefit_ico_gn.png) no-repeat center center/contain;
}
.p-recruit-benefit__heading::after {
  content: attr(data-en);
  color: #60A89A;
  font-family: "Figtree", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
}
.p-recruit-benefit__item {
  width: 25%;
  padding: 0 1.9rem;
  border-left: 1px solid #C8C8C8;
}
.p-recruit-benefit__item:nth-of-type(2) .p-recruit-benefit__ico {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.p-recruit-benefit__item:nth-of-type(4) {
  border-left: none;
}
.p-recruit-benefit__title {
  color: #60A89A;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.6rem;
}
.p-recruit-benefit__ico {
  width: 70%;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-recruit-benefit__heading::before {
    position: absolute;
    top: -5.1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-benefit {
    margin: 5rem 0 3.8rem;
  }
  .p-recruit-benefit__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .p-recruit-benefit__heading {
    width: 100%;
    font-size: 2.1rem;
    margin: 0 0 1.3rem;
  }
  .p-recruit-benefit__item {
    width: 100%;
    padding: 1.3rem 0;
    border-left: none;
    border-bottom: 1px solid #C8C8C8;
  }
  .p-recruit-benefit__ico {
    width: 50%;
  }
}

.p-recruit-num {
  margin: 0 0 18.8rem;
}
.p-recruit-num__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.9rem 2.1rem;
}
.p-recruit-num__item {
  width: calc((100% - 4.3rem) / 3);
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 2.5rem;
  clip-path: polygon(0 0, calc(100% - 2.9rem) 0, 100% 4.3rem, 100% 0, 100% 100%, 2.9rem 100%, 0 calc(100% - 4.3rem));
}
.p-recruit-num__title {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.6rem;
}
.p-recruit-num__text {
  color: #60A89A;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.p-recruit-num__text .-num {
  font-family: "Figtree", sans-serif;
  font-size: 2.8125em;
}
.p-recruit-num__text .-num small {
  font-size: 0.4444444444em;
}
.p-recruit-num__text .-note {
  font-size: 0.625em;
}
@media screen and (max-width: 768px) {
  .p-recruit-num {
    margin: 0 0 5rem;
  }
  .p-recruit-num__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.3rem 0;
  }
  .p-recruit-num__item {
    width: 100%;
    padding: 2.1rem;
  }
  .p-recruit-num__title {
    font-size: 1.3rem;
  }
  .p-recruit-num__text {
    font-size: 1.5rem;
  }
}

.p-recruit-member {
  margin: 0 0 11.3rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-member {
    margin: 0 0 6.3rem;
  }
}

.p-recruit-req {
  background-color: #fff;
  padding: 8.8rem 0;
}
@media screen and (max-width: 768px) {
  .p-recruit-req {
    padding: 5rem 0;
  }
  .p-recruit-req__inner {
    width: calc(100% - 1.3rem);
  }
  .p-recruit-req__heading {
    font-size: 1.6rem;
    margin: 0 0 1.3rem;
  }
}

.p-recruit-entry {
  color: #fff;
  background-color: #447C71;
  padding: 8.8rem 0;
  margin: 0 0 10rem;
}
.p-recruit-entry__heading {
  margin: 0 0 2.1rem;
}
.p-recruit-entry__heading::after {
  color: #fff;
}
.p-recruit-entry__title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin: 2.5rem 0 0.6rem;
}
.p-recruit-entry__desc {
  text-align: center;
}
.p-recruit-entry__num {
  display: block;
  font-family: "Figtree", sans-serif;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin: 0 0 1.9rem;
}
@media screen and (min-width: 769px) {
  .p-recruit-entry__heading::after {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 7.5rem;
  }
  .p-recruit-entry__heading span {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-entry {
    padding: 5rem 0;
  }
  .p-recruit-entry__heading {
    font-size: 1.6rem;
    margin: 0 0 1.3rem;
  }
  .p-recruit-entry__title {
    font-size: 1.3rem;
    margin: 2.3rem 0 0.6rem;
  }
  .p-recruit-entry__num {
    font-size: 2rem;
    margin: 0 0 2.5rem;
  }
}

/* ================================
社員の声
================================ */
.p-member-article__header {
  position: relative;
  z-index: 1;
}
.p-member-article__catch {
  color: #60A89A;
  font-size: 4.1rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}
.p-member-article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem 0.4rem;
}
.p-member-article__job {
  color: #fff;
  font-size: 0.9rem;
  background-color: #447C71;
  padding: 0 0.6rem;
  margin: 0 0.4rem 0 0;
}
.p-member-article__name::after {
  content: "/";
  padding: 0 0 0 0.5em;
}
.p-member-article__thumb {
  width: calc(100% + 7.5rem);
  aspect-ratio: 1320/600;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8.1rem 100%, 0 calc(100% - 11.9rem));
  margin: 3.1rem -7.5rem 0 auto;
}
.p-member-article__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-member-article__block:not(:last-of-type) {
  margin-bottom: 10rem;
}
.p-member-article__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60%;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin: 0 0 0 -7.5rem;
}
.p-member-article__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 1000px;
  padding: 7.5rem 5rem;
  margin: 0 auto;
}
.p-member-article__count {
  display: block;
  color: #447C71;
  font-family: "Figtree", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 0.6rem;
}
.p-member-article__question {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 1.3rem;
}
.p-member-article__answer {
  line-height: 1.8;
}
.p-member-article__block01 {
  position: relative;
  z-index: 0;
  color: #fff;
  background-color: #447C71;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5.6rem), calc(100% - 3.8rem) 100%, 0 100%);
}
.p-member-article__block01 .p-member-article__count {
  color: #fff;
}
.p-member-article__block03 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  color: #fff;
  background-color: #447C71;
  clip-path: polygon(3.8rem 0, 100% 0, 100% 100%, 0 100%, 0 5.6rem);
}
.p-member-article__block03 .p-member-article__count {
  color: #fff;
}
@media screen and (min-width: 769px) {
  .p-member-article__block01 {
    padding: 10rem 6.3rem 0 0;
    margin: -12.5rem auto 10rem -7.5rem;
  }
  .p-member-article__block01 .p-member-article__content {
    padding: 7.5rem 0;
    margin: 0 0 0 auto;
  }
  .p-member-article__block03 .p-member-article__img {
    width: 53.3333333333%;
    margin: 0 -7.5rem 0 0;
  }
}
@media screen and (max-width: 1200px) {
  .p-member-article__block01 {
    margin: -12.5rem auto 10rem -1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-member-article__catch {
    font-size: 2.2rem;
    margin: 0 0 3rem;
  }
  .p-member-article__thumb {
    width: calc(100% + 1.3rem);
    aspect-ratio: 335/200;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 2.9rem 100%, 0 calc(100% - 4rem));
    margin: 1.3rem -1.3rem 0 0;
  }
  .p-member-article__block {
    width: 100vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.9rem 0;
    padding: 0 1.3rem;
    margin: 0 calc(50% - 50vw);
  }
  .p-member-article__block:not(:last-of-type) {
    margin-bottom: 3.8rem;
  }
  .p-member-article__img {
    width: 100%;
    margin: 0;
  }
  .p-member-article__content {
    padding: 0;
  }
  .p-member-article__question {
    font-size: 1.5rem;
  }
  .p-member-article__block01 {
    width: 100vw;
    padding: 6.9rem 1.3rem 3.8rem;
    margin: -3.8rem calc(50% - 50vw) 3.8rem;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.3rem), calc(100% - 2rem) 100%, 0 100%);
  }
  .p-member-article__block01 .p-member-article__content {
    width: 100%;
    padding: 0;
  }
  .p-member-article__block03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.3rem), calc(100% - 2rem) 100%, 0 100%);
  }
  .p-member-article__block03 .p-member-article__img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .p-member-article__block03 .p-member-article__content {
    padding: 1.3rem 0 3.8rem;
  }
}

/* ================================
募集要項
================================ */
.p-req-main {
  margin: 0 0 6.9rem;
}
.p-req-main__inner {
  max-width: 1100px;
}
.p-req-main__tab-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 0.6rem;
}
.p-req-main__tab {
  width: 17.5rem;
  height: 3.8rem;
  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;
  color: #969696;
  font-size: 1.1rem;
  background-color: #C8C8C8;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}
.p-req-main__tab.is-active {
  color: #fff;
  background-color: #447C71;
}
.p-req-main__tab:hover {
  opacity: 0.7;
}
.p-req-main__body {
  background-color: #fff;
  padding: 6.3rem 1.3rem 4.4rem;
  clip-path: polygon(6.3rem 0, 100% 0, 100% calc(100% - 10rem), calc(100% - 6.3rem) 100%, 0 100%, 0 10rem);
}
.p-req-main__content-area {
  max-width: 800px;
  margin: 0 auto;
}
.p-req-main__content {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.p-req-main__content.is-active {
  opacity: 1;
  visibility: visible;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-req-main {
    margin: 0 0 5rem;
  }
  .p-req-main__tab {
    width: 10rem;
    height: 2.6rem;
    font-size: 1rem;
  }
  .p-req-main__body {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    clip-path: polygon(2.3rem 0, 100% 0, 100% calc(100% - 3.8rem), calc(100% - 2.3rem) 100%, 0 100%, 0 3.8rem);
    padding: 3.8rem 1.3rem;
  }
}

.p-req-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.8rem 0.3rem;
  margin: 3.8rem 0 0;
}
.p-req-flow__item {
  position: relative;
  z-index: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-req-flow__content {
  height: 100%;
  background-color: #fff;
  padding: 2.5rem 2.5rem 2.9rem;
}
.p-req-flow__count {
  position: absolute;
  z-index: 2;
  top: -1.9rem;
  left: 0.6rem;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Figtree", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
}
.p-req-flow__count .-num {
  color: #60A89A;
  font-size: 3.0769230769em;
  font-weight: 700;
}
.p-req-flow__title {
  color: #60A89A;
  font-size: 1.4rem;
  font-weight: 700;
}
.p-req-flow__desc {
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0.6rem 0 0;
}
@media screen and (min-width: 769px) {
  .p-req-flow:first-of-type .p-req-flow__content {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 2.3rem 100%, 0 calc(100% - 3.5rem));
  }
  .p-req-flow:nth-of-type(3) .p-req-flow__content {
    padding: 2.5rem 1.9rem 2.9rem;
  }
  .p-req-flow:last-of-type .p-req-flow__content {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.5rem), calc(100% - 2.3rem) 100%, 0 100%);
  }
}
@media screen and (max-width: 768px) {
  .p-req-flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-req-flow__item {
    width: 100%;
  }
  .p-req-flow__count {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-req-flow__content {
    clip-path: polygon(0 0, calc(100% - 2.5rem) 0, 100% 3.8rem, 100% 100%, 2.5rem 100%, 0 calc(100% - 3.8rem));
    padding: 3.1rem rem830;
  }
  .p-req-flow__title {
    font-size: 1.3rem;
    text-align: center;
  }
  .p-req-flow__desc {
    font-size: 0.9rem;
    text-align: center;
  }
}

/* ================================
お問い合わせ
================================ */
.contact .l-content-container {
  padding-top: 0;
}

.p-contact-form__body {
  max-width: 1100px;
  background-color: #fff;
  padding: 6.3rem 1.3rem;
  clip-path: polygon(6.3rem 0, 100% 0, 100% calc(100% - 10rem), calc(100% - 6.3rem) 100%, 0 100%, 0 10rem);
  margin: 3.1rem auto 0;
}
.p-contact-form__form {
  max-width: 800px;
  margin: 0 auto;
}
.p-contact-form__list {
  margin: -3.5rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-contact-form {
    padding: 0 0 11.3rem;
  }
  .p-contact-form__body {
    width: 100vw;
    clip-path: polygon(2.3rem 0, 100% 0, 100% calc(100% - 3.8rem), calc(100% - 2.3rem) 100%, 0 100%, 0 3.8rem);
    padding: 3.8rem 1.3rem;
    margin: 3.1rem calc(50% - 50vw);
  }
  .p-contact-form__list {
    margin: 0.6rem 0 0;
  }
}

/* ================================
Adjistment
================================ */
.u-fit--contain {
  text-align: center;
}
.u-fit--contain img,
.u-fit--contain source {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}

.u-color--main {
  color: #447C71;
}
.u-color--main_pale {
  color: #60A89A;
}
.u-color--sub {
  color: #2F48AB;
}
.u-color--wh {
  color: #fff;
}
.u-color--gd {
  color: #447C71;
}
.u-color--rd {
  color: #FF4B4B;
}

.u-align--center {
  text-align: center;
}
.u-align--right {
  text-align: right;
}
.u-align--left {
  text-align: left;
}

.u-display_ib {
  display: inline-block;
}
.u-display_ib--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display_ib--sm {
    display: inline-block;
  }
}

.u-display--lg {
  display: none;
}
@media screen and (max-width: 1200px) {
  .u-display--lg {
    display: block;
  }
}
.u-display--md {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-display--md {
    display: block;
  }
}
.u-display--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display--sm {
    display: block;
  }
}

.u-display_flex--lg {
  display: none;
}
@media screen and (max-width: 1200px) {
  .u-display_flex--lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.u-display_flex--md {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-display_flex--md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.u-display_flex--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display_flex--sm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1200px) {
  .u-hidden--lg {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .u-hidden--md {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u-hidden--sm {
    display: none;
  }
}