@charset "UTF-8";
.u-desktop {
  display: none;
}
@media screen and (min-width: 1100px) {
  .u-desktop {
    display: block;
  }
}

.u-tablet {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-tablet {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/*------------------------------------------------------------
  layout-parts
------------------------------------------------------------*/
.body--no-scroll {
  overflow: hidden;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 430px) {
  html {
    font-size: 3.7209302326vw;
  }
}
@media screen and (min-width: 1100px) {
  html {
    font-size: 12.8px;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 16px;
  }
}

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

html.is-fixed {
  position: fixed;
  z-index: -1;
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
img {
  width: 100%;
  vertical-align: bottom;
}

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

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

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

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

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

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

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

table {
  display: block;
  width: 100%;
  border-collapse: collapse;
}

thead {
  display: block;
}

tbody {
  display: block;
  width: 100%;
}

tr {
  display: block;
}

th,
td {
  width: 100%;
  height: 100%;
}

th {
  display: block;
}

td {
  display: block;
}

.circle {
  -webkit-animation: spin 30s linear infinite;
          animation: spin 30s linear infinite;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
    -webkit-filter: blur(0.3125rem);
            filter: blur(0.3125rem);
  }
  to {
    opacity: 1;
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
    -webkit-filter: blur(0.3125rem);
            filter: blur(0.3125rem);
  }
  to {
    opacity: 1;
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
}
@-webkit-keyframes spinBig {
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg) scale(5);
            transform: translate(-50%, -50%) rotate(360deg) scale(5);
  }
}
@keyframes spinBig {
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg) scale(5);
            transform: translate(-50%, -50%) rotate(360deg) scale(5);
  }
}
@-webkit-keyframes scrollPop {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  80% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scrollPop {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  80% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes pop {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pop {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes bigPop {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes bigPop {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes decoPop {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes decoPop {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes moving_shadow {
  0% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="15" /></filter></svg>#filter');
    -webkit-filter: blur(0.9375rem);
            filter: blur(0.9375rem);
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  50% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="50" /></filter></svg>#filter');
    -webkit-filter: blur(3.125rem);
            filter: blur(3.125rem);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="15" /></filter></svg>#filter');
    -webkit-filter: blur(0.9375rem);
            filter: blur(0.9375rem);
  }
}
@keyframes moving_shadow {
  0% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="15" /></filter></svg>#filter');
    -webkit-filter: blur(0.9375rem);
            filter: blur(0.9375rem);
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  50% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="50" /></filter></svg>#filter');
    -webkit-filter: blur(3.125rem);
            filter: blur(3.125rem);
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="15" /></filter></svg>#filter');
    -webkit-filter: blur(0.9375rem);
            filter: blur(0.9375rem);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.shadow {
  -webkit-animation: 8s moving_shadow ease-in-out alternate infinite;
          animation: 8s moving_shadow ease-in-out alternate infinite;
}

/*----------------------------------
  basic
-----------------------------------*/
.no-post {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .no-post {
    font-size: 1.25rem;
  }
}

.no-post--main-loop {
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 30vh;
}

.no-post--sub-loop {
  text-align: center;
  padding-top: 120px;
  padding-top: 7.5rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .no-post--sub-loop {
    padding-top: 9.375rem;
    padding-bottom: 9.375rem;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  color: #000;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
@media screen and (min-width: 1100px) {
  body {
    font-size: max(0.9375rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  body {
    font-size: 0.9375rem;
  }
}

.body--recruit-visible {
  color: #fff;
}

* {
  letter-spacing: 0.1em;
}

.bold {
  font-weight: 700;
}

@font-face {
  font-family: "Chillax-Variable";
  src: url("../fonts/Chillax-Variable.woff2") format("woff2"), url("../fonts/Chillax-Variable.woff") format("woff"), url("../fonts/Chillax-Variable.ttf") format("truetype");
  font-style: normal;
}
.cl {
  font-family: "Chillax-Variable", sans-serif;
}

.hoverOpacity {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.hoverOpacity:hover {
  opacity: 0.7;
}

.empty-link {
  pointer-events: none;
  opacity: 0.3;
}

.is-noScroll {
  overflow: hidden;
}

.is-noScrolled {
  overflow: auto;
  scrollbar-gutter: stable;
}

/* container
============================================*/
.container {
  padding-right: 8%;
  padding-left: 8%;
}
@media screen and (min-width: 600px) {
  .container {
    padding-right: 10%;
    padding-left: 10%;
  }
}
@media screen and (min-width: 768px) {
  .container {
    padding-right: 9%;
    padding-left: 9%;
  }
}
@media screen and (min-width: 900px) {
  .container {
    padding-right: 13%;
    padding-left: 13%;
  }
}
@media screen and (min-width: 1100px) {
  .container {
    padding-right: 7.5rem;
    padding-left: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .container--sp {
    padding-right: 0rem;
    padding-left: 0rem;
  }
}

@media screen and (min-width: 1100px) {
  .container--mobile {
    padding-right: 0rem;
    padding-left: 0rem;
  }
}

.container--pc {
  padding-right: 0px;
  padding-right: 0rem;
  padding-left: 0px;
  padding-left: 0rem;
}
@media screen and (min-width: 1100px) {
  .container--pc {
    padding-right: 7.5rem;
    padding-left: 7.5rem;
  }
}

.about {
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .about {
    padding-right: 0rem;
    padding-left: 0rem;
    padding-top: 5.25rem;
    padding-bottom: 11.9375rem;
  }
}
@media screen and (min-width: 1100px) {
  .about {
    padding-top: 6.25rem;
    padding-bottom: 9.125rem;
  }
}

@media screen and (min-width: 768px) {
  .about__inner {
    max-width: 52.125rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    aspect-ratio: 834/444;
    position: relative;
  }
}
@media screen and (min-width: 1100px) {
  .about__inner {
    max-width: 90rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.about__title {
  width: 224px;
  width: 14rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .about__title {
    width: min(31.175059952svw, 260px);
    margin-bottom: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-55%);
            transform: translateX(-55%);
    top: 37%;
    z-index: 10;
  }
}
@media screen and (min-width: 1100px) {
  .about__title {
    width: min(24.1666666667svw, 348px);
    top: min(22.8472222222svw, 329px);
    width: 21.75rem;
    top: 20.5625rem;
  }
}

.about__body {
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__body {
    height: 100%;
  }
}

.about__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  row-gap: 1.25rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__list {
    height: 100%;
    margin-bottom: 0;
  }
}

.about__item {
  background-color: #fff;
  border-radius: 0.625rem;
  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;
  height: 67px;
  height: 4.1875rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .about__item {
    width: min(21.5827338129svw, 180px);
    height: min(21.5827338129svw, 180px);
    aspect-ratio: 1/1;
    border-radius: 50%;
    -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;
    position: absolute;
    padding-right: 0rem;
    padding-left: 0rem;
  }
}
@media screen and (min-width: 1100px) {
  .about__item {
    width: 15.625rem;
    height: 15.625rem;
  }
}

.about--popped .about__item {
  -webkit-animation: bigPop 0.5s ease-in-out forwards;
          animation: bigPop 0.5s ease-in-out forwards;
}

.about__item--human {
  top: -1%;
  left: 13%;
}
@media screen and (min-width: 1100px) {
  .about__item--human {
    top: 0%;
    left: 28%;
  }
}

.about__item--media {
  top: 13%;
  right: 11%;
}
@media screen and (min-width: 1100px) {
  .about__item--media {
    top: 50%;
  }
}

.about__item--rental {
  bottom: -22%;
  right: 12%;
  right: 10%;
}
@media screen and (min-width: 1100px) {
  .about__item--rental {
    bottom: -13%;
    right: 35%;
  }
}

.about__item--creative {
  bottom: -3%;
  left: 7%;
}
@media screen and (min-width: 1100px) {
  .about__item--creative {
    bottom: 26%;
    left: 11%;
  }
}

.about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .about__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about__item-icon {
  width: 32px;
  width: 2rem;
}
@media screen and (min-width: 768px) {
  .about__item-icon {
    width: min(5.3956834532svw, 45px);
    margin-bottom: 0.6875rem;
  }
}
@media screen and (min-width: 1100px) {
  .about__item-icon {
    width: 4rem;
  }
}

.about__itemBody {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .about__itemBody {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    height: 0;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
}

@media screen and (min-width: 768px) {
  .about--popped .about__itemBody {
    height: 4.6875rem;
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .about--popped .about__item--rental .about__itemBody {
    height: 5.3125rem;
    opacity: 1;
  }
}

.about__itemBody-texts {
  display: block;
}

.about__item-subTitle {
  display: block;
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 1100px) {
  .about__item-subTitle {
    font-size: max(0.75rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .about__item-subTitle {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .about__item-subTitle {
    text-align: center;
    margin-bottom: 0.5rem;
  }
}

.about__item-title {
  display: block;
  line-height: 1;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #000;
}
@media screen and (min-width: 1100px) {
  .about__item-title {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .about__item-title {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .about__item-title {
    text-align: center;
    line-height: 1.2222222222;
    font-size: min(2.1582733813svw, 18px);
  }
}
@media screen and (min-width: 1100px) {
  .about__item-title {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .about__item-title {
    font-size: max(1.5625rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .about__item-title {
    font-size: 1.5625rem;
  }
}

.about__item-arrow {
  color: #000;
  font-size: 24px;
  font-size: 1.5rem;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
@media screen and (min-width: 1100px) {
  .about__item-arrow {
    font-size: max(1.5rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .about__item-arrow {
    font-size: 1.5rem;
  }
}

.about__item:hover .about__item-arrow {
  -webkit-transform: translateX(0.3125rem);
          transform: translateX(0.3125rem);
}

.about__item--human .about__item-subTitle {
  color: #E1BB44;
}

.about__item--media .about__item-subTitle {
  color: #85BEAF;
}

.about__item--creative .about__item-subTitle {
  color: #F1BB8A;
}

.about__item--rental .about__item-subTitle {
  color: #E1BB44;
}

.about__bg-img-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -58%);
          transform: translate(-50%, -58%);
  width: 835px;
  width: 52.1875rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about__bg-img-wrapper {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 104.3165467626%;
  }
}

.about .about__btn {
  position: relative;
}
@media screen and (min-width: 768px) {
  .about .about__btn {
    width: 17.5rem;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-55%);
            transform: translateX(-55%);
    bottom: 26%;
  }
}
@media screen and (min-width: 1100px) {
  .about .about__btn {
    bottom: 31%;
  }
}

.about__deco {
  position: absolute;
  width: 53px;
  width: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .about__deco {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
  }
}

@media screen and (min-width: 768px) {
  .about--popped .about__deco {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .about--popped .about__deco-img {
    -webkit-animation: bigPop 0.5s ease-in-out forwards;
            animation: bigPop 0.5s ease-in-out forwards;
  }
}

.about__deco--pc {
  display: none;
}
@media screen and (min-width: 1100px) {
  .about__deco--pc {
    display: block;
  }
}

.about__deco--a {
  left: 44%;
  bottom: 10%;
}
@media screen and (min-width: 1100px) {
  .about__deco--a {
    width: 5.3125rem;
  }
}

.about__deco--b {
  left: 49%;
  top: 3%;
}
@media screen and (min-width: 1100px) {
  .about__deco--b {
    width: 5.75rem;
  }
}

.about__deco--c {
  right: 10%;
  bottom: 11%;
}
@media screen and (min-width: 1100px) {
  .about__deco--c {
    width: 6.125rem;
  }
}

@media screen and (min-width: 1100px) {
  .about__deco--d {
    width: 5.3125rem;
    left: 16%;
    top: 22%;
  }
}

@media screen and (min-width: 1100px) {
  .about__deco--e {
    width: 4.875rem;
    right: 16%;
    top: 28%;
  }
}

@media screen and (min-width: 1100px) {
  .about__deco--f {
    width: 5.9375rem;
    left: 11.6%;
    bottom: 20%;
  }
}

@media screen and (min-width: 768px) {
  .about__bg-img,
.about__item {
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
}

.bg-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  padding-top: 79px;
  padding-top: 4.9375rem;
  padding-bottom: 79px;
  padding-bottom: 4.9375rem;
  z-index: 1;
  padding-top: 8.4210526316svh;
  padding-bottom: 8.4210526316svh;
  padding-right: 2.3980815348%;
  padding-left: 2.3980815348%;
}
@media screen and (min-width: 768px) {
  .bg-text {
    padding-top: 6.6666666667svh;
    padding-bottom: 6.6666666667svh;
    padding-right: 2.9976019185%;
    padding-left: 2.9976019185%;
  }
}
@media screen and (min-width: 1100px) {
  .bg-text {
    max-width: 90rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding-top: 14.6484375svh;
    padding-bottom: 14.6484375svh;
    padding-right: 2.7777777778%;
    padding-left: 2.7777777778%;
  }
}

.bg-text__inner {
  height: 100%;
  position: relative;
  max-width: 1360px;
  max-width: 85rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.bg-text img {
  position: absolute;
}

.bg-text img:nth-of-type(1) {
  top: 0;
  left: 0;
  width: min(30.5263157895svh, 290px);
}
@media screen and (min-width: 768px) {
  .bg-text img:nth-of-type(1) {
    width: min(54.5555555556svh, 491px);
  }
}
@media screen and (min-width: 1100px) {
  .bg-text img:nth-of-type(1) {
    width: min(49.609375svh, 508px);
  }
}

.bg-text img:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: min(41.0526315789svh, 390px);
}
@media screen and (min-width: 768px) {
  .bg-text img:nth-of-type(2) {
    width: min(64.2222222222svh, 578px);
  }
}
@media screen and (min-width: 1100px) {
  .bg-text img:nth-of-type(2) {
    width: min(66.11328125svh, 677px);
  }
}

.bg-text img:nth-of-type(3) {
  bottom: 0;
  left: 0;
  width: min(34.6315789474svh, 329px);
}
@media screen and (min-width: 768px) {
  .bg-text img:nth-of-type(3) {
    width: min(54.5555555556svh, 491px);
  }
}
@media screen and (min-width: 1100px) {
  .bg-text img:nth-of-type(3) {
    width: min(56.15234375svh, 575px);
  }
}

.bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(255, 255, 255, .85);
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/bg.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  mix-blend-mode: overlay;
}

.bg--recruit-visible {
  background-color: rgba(17, 14, 10, .8);
}

.bg .bg-text {
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.bg--recruit-visible .bg-text {
  opacity: 0.04;
}

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

.box__inner {
  max-width: 450px;
  max-width: 28.125rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 29px;
  padding-top: 1.8125rem;
  padding-bottom: 29px;
  padding-bottom: 1.8125rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .box__inner {
    padding-right: 3.125rem;
    padding-left: 3.125rem;
  }
}
@media screen and (min-width: 1100px) {
  .box__inner {
    max-width: 31.25rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1600px) {
  .box__inner {
    max-width: 28.125rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.box__title {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.2em;
  margin-bottom: 11px;
  margin-bottom: 0.6875rem;
}
@media screen and (min-width: 1100px) {
  .box__title {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .box__title {
    font-size: 1.125rem;
  }
}

.box__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: 11px;
  gap: 0.6875rem;
}

.box__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  gap: 0.875rem;
}

.box__item-tag {
  width: 16px;
  width: 1rem;
}

.box__item-text a {
  color: #85BEAF;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  gap: 0.25rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.breadcrumbs__text {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 1100px) {
  .breadcrumbs__text {
    font-size: max(0.75rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .breadcrumbs__text {
    font-size: 0.75rem;
  }
}

.breadcrumbs__text:not(:last-child) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.breadcrumbs__text--link {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.breadcrumbs__text--link:hover {
  opacity: 0.7;
}

.breadcrumbs__line {
  display: block;
  width: 1px;
  height: 12px;
  height: 0.75rem;
  background-color: #110E0A;
}

.btn {
  width: 350px;
  width: 21.875rem;
  height: 50px;
  height: 3.125rem;
  border-radius: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #110E0A;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  background-color: transparent;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .btn {
    width: 17.5rem;
  }
}

.btn:hover {
  background-color: #F5F4EB;
}

.btn__text {
  color: #110E0A;
  font-weight: 700;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.body--recruit-visible .btn {
  border: 1px solid #fff;
}

.body--recruit-visible .btn:hover {
  background-color: #110E0A;
}

.body--recruit-visible .btn__text {
  color: #fff;
}

.btn .material-symbols-outlined {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.btn:hover .material-symbols-outlined {
  -webkit-transform: translateX(0.1875rem);
          transform: translateX(0.1875rem);
}

.cat-talking__title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 1100px) {
  .cat-talking__title {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .cat-talking__title {
    font-size: 1.125rem;
  }
}

.cat-talking__title span {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
}

.cat-talking__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}

.cat-talking__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  gap: 0.625rem;
}

.cat-talking__item-bubble {
  max-width: 285px;
  max-width: 17.8125rem;
  width: 100%;
  height: 105px;
  height: 6.5625rem;
  position: relative;
  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;
}
@media screen and (min-width: 1100px) {
  .cat-talking__item-bubble {
    height: 7.5rem;
  }
}
@media screen and (min-width: 1600px) {
  .cat-talking__item-bubble {
    height: 6.5625rem;
  }
}

.cat-talking__item-bubble-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.cat-talking__item-bubble-text {
  width: 87.8787878788%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.cat-talking__item-bubble-text .back-btn {
  font-weight: 700;
  color: #85BEAF;
  cursor: pointer;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.cat-talking__item-bubble-text .back-btn:hover {
  opacity: 0.7;
}

.cat-talking__item--topLeft .cat-talking__item-bubble {
  padding-top: 3.7%;
  padding-left: 4.7%;
}

.cat-talking__item--topLeft .cat-talking__item-cat {
  width: 87px;
  width: 5.4375rem;
}

.cat-talking__item--topLeft .cat-talking__item-bubble-bg {
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

.cat-talking__item--topLeft .cat-talking__item-bubble-text.passive {
  left: auto;
  right: 0;
}

.cat-talking__item--bottomRight {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.cat-talking__item--bottomRight .cat-talking__item-cat {
  width: 97px;
  width: 6.0625rem;
}

.cat-talking__item--bottomRight .cat-talking__item-bubble {
  padding-bottom: 3.7%;
  padding-right: 4.7%;
}

.cat-trouble {
  border-radius: 1.25rem;
  border: 1px solid #110E0A;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  padding-right: 24px;
  padding-right: 1.5rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.cat-trouble__title {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3888888889;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1100px) {
  .cat-trouble__title {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .cat-trouble__title {
    font-size: 1.125rem;
  }
}

.cat-trouble__underline {
  width: 300px;
  width: 18.75rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.cat-trouble__img {
  width: 100px;
  width: 6.25rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.cat-trouble__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
}

.cat-trouble__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  gap: 0.625rem;
}

.cat-trouble__item-img {
  width: 16px;
  width: 1rem;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.cats {
  margin-bottom: 9px;
  margin-bottom: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .cats {
    margin-bottom: 1.875rem;
  }
}

.cats__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .cats__inner {
    max-width: 50rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.cats__cat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1.4375rem;
  height: 35px;
  height: 2.1875rem;
  border: 1px solid #110E0A;
  padding-right: 39.5px;
  padding-right: 2.46875rem;
  padding-left: 39.5px;
  padding-left: 2.46875rem;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.cats__cat:hover {
  background-color: #110E0A;
  color: #FFFFFF;
  opacity: 0.5;
}

.cats__cat--active {
  background-color: #110E0A;
  color: #FFFFFF;
  pointer-events: none;
}

.complete {
  max-width: 450px;
  max-width: 28.125rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 1100px) {
  .complete {
    max-width: 31.25rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1600px) {
  .complete {
    max-width: 28.125rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.complete__title {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 1100px) {
  .complete__title {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .complete__title {
    font-size: 1.125rem;
  }
}

.complete .underline {
  max-width: 390px;
  max-width: 24.375rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}

.complete__cats {
  width: 86.6666666667%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.conf-gif {
  margin-top: 100px;
  margin-top: 6.25rem;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}

.conf-gif__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  gap: 3.125rem;
  max-width: 1200px;
  max-width: 75rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.conf-gif__title {
  font-weight: 700;
  font-size: 40px;
  font-size: 2.5rem;
  text-align: center;
}

.conf-gif__img {
  height: 500px;
  height: 31.25rem;
  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;
}

.conf-gif__left img {
  width: 460px;
  width: 28.75rem;
}

.conf-gif__right img {
  width: 300px;
  width: 18.75rem;
}

.contact-btn {
  background-color: #F5F4EB;
  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;
  -webkit-column-gap: 0.3125rem;
     -moz-column-gap: 0.3125rem;
          column-gap: 0.3125rem;
  border-radius: 3.125rem;
  height: 44px;
  height: 2.75rem;
  border: 1px solid #110E0A;
  color: #000;
}

.contact-btn__text {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.fadeIn {
  opacity: 0;
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}

.fadeIn--animated {
  opacity: 1;
}

.fadeUp {
  opacity: 0;
  -webkit-transform: translateY(9.375rem);
          transform: translateY(9.375rem);
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}

.fadeUp--animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.footer-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .footer-slider {
    margin-top: 3.125rem;
  }
}
@media screen and (min-width: 1100px) {
  .footer-slider {
    margin-top: 0;
  }
}

.footer-slider__slide {
  width: 1800px;
  width: 112.5rem;
}
@media screen and (min-width: 768px) {
  .footer-slider__slide {
    width: 131.25rem;
  }
}
@media screen and (min-width: 1100px) {
  .footer-slider__slide {
    width: 140rem;
  }
}

.footer-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
}

.footer {
  background-color: #fff;
  position: relative;
  z-index: 1;
  border-radius: 3.75rem 3.75rem 0 0;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 5rem;
  }
}
@media screen and (min-width: 1100px) {
  .footer__inner {
    max-width: 75rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.footer__logo {
  width: 176px;
  width: 11rem;
  display: block;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 14.0625rem;
    margin-bottom: 0.875rem;
  }
}
@media screen and (min-width: 1100px) {
  .footer__logo {
    margin-bottom: 1.9375rem;
  }
}

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

.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
  gap: 1.625rem;
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
}
@media screen and (min-width: 1100px) {
  .footer__body {
    margin-bottom: 3.125rem;
    row-gap: 3.125rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__btn {
  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;
  height: 44px;
  height: 2.75rem;
  border-radius: 2.75rem;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  padding-left: 30px;
  padding-left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .footer__btn {
    height: 2.9375rem;
  }
}

.footer__btn-text {
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .footer__btn-text {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .footer__btn-text {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .footer__btn-text {
    font-size: 1.125rem;
  }
}

.footer__btn--recruit {
  background-color: #E1BB44;
}

.footer__btn--recruit span {
  color: #fff;
}

.footer__btn--contact {
  background-color: #F5F4EB;
  border: 1px solid #000;
}

.footer__list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (min-width: 1100px) {
  .footer__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 1400px) {
  .footer__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer__links {
    gap: 0.9375rem;
  }
}

.footer__links-title {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 1100px) {
  .footer__links-title {
    font-size: max(1rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .footer__links-title {
    font-size: 1rem;
  }
}

.footer__links--page {
  width: 184px;
  width: 11.5rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__links--page .footer__link {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 1100px) {
  .footer__links--page .footer__link {
    font-size: max(1rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .footer__links--page .footer__link {
    font-size: 1rem;
  }
}

.footer__link {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.footer__link:hover {
  color: #85BEAF;
}

.footer__externals {
  border-top: 1px solid #000;
  padding-top: 29px;
  padding-top: 1.8125rem;
  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: 21px;
  gap: 1.3125rem;
  margin-bottom: 33px;
  margin-bottom: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .footer__externals {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 1.25rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1100px) {
  .footer__externals {
    padding-top: 2.9375rem;
    gap: 5rem;
    margin-bottom: 2.5rem;
  }
}

.footer__external {
  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;
}

.footer__external-title {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
@media screen and (min-width: 1100px) {
  .footer__external-title {
    font-size: max(0.8125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .footer__external-title {
    font-size: 0.8125rem;
  }
}

.footer__external-link {
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 1100px) {
  .footer__external-link {
    font-size: 1.125rem;
    line-height: 1;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .footer__external-link {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .footer__external-link {
    font-size: 1.125rem;
  }
}

.footer__copy {
  display: block;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 1100px) {
  .footer__copy {
    font-size: max(0.9375rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .footer__copy {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1100px) {
  .footer__copy {
    margin-top: 1.875rem;
  }
}

.form .wpcf7-not-valid-tip {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.9166666667;
  color: #AB3D1D;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 1100px) {
  .form .wpcf7-not-valid-tip {
    font-size: max(0.75rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .form .wpcf7-not-valid-tip {
    font-size: 0.75rem;
  }
}

.form__header {
  margin-bottom: 22px;
  margin-bottom: 1.375rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.form__body {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  position: relative;
}

.form__contents {
  position: relative;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.input-area,
.confirm-area {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.hidden,
.form__header--hidden,
.form__contents--hidden {
  opacity: 0;
  visibility: hidden;
}

.passive,
.form__header--passive,
.form__contents--passive {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.form__confirms {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.form__confirm {
  display: none;
}

.form__confirm--active {
  display: block;
}

.form__content {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  gap: 1.375rem;
  height: auto !important;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.form__content--active {
  position: static;
  width: auto;
}

.form__content--visible {
  opacity: 1;
  visibility: visible;
}

.form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
}

.form__item--confirm {
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #C6C6C6;
  gap: 7px;
  gap: 0.4375rem;
}

.form__item--confirm:first-child {
  padding-top: 0;
}

.form__item-head {
  font-weight: 700;
  letter-spacing: 0.2em;
}

.form__item-head--must::after {
  content: "*";
  color: #AB3D1D;
  margin-left: 6px;
  margin-left: 0.375rem;
}

.form__input,
.form__select,
.form__textarea {
  background-color: #fff;
  padding-top: 11.5px;
  padding-top: 0.71875rem;
  padding-bottom: 11.5px;
  padding-bottom: 0.71875rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  border: 1px solid #D4D4D4;
  border-radius: 0.3125rem;
  width: 100%;
}

.form__input::-webkit-input-placeholder,
.form__textarea::-webkit-input-placeholder {
  color: #C6C6C6;
}

.form__input::-moz-placeholder,
.form__textarea::-moz-placeholder {
  color: #C6C6C6;
}

.form__input::-ms-input-placeholder,
.form__textarea::-ms-input-placeholder {
  color: #C6C6C6;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #C6C6C6;
}

.form__select {
  width: 180px;
  width: 11.25rem;
}

.form__textarea {
  aspect-ratio: 450/150;
}

.form__radio,
.form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  gap: 0.9375rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.form__radio .wpcf7-list-item,
.form__checkbox .wpcf7-list-item {
  margin-left: 0;
  padding-left: 2px;
  padding-left: 0.125rem;
}

.form__radio .wpcf7-list-item label,
.form__checkbox .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  gap: 0.75rem;
}

.form__radio--disable {
  pointer-events: none;
}

.form__radio input {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50%;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border: 2px solid #85BEAF;
  border: 0.125rem solid #85BEAF;
  cursor: pointer;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.form__checkbox input {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  border-radius: 0.125rem;
  border: 2px solid #C5C5C5;
  border: 0.125rem solid #C5C5C5;
  cursor: pointer;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.form__checkbox input:checked {
  background-image: url("../images/common/icon/check@2x.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: none;
}

.form__radio input:checked {
  background: radial-gradient(#85BEAF 0 0.3375rem, transparent 0.375rem 100%);
}

.form__footer {
  position: relative;
}

.form__footer-btns {
  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;
}
.form__confirm-btn {
  border-radius: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #E1BB44;
  font-weight: 700;
  letter-spacing: 0.2em;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  width: 280px;
  width: 17.5rem;
  height: 50px;
  height: 3.125rem;
}

.form__confirm-btn:hover {
  padding-right: 27px;
  padding-right: 1.6875rem;
  opacity: 0.7;
}

.form__submit-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 19px;
  margin-top: 1.1875rem;
}

.form__submit-wrapper::after {
  content: "chevron_right";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  color: #fff;
  pointer-events: none;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
@media screen and (min-width: 1100px) {
  .form__submit-wrapper::after {
    font-size: max(1.5rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .form__submit-wrapper::after {
    font-size: 1.5rem;
  }
}

.form__submit-wrapper:hover::after {
  right: 27px;
  right: 1.6875rem;
}

.form__submit {
  border-radius: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  color: #fff;
  background-color: #E1BB44;
  width: 280px;
  width: 17.5rem;
  height: 50px;
  height: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.form__submit:hover {
  opacity: 0.7;
}

.form__submit--disabled {
  background-color: gray;
  pointer-events: none;
}

.form__submit-wrapper .wpcf7-spinner {
  display: none;
}

.form__btn-mark {
  line-height: 1;
}

.form__select--empty {
  color: #C6C6C6;
}

.form__back {
  display: inline-block;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  line-height: 1.5384615385;
  color: rgba(128, 128, 128, 0.54902);
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-left: 5px;
  margin-left: 0.3125rem;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
@media screen and (min-width: 1100px) {
  .form__back {
    font-size: max(0.8125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .form__back {
    font-size: 0.8125rem;
  }
}
.form__back:hover {
  opacity: 0.7;
}

.form__back::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(128, 128, 128, 0.54902);
  left: 0;
  bottom: -2px;
  bottom: -0.125rem;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
  padding-left: 2px;
  padding-left: 0.125rem;
}

.wpcf7-acceptance .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
}

.wpcf7-acceptance .wpcf7-list-item-label a {
  color: #85BEAF;
}

.wpcf7-acceptance .form__acceptance {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  border-radius: 0.125rem;
  border: 2px solid #C5C5C5;
  border: 0.125rem solid #C5C5C5;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
}

.wpcf7-acceptance .form__acceptance:checked {
  background-image: url("../images/common/icon/check@2x.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: none;
}

.wpcf7-response-output {
  display: none !important;
}

.fv {
  padding-top: 125px;
  padding-top: 7.8125rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-top: 11.625rem;
    margin-bottom: 5.625rem;
  }
}
@media screen and (min-width: 1100px) {
  .fv {
    padding-top: 12.75rem;
    padding-top: 0;
    margin-bottom: 7.5rem;
    overflow: visible;
  }
}

.fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 48px;
  row-gap: 3rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    row-gap: 6.6875rem;
    -webkit-column-gap: 3.125rem;
       -moz-column-gap: 3.125rem;
            column-gap: 3.125rem;
  }
}
@media screen and (min-width: 1100px) {
  .fv__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.fv__header {
  position: relative;
  width: 97.4358974359%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .fv__header {
    width: 82.8947368421%;
  }
}
@media screen and (min-width: 1100px) {
  .fv__header {
    width: min(34.8333333333svw, 501.6px);
    height: 100svh;
    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;
    position: sticky;
    top: 25svh;
    top: 0;
    margin-right: 0;
    margin-left: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1600px) {
  .fv__header {
    width: min(43.5416666667svw, 627px);
  }
}

.fv__header--fixed {
  position: relative;
}

.fv__illust {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: none;
}

.fv__body {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1100px) {
  .fv__body {
    padding-top: 50svh;
    padding-bottom: 30svh;
  }
}

@media screen and (min-width: 1100px) {
  .fv__body-inner {
    -webkit-transform: translateY(min(11.796875svw, -106px));
            transform: translateY(min(11.796875svw, -106px));
  }
}

.fv__copy {
  width: 320px;
  width: 20rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 34px;
  margin-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .fv__copy {
    width: 26.125rem;
    margin-bottom: 3.1875rem;
  }
}
@media screen and (min-width: 1100px) {
  .fv__copy {
    width: min(28.6111111111svw, 412px);
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 1600px) {
  .fv__copy {
    width: min(35.7638888889svw, 515px);
  }
}

.fv__text {
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .fv__text {
    font-size: 1.25rem;
    line-height: 2;
    letter-spacing: 0.15em;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .fv__text {
    font-size: max(1.25rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .fv__text {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1100px) {
  .fv__text {
    text-align: left;
  }
}

.ham-container {
  position: fixed;
  width: 100%;
  z-index: 20;
  top: 0;
  left: 0;
  height: 100px;
  height: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .ham-container {
    height: 7.5rem;
  }
}
@media screen and (min-width: 1600px) {
  .ham-container {
    height: 8.75rem;
  }
}

.ham {
  position: relative;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  pointer-events: auto;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.ham__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 30px;
  font-size: 1.875rem;
  color: #110E0A;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
@media screen and (min-width: 1100px) {
  .ham__icon {
    font-size: max(1.875rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .ham__icon {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .ham__icon {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .ham__icon {
    font-size: max(2.5rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .ham__icon {
    font-size: 2.5rem;
  }
}

.ham__icon--close {
  opacity: 0;
}

.ham--active .ham__icon--close {
  opacity: 1;
}

.ham--active .ham__icon--open {
  opacity: 0;
}

.ham--white .ham__icon {
  color: #fff;
}

.ham--active .ham__icon {
  color: #000;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  height: 100px;
  height: 6.25rem;
  pointer-events: none;
  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;
}
@media screen and (min-width: 768px) {
  .header {
    height: 7.5rem;
  }
}
@media screen and (min-width: 1600px) {
  .header {
    height: 8.75rem;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 3.125rem;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.header__logo {
  display: block;
  width: 160px;
  width: 10rem;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 12.0625rem;
  }
}

.header__logo img {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.header__right {
  padding-right: 50px;
  padding-right: 3.125rem;
}
@media screen and (min-width: 768px) {
  .header__right {
    padding-right: 4.0625rem;
  }
}

.header__contact-btn {
  display: block;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  position: relative;
  pointer-events: auto;
}

.header__contact-btn-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 30px;
  font-size: 1.875rem;
  color: #110E0A;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
@media screen and (min-width: 1100px) {
  .header__contact-btn-icon {
    font-size: max(1.875rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .header__contact-btn-icon {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .header__contact-btn-icon {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .header__contact-btn-icon {
    font-size: max(2.5rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .header__contact-btn-icon {
    font-size: 2.5rem;
  }
}

.header__contact-btn-icon--open {
  opacity: 0;
}

.header__contact-btn:hover .header__contact-btn-icon--close {
  opacity: 0;
}

.header__contact-btn:hover .header__contact-btn-icon--open {
  opacity: 1;
}

.header--white .header__logo img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.22086999999999998 0.70785 0.07128 0 0 0.21087 0.71795 0.07128 0 0 0.21087 0.70785 0.08127999999999999 0 0 0 0 0 1 0" /><feColorMatrix type="hueRotate" color-interpolation-filters="sRGB" values="93" /><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.03" /><feFuncG type="linear" slope="1.03" /><feFuncB type="linear" slope="1.03" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.03" intercept="-0.015000000000000013" /><feFuncG type="linear" slope="1.03" intercept="-0.015000000000000013" /><feFuncB type="linear" slope="1.03" intercept="-0.015000000000000013" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.header--white .header__contact-btn-icon {
  color: #fff;
}

.human-about {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .human-about {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1100px) {
  .human-about {
    margin-bottom: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .human-about__inner {
    max-width: 68.75rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.human-about__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 39px;
  gap: 2.4375rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .human-about__top {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1100px) {
  .human-about__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.25rem;
    margin-bottom: 3.75rem;
  }
}

@media screen and (min-width: 1100px) {
  .human-about__content {
    max-width: 31.25rem;
    width: 100%;
  }
}

.human-about__content-sub-title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1100px) {
  .human-about__content-sub-title {
    font-size: max(2.25rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .human-about__content-sub-title {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1100px) {
  .human-about__content-sub-title {
    font-size: 3rem;
    margin-bottom: 0.1875rem;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .human-about__content-sub-title {
    font-size: max(3rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .human-about__content-sub-title {
    font-size: 3rem;
  }
}

.human-about__content--posting .human-about__content-sub-title {
  color: #85BEAF;
}

.human-about__content--introduction .human-about__content-sub-title {
  color: #F1BB8A;
}

.human-about__content-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 22px;
  margin-bottom: 1.375rem;
}
@media screen and (min-width: 1100px) {
  .human-about__content-title {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .human-about__content-title {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1100px) {
  .human-about__content-title {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .human-about__content-title {
    font-size: max(1.5625rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .human-about__content-title {
    font-size: 1.5625rem;
  }
}

.human-about__content-text-title {
  font-weight: 500;
  margin-bottom: 11px;
  margin-bottom: 0.6875rem;
}
@media screen and (min-width: 1100px) {
  .human-about__content-text-title {
    font-size: 1.125rem;
    line-height: 1.3888888889;
    letter-spacing: 0.2em;
    margin-bottom: 1.3125rem;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .human-about__content-text-title {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .human-about__content-text-title {
    font-size: 1.125rem;
  }
}

.human-about__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
}

.human-about__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
}

.human-case {
  background-color: #413C37;
  padding-top: 47px;
  padding-top: 2.9375rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  display: none;
}
@media screen and (min-width: 768px) {
  .human-case {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
@media screen and (min-width: 1100px) {
  .human-case {
    padding-top: 5.4375rem;
    padding-bottom: 5.25rem;
  }
}

.human-case__inner {
  max-width: 1200px;
  max-width: 75rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.human-case__header {
  color: #fff;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .human-case__header {
    margin-bottom: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .human-case .sec-header {
    margin-bottom: 3.5rem;
  }
}

.human-case__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  gap: 1.25rem;
}

.human-case__btn {
  height: 35px;
  height: 2.1875rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  border-radius: 1.4375rem;
  border: 1px solid #fff;
  font-weight: 700;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.human-case__btn--active {
  background-color: #fff;
  color: #110E0A;
}

.human-case__body {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .human-case__body {
    margin-bottom: 3.125rem;
  }
}

.human-case .human-case__slider {
  margin-bottom: 0 !important;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
}

.human-case .human-case__slider--active {
  position: static;
  width: auto;
}

.human-case .human-case__slider--hidden {
  opacity: 0;
  visibility: hidden;
}

.human-case__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .human-case__slider .slick-track {
    gap: 2.5rem;
  }
}

.human-case__slide {
  background-color: #fff;
  width: 313px;
  width: 19.5625rem;
  border-radius: 0.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-top: 25px;
  padding-top: 1.5625rem;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
}

.human-case__slide-header {
  margin-bottom: 11px;
  margin-bottom: 0.6875rem;
}

.human-case__slide-marker {
  width: 19px;
  width: 1.1875rem;
  margin-right: auto;
  margin-left: auto;
}

.human-case__slide-address {
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  margin-bottom: 3px;
  margin-bottom: 0.1875rem;
}
@media screen and (min-width: 1100px) {
  .human-case__slide-address {
    font-size: max(0.75rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .human-case__slide-address {
    font-size: 0.75rem;
  }
}

.human-case__slide-img {
  width: 53px;
  width: 3.3125rem;
  margin-right: auto;
  margin-left: auto;
}

.human-case__slide-title {
  font-weight: 700;
  text-align: center;
}

.human-case__slide-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
}

.human-case__slide-item-title {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.3333333333;
  color: #fff;
  background-color: #01B1AF;
  border-radius: 0.9375rem;
  text-align: center;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 1100px) {
  .human-case__slide-item-title {
    font-size: max(0.75rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .human-case__slide-item-title {
    font-size: 0.75rem;
  }
}

.human-case__slide-item-text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1100px) {
  .human-case__slide-item-text {
    font-size: max(0.8125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .human-case__slide-item-text {
    font-size: 0.8125rem;
  }
}

.human-case__footer {
  position: relative;
}

.human-case__slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 18px;
  gap: 1.125rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
}

.human-case__slider-nav--active {
  position: static;
  width: auto;
}

.human-case__slider-nav--hidden {
  opacity: 0;
  visibility: hidden;
}

.human-case__slider-nav-arrow {
  color: #fff;
  line-height: 1;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: 3px;
  gap: 0.1875rem;
  cursor: pointer;
}
@media screen and (min-width: 1100px) {
  .human-case__slider-nav-arrow {
    font-size: max(1.875rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .human-case__slider-nav-arrow {
    font-size: 1.875rem;
  }
}

.human-case__slider-nav-arrow::after {
  font-family: "Chillax-Variable", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1100px) {
  .human-case__slider-nav-arrow::after {
    font-size: max(0.625rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .human-case__slider-nav-arrow::after {
    font-size: 0.625rem;
  }
}

.human-case__slider-nav-arrow--prev::after {
  content: "Back";
}

.human-case__slider-nav-arrow--next::after {
  content: "Next";
}

.human-case__slider-nav-arrow--next {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.human-case__slider-nav-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  height: 30px;
  height: 1.875rem;
}

.human-case__slider-nav-dots li {
  font-size: 0;
}

.human-case__slider-nav-dots button {
  background-color: #fff;
  border-radius: 50%;
  width: 5px;
  width: 0.3125rem;
  height: 5px;
  height: 0.3125rem;
}

.human-case__slider-nav-dots .slick-active button {
  background-color: #85BEAF;
}

.human-case__slide-item--cost .human-case__slide-item-text {
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  line-height: 1.2;
}
@media screen and (min-width: 1100px) {
  .human-case__slide-item--cost .human-case__slide-item-text {
    font-size: max(0.9375rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .human-case__slide-item--cost .human-case__slide-item-text {
    font-size: 0.9375rem;
  }
}

.human-case__slide-item--apply .human-case__slide-item-text {
  text-align: center;
}
.human-case__slide-item--apply .human-case__slide-item-text span {
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1100px) {
  .human-case__slide-item--apply .human-case__slide-item-text span {
    font-size: max(0.9375rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .human-case__slide-item--apply .human-case__slide-item-text span {
    font-size: 0.9375rem;
  }
}

.human-feature {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 17px;
  padding-bottom: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .human-feature {
    padding-top: 5rem;
    padding-bottom: 3.75rem;
  }
}
@media screen and (min-width: 1100px) {
  .human-feature {
    padding-top: 5.375rem;
    padding-bottom: 1.875rem;
  }
}

.human-feature .sec-header {
  margin-bottom: 48px;
  margin-bottom: 3rem;
}
@media screen and (min-width: 1100px) {
  .human-feature .sec-header {
    margin-bottom: 1.5625rem;
  }
}

.human-feature .sec-header__title span {
  color: #85BEAF;
}

@media screen and (min-width: 1100px) {
  .human-feature__inner {
    max-width: 75rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.human-feature__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 39px;
  gap: 2.4375rem;
}
@media screen and (min-width: 1100px) {
  .human-feature__body {
    gap: 0;
  }
}

.human-feature__item {
  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: 30px;
  gap: 1.875rem;
}
@media screen and (min-width: 1100px) {
  .human-feature__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .human-feature__item-head {
    width: 100%;
    text-align: center;
  }
}
@media screen and (min-width: 1100px) {
  .human-feature__item-head {
    max-width: 20.9375rem;
    text-align: left;
  }
}

.human-feature__item-sub-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 3px;
  margin-bottom: 0.1875rem;
}
@media screen and (min-width: 1100px) {
  .human-feature__item-sub-title {
    font-size: max(1.75rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .human-feature__item-sub-title {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .human-feature__item-sub-title {
    margin-bottom: 0.5rem;
  }
}

@media screen and (min-width: 1100px) {
  .human-feature__item--cost {
    padding-left: 4.25rem;
  }
}

.human-feature__item--cost .human-feature__item-sub-title {
  color: #85BEAF;
}

@media screen and (min-width: 1100px) {
  .human-feature__item--quality {
    padding-right: 4.25rem;
  }
}

.human-feature__item--quality .human-feature__item-sub-title {
  color: #E1BB44;
}

@media screen and (min-width: 1100px) {
  .human-feature__item--media {
    padding-left: 4.25rem;
  }
}

.human-feature__item--media .human-feature__item-sub-title {
  color: #F1BB8A;
}

.human-feature__title {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.68;
  font-weight: 700;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 1100px) {
  .human-feature__title {
    font-size: max(1.5625rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .human-feature__title {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1100px) {
  .human-feature__title {
    font-size: 2rem;
    line-height: 1.375;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .human-feature__title {
    font-size: max(2rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .human-feature__title {
    font-size: 2rem;
  }
}

.human-feature__text span {
  color: #C86E70;
}

.human-feature__item-body {
  position: relative;
}

.human-feature__bg {
  width: 300px;
  width: 18.75rem;
}
@media screen and (min-width: 1100px) {
  .human-feature__bg {
    width: 27.25rem;
  }
}

.human-feature__img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.human-feature__item--cost .human-feature__img {
  width: 222px;
  width: 13.875rem;
  -webkit-transform: translate(-56%, -50%);
          transform: translate(-56%, -50%);
}
@media screen and (min-width: 1100px) {
  .human-feature__item--cost .human-feature__img {
    width: 20.125rem;
  }
}

@media screen and (min-width: 1100px) {
  .human-feature__item--quality {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.human-feature__item--quality .human-feature__img {
  width: 246px;
  width: 15.375rem;
  -webkit-transform: translate(-44%, -50%);
          transform: translate(-44%, -50%);
}
@media screen and (min-width: 1100px) {
  .human-feature__item--quality .human-feature__img {
    width: 22.3125rem;
  }
}

.human-feature__item--media .human-feature__img {
  width: 205px;
  width: 12.8125rem;
  -webkit-transform: translate(-56%, -62%);
          transform: translate(-56%, -62%);
}
@media screen and (min-width: 1100px) {
  .human-feature__item--media .human-feature__img {
    width: 18.625rem;
  }
}

.human-partner {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .human-partner {
    margin-bottom: 5rem;
  }
}

.human-partner__inner {
  background-color: #fff;
  border-radius: 0.9375rem;
  padding-right: 32.5px;
  padding-right: 2.03125rem;
  padding-left: 32.5px;
  padding-left: 2.03125rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .human-partner__inner {
    max-width: 51.5625rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 4.375rem;
    padding-left: 4.375rem;
  }
}
@media screen and (min-width: 1100px) {
  .human-partner__inner {
    max-width: 65.625rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1600px) {
  .human-partner__inner {
    max-width: 51.5625rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.human-partner__header {
  margin-bottom: 22px;
  margin-bottom: 1.375rem;
}

.human-partner__title {
  text-align: center;
  line-height: 1.6666666667;
}

.human-partner__title span {
  font-weight: 700;
  line-height: 1;
  font-size: 20px;
  font-size: 1.25rem;
  display: inline-block;
  margin-top: 5px;
  margin-top: 0.3125rem;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 1100px) {
  .human-partner__title span {
    font-size: max(1.25rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .human-partner__title span {
    font-size: 1.25rem;
  }
}

.human-partner__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  row-gap: 1.25rem;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .human-partner__body {
    max-width: 31.25rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1100px) {
  .human-partner__body {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }
}

.human-partner__item {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  gap: 0.9375rem;
}

.human-partner__tag {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  text-align: center;
  background-color: #C86E70;
  color: #fff;
  font-weight: 700;
  border-radius: 3.125rem;
  width: 100%;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1100px) {
  .human-partner__tag {
    font-size: max(0.8125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .human-partner__tag {
    font-size: 0.8125rem;
  }
}

.human-partner__item-title {
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}

.human-partner__item--dym .human-partner__item-img {
  width: 112px;
  width: 7rem;
}

.human-partner__item--playNew .human-partner__item-img {
  width: 46px;
  width: 2.875rem;
}

.human-partner__item--tripleThree .human-partner__item-img {
  width: 56px;
  width: 3.5rem;
}

.human-partner__item--awesome .human-partner__item-img {
  width: 150px;
  width: 9.375rem;
}

.human-partner__item--joyya .human-partner__item-img {
  width: 101px;
  width: 6.3125rem;
}

.human-partner__item--laftels .human-partner__item-img {
  width: 100%;
}

.human-partner__item--booma .human-partner__item-img {
  width: 66px;
  width: 4.125rem;
}

.human-partner__item--tuzuru .human-partner__item-img {
  width: 52px;
  width: 3.25rem;
}

.job-fv {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .job-fv {
    margin-bottom: 4.375rem;
  }
}
@media screen and (min-width: 1100px) {
  .job-fv {
    margin-bottom: 8.75rem;
    padding-right: 0rem;
    padding-left: 0rem;
  }
}

@media screen and (min-width: 768px) {
  .job-fv__inner {
    max-width: 40.625rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1100px) {
  .job-fv__inner {
    max-width: 68.75rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.job-fv__header {
  text-align: center;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .job-fv__header {
    margin-bottom: 3.4375rem;
  }
}

.job-fv__header-sub-title {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-shadow: 3px 3px 0 #fff, -3px -3px 0 #fff, -3px 3px 0 #fff, 3px -3px 0 #fff, 3px 0 0 #fff, -3px 0 0 #fff, 0 3px 0 #fff, 0 -3px 0 #fff;
}
@media screen and (min-width: 1100px) {
  .job-fv__header-sub-title {
    font-size: max(2.5rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .job-fv__header-sub-title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .job-fv__header-sub-title {
    font-size: 3.375rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .job-fv__header-sub-title {
    font-size: max(3.375rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .job-fv__header-sub-title {
    font-size: 3.375rem;
  }
}
@media screen and (min-width: 1100px) {
  .job-fv__header-sub-title {
    font-size: 4rem;
    letter-spacing: 0.09em;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .job-fv__header-sub-title {
    font-size: max(4rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .job-fv__header-sub-title {
    font-size: 4rem;
  }
}

.job-fv__header-title {
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 1100px) {
  .job-fv__header-title {
    font-size: max(1.25rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .job-fv__header-title {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1100px) {
  .job-fv__header-title {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .job-fv__header-title {
    font-size: max(1.5625rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .job-fv__header-title {
    font-size: 1.5625rem;
  }
}

@media screen and (min-width: 1100px) {
  .job-fv__body {
    position: relative;
  }
}

.job-fv__bubble {
  width: 300px;
  width: 18.75rem;
  height: 139px;
  height: 8.6875rem;
  position: relative;
  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;
}
@media screen and (min-width: 1100px) {
  .job-fv__bubble {
    position: absolute;
    z-index: 1;
    width: 18.75rem;
  }
}

.job-fv__bubble-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.job-fv__bubble-text {
  width: 90%;
  position: relative;
  z-index: 1;
  width: 250px;
  width: 15.625rem;
}

.job-fv__bubble--topLeft {
  padding-bottom: 1.7%;
  padding-right: 1.7%;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .job-fv__bubble--topLeft {
    margin-bottom: 1.875rem;
  }
}
@media screen and (min-width: 1100px) {
  .job-fv__bubble--topLeft {
    top: 1%;
    left: 3.7%;
    margin-bottom: 0;
  }
}

.job-fv__bubble--topRight {
  margin-left: auto;
  padding-bottom: 1.7%;
  padding-left: 1.7%;
}
@media screen and (min-width: 1100px) {
  .job-fv__bubble--topRight {
    top: 7%;
    right: 5.7%;
  }
}

.job-fv__bubble--topRight .job-fv__bubble-img {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.job-fv__bubble--bottomLeft {
  padding-top: 1.7%;
  padding-right: 1.7%;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .job-fv__bubble--bottomLeft {
    margin-bottom: 1.875rem;
  }
}
@media screen and (min-width: 1100px) {
  .job-fv__bubble--bottomLeft {
    bottom: 7%;
    left: 7.7%;
    margin-bottom: 0;
  }
}

.job-fv__bubble--bottomLeft .job-fv__bubble-img {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}

.job-fv__bubble--bottomRight {
  padding-top: 1.7%;
  padding-left: 1.7%;
  margin-left: auto;
}
@media screen and (min-width: 1100px) {
  .job-fv__bubble--bottomRight {
    bottom: -6%;
    right: 8.7%;
  }
}

.job-fv__bubble--bottomRight .job-fv__bubble-img {
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

.job-fv__icon {
  position: relative;
  margin-top: 45px;
  margin-top: 2.8125rem;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  width: 390px;
  width: 24.375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .job-fv__icon {
    width: 27.25rem;
  }
}
@media screen and (min-width: 1100px) {
  .job-fv__icon {
    width: min(34.5454545455%, 436px);
    margin-top: 0;
    margin-bottom: 0;
  }
}

.job-fv__icon-img {
  width: 322px;
  width: 20.125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .job-fv__icon-img {
    width: 82.5688073394%;
  }
}
.job-holiday {
  padding-top: 47px;
  padding-top: 2.9375rem;
  padding-bottom: 58px;
  padding-bottom: 3.625rem;
}
@media screen and (min-width: 768px) {
  .job-holiday {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 1100px) {
  .job-holiday {
    padding-top: 6.75rem;
    padding-bottom: 7.125rem;
    padding-right: 0rem;
    padding-left: 0rem;
  }
}

@media screen and (min-width: 1100px) {
  .job-holiday__inner {
    max-width: 90rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.job-holiday .sec-header {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}

.job-holiday__body-inner {
  position: relative;
  max-width: 390px;
  max-width: 24.375rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .job-holiday__body-inner {
    max-width: 48rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 12.5rem;
    padding-bottom: 12.5rem;
  }
}
@media screen and (min-width: 1100px) {
  .job-holiday__body-inner {
    max-width: 68.75rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.job-holiday__item {
  width: 200px;
  width: 12.5rem;
  height: 200px;
  height: 12.5rem;
  border-radius: 50%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .job-holiday__item {
    position: absolute;
  }
}

.job-holiday__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -webkit-animation: 4s moving_shadow ease-in-out alternate infinite;
          animation: 4s moving_shadow ease-in-out alternate infinite;
}

.job-holiday__item-inner {
  background-color: #fff;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 12px;
  padding-top: 0.75rem;
}

.job-holiday__item-title {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.2em;
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
}
@media screen and (min-width: 1100px) {
  .job-holiday__item-title {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .job-holiday__item-title {
    font-size: 1.125rem;
  }
}

.job-holiday__item-text {
  width: 140px;
  width: 8.75rem;
  text-align: center;
}

.job-holiday__img {
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  width: 350px;
  width: 21.875rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .job-holiday__img {
    width: 23.5625rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.job-holiday__item--yellow {
  margin-left: auto;
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .job-holiday__item--yellow {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1100px) {
  .job-holiday__item--yellow {
    position: absolute;
    margin-left: 0;
    left: 14%;
    bottom: 28%;
  }
}

.job-holiday__item--yellow::before {
  -webkit-box-shadow: 0 0 7.5rem #e1bb44;
          box-shadow: 0 0 7.5rem #e1bb44;
}

@media screen and (min-width: 1100px) {
  .job-holiday__item--green {
    margin-right: auto;
    margin-left: auto;
    -webkit-transform: translateX(-1.3125rem);
            transform: translateX(-1.3125rem);
    margin-bottom: 0.6875rem;
  }
}

.job-holiday__item--green::before {
  -webkit-box-shadow: 0 0 7.5rem #85BEAF;
          box-shadow: 0 0 7.5rem #85BEAF;
}

.job-holiday__item--orange {
  margin-left: auto;
}
@media screen and (min-width: 1100px) {
  .job-holiday__item--orange {
    position: absolute;
    margin-left: 0;
    top: 9%;
    right: 12%;
  }
}

.job-holiday__item--orange::before {
  -webkit-box-shadow: 0 0 7.5rem #F1BB8A;
          box-shadow: 0 0 7.5rem #F1BB8A;
}

.job-message {
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .job-message {
    padding-bottom: 4.0625rem;
  }
}

@media screen and (min-width: 1100px) {
  .job-message__inner {
    max-width: 75rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1100px) {
  .job-message .sec-header {
    margin-bottom: 5rem;
  }
}

.job-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;
  gap: 26px;
  gap: 1.625rem;
}
@media screen and (min-width: 1100px) {
  .job-message__body {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.75rem;
  }
}

.job-message__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 1100px) {
  .job-message__title {
    font-size: max(1.25rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .job-message__title {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .job-message__title {
    font-size: 1.5625rem;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .job-message__title {
    font-size: max(1.5625rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .job-message__title {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1100px) {
  .job-message__title {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1100px) {
  .job-message__text {
    max-width: 29.625rem;
    width: 100%;
  }
}

.job-schedule {
  border-radius: 2.5rem 2.5rem 0 0;
}

.job-schedule__inner {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .job-schedule__inner {
    padding-top: 5rem;
    padding-bottom: 5.625rem;
  }
}
@media screen and (min-width: 1100px) {
  .job-schedule__inner {
    padding-top: 6.875rem;
    position: relative;
  }
}
@media screen and (min-width: 1100px) {
  .job-schedule__inner {
    max-width: 75rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .job-schedule .sec-header {
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 1100px) {
  .job-schedule .sec-header {
    margin-bottom: 9.1875rem;
  }
}

.job-schedule .sec-header__title span {
  color: #fff;
}

.job-schedule__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 1100px) {
  .job-schedule__item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4.625rem;
  }
}

@media screen and (min-width: 1100px) {
  .job-schedule__item:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1100px) {
  .job-schedule__item::before {
    content: "";
    display: block;
    max-width: 25rem;
    width: 100%;
  }
}
@media screen and (min-width: 1600px) {
  .job-schedule__item::before {
    max-width: 18.75rem;
  }
}

.job-schedule__item-head {
  position: relative;
}
@media screen and (min-width: 1100px) {
  .job-schedule__item-head {
    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;
  }
}

.job-schedule__item:not(:last-child) .job-schedule__item-head::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #fff;
}

.job-schedule__item-title {
  width: 91px;
  width: 5.6875rem;
  height: 35px;
  height: 2.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  background-color: #F5F4EB;
  border: 0.5px solid #000;
  border-radius: 1.375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}

.job-schedule__item-body {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .job-schedule__item-body {
    padding-bottom: 3.75rem;
  }
}
@media screen and (min-width: 1100px) {
  .job-schedule__item-body {
    max-width: 25rem;
    width: 100%;
    padding-bottom: 0;
    -webkit-transform: translateY(calc(-50% + 1.09375rem));
            transform: translateY(calc(-50% + 1.09375rem));
  }
}
@media screen and (min-width: 1600px) {
  .job-schedule__item-body {
    max-width: 18.75rem;
  }
}

.job-schedule__item:last-child .job-schedule__item-body {
  padding-bottom: 0;
}

.job-schedule__item-body-title {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 2.6923076923;
}
@media screen and (min-width: 1100px) {
  .job-schedule__item-body-title {
    font-size: max(0.8125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .job-schedule__item-body-title {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .job-schedule__item-body-title {
    font-size: 0.9375rem;
    line-height: 1.6666666667;
    margin-bottom: 0.9375rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .job-schedule__item-body-title {
    font-size: max(0.9375rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .job-schedule__item-body-title {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1100px) {
  .job-schedule__item-body-title {
    text-align: center;
  }
}

.job-schedule__item-body-underline {
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .job-schedule__item-body-underline {
    margin-bottom: 0.375rem;
  }
}

.job-schedule__item-body-time {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 11px;
  margin-bottom: 0.6875rem;
}
@media screen and (min-width: 1100px) {
  .job-schedule__item-body-time {
    font-size: max(1.5rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .job-schedule__item-body-time {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .job-schedule__item-body-time {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .job-schedule__item-body-time {
    font-size: max(1.875rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .job-schedule__item-body-time {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 1100px) {
  .job-schedule__item-body-time {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .job-schedule__item-body-time {
    font-size: max(2.25rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .job-schedule__item-body-time {
    font-size: 2.25rem;
  }
}

.job-schedule__item-body-text {
  line-height: 1.5384615385;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 1100px) {
  .job-schedule__item-body-text {
    font-size: max(0.8125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .job-schedule__item-body-text {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .job-schedule__item-body-text {
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .job-schedule__item-body-text {
    font-size: max(0.9375rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .job-schedule__item-body-text {
    font-size: 0.9375rem;
  }
}

.job-schedule__clock {
  display: none;
}
@media screen and (min-width: 1100px) {
  .job-schedule__clock {
    display: block;
    position: absolute;
    max-width: 40.625rem;
    width: 54.1666666667%;
    bottom: 3.75rem;
    left: -8.5rem;
  }
}

.job {
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .job {
    padding-bottom: 6.4375rem;
  }
}
@media screen and (min-width: 1100px) {
  .job {
    padding-bottom: 7.5rem;
  }
}

.job__header {
  margin-bottom: 18.6046511628svw;
  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;
}
@media screen and (min-width: 768px) {
  .job__header {
    margin-bottom: 21.5827338129svw;
  }
}
@media screen and (min-width: 1100px) {
  .job__header {
    margin-bottom: 8.9375rem;
    max-width: 90rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.job__body {
  position: relative;
  z-index: 1;
}

.job__bgCircle {
  width: 61.3953488372svw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -67%) scale(0);
          transform: translate(-50%, -67%) scale(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .job__bgCircle {
    width: 57.5539568345svw;
  }
}
@media screen and (min-width: 1100px) {
  .job__bgCircle {
    width: 28.9453125rem;
  }
}
@media screen and (min-width: 1600px) {
  .job__bgCircle {
    width: 35.625rem;
  }
}

.job__bgCircle--active {
  -webkit-transform: translate(-50%, -67%) scale(1);
          transform: translate(-50%, -67%) scale(1);
}

.job__bgCircle--active .job__bgCircle-imgWrapper {
  -webkit-animation: pop 0.5s ease-in-out forwards;
          animation: pop 0.5s ease-in-out forwards;
}

.job__btn {
  margin-right: auto;
  margin-left: auto;
}

.job__slider-container {
  margin-bottom: 20svw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .job__slider-container {
    margin-bottom: 0;
  }
}

.slider__slide {
  margin-left: 8.9534883721svw;
  margin-right: 8.9534883721svw;
  width: 35.1162790698svw;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
@media screen and (min-width: 768px) {
  .slider__slide {
    width: 32.8537170264svw;
    margin-left: 9.412470024svw;
    margin-right: 9.412470024svw;
  }
}
@media screen and (min-width: 1100px) {
  .slider__slide {
    width: 16.5546875rem;
    margin-left: 3.986328125rem;
    margin-right: 3.986328125rem;
  }
}
@media screen and (min-width: 1600px) {
  .slider__slide {
    width: 20.375rem;
    margin-left: 4.90625rem;
    margin-right: 4.90625rem;
  }
}

.job .slick-list {
  overflow: visible;
}

.card {
  width: 100%;
  aspect-ratio: 151/193;
  border-radius: 2.1875rem;
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  position: relative;
}

.card::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
  width: 100%;
  height: 50%;
  background-color: inherit;
  border-radius: inherit;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.card--green::after {
  background-color: #85BEAF;
}

.card--green .card__title {
  color: #85BEAF;
}

.card--orange::after {
  background-color: #F1BB8A;
}

.card--orange .card__title {
  color: #F1BB8A;
}

.card--yellow::after {
  background-color: #E1BB44;
}

.card--yellow .card__title {
  color: #E1BB44;
}

.card__img-outer {
  position: absolute;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.card__img-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.slick-center .card__img-outer,
.slick__slide--animated .card__img-outer {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.slick__slide--animated .card__img-inner {
  -webkit-animation: pop 0.6s ease-in-out forwards;
          animation: pop 0.6s ease-in-out forwards;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
}

.card__img {
  position: absolute;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.card__img--private {
  width: 100%;
  bottom: 0;
}

.card__title-container {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-15deg);
          transform: translateX(-50%) rotate(-15deg);
  top: -4%;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
@media screen and (min-width: 1100px) {
  .card__title-container {
    top: -8%;
  }
}

.card__title {
  font-size: 6.511627907svw;
  font-weight: 600;
  letter-spacing: 0.09em;
  position: relative;
  z-index: 1;
  text-align: center;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  opacity: 0;
}
@media screen and (min-width: 1100px) {
  .card__title {
    font-size: 4.375rem;
    text-shadow: 0.15234375rem 0.15234375rem 0 #fff, -0.15234375rem -0.15234375rem 0 #fff, -0.15234375rem 0.15234375rem 0 #fff, 0.15234375rem -0.15234375rem 0 #fff, 0.15234375rem 0 0 #fff, -0.15234375rem 0 0 #fff, 0 0.15234375rem 0 #fff, 0 -0.15234375rem 0 #fff;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .card__title {
    font-size: max(4.375rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .card__title {
    font-size: 4.375rem;
  }
}
@media screen and (min-width: 1600px) {
  .card__title {
    text-shadow: 0.1875rem 0.1875rem 0 #fff, -0.1875rem -0.1875rem 0 #fff, -0.1875rem 0.1875rem 0 #fff, 0.1875rem -0.1875rem 0 #fff, 0.1875rem 0 0 #fff, -0.1875rem 0 0 #fff, 0 0.1875rem 0 #fff, 0 -0.1875rem 0 #fff;
  }
}

.slick-center .card::after,
.slick__slide--animated .card::after {
  top: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  height: 100%;
}

.slick-center .card__title,
.slick__slide--animated .card__title {
  font-size: 8.8372093023svw;
  opacity: 1;
}
@media screen and (min-width: 1100px) {
  .slick-center .card__title,
.slick__slide--animated .card__title {
    font-size: 4.375rem;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .slick-center .card__title,
.slick__slide--animated .card__title {
    font-size: max(4.375rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .slick-center .card__title,
.slick__slide--animated .card__title {
    font-size: 4.375rem;
  }
}

@media screen and (min-width: 1100px) {
  .slick-center .card__title {
    font-size: 4.875rem;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .slick-center .card__title {
    font-size: max(4.875rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .slick-center .card__title {
    font-size: 4.875rem;
  }
}
@media screen and (min-width: 1600px) {
  .slick-center .card__title {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1600px) and (min-width: 1100px) {
  .slick-center .card__title {
    font-size: max(6rem, 14px);
  }
}
@media screen and (min-width: 1600px) and (min-width: 1600px) {
  .slick-center .card__title {
    font-size: 6rem;
  }
}

.slick__slide--animated .card__title {
  -webkit-animation: pop 0.6s ease-in-out forwards;
          animation: pop 0.6s ease-in-out forwards;
}
@media screen and (min-width: 1100px) {
  .slick__slide--animated .card__title {
    font-size: 4.875rem;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .slick__slide--animated .card__title {
    font-size: max(4.875rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .slick__slide--animated .card__title {
    font-size: 4.875rem;
  }
}
@media screen and (min-width: 1600px) {
  .slick__slide--animated .card__title {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1600px) and (min-width: 1100px) {
  .slick__slide--animated .card__title {
    font-size: max(6rem, 14px);
  }
}
@media screen and (min-width: 1600px) and (min-width: 1600px) {
  .slick__slide--animated .card__title {
    font-size: 6rem;
  }
}

.slick-center .card__img--private,
.slick__slide--animated .card__img--private,
.card__img--work {
  opacity: 0;
}

.slick-center .card__img--work,
.slick__slide--animated .card__img--work {
  opacity: 1;
}

.card__img--work {
  -webkit-animation: appeal 2s ease-in-out 0s infinite alternate both;
          animation: appeal 2s ease-in-out 0s infinite alternate both;
}

.card__img--work:nth-of-type(odd) {
  animation: appeal 2s ease-in-out 0s infinite alternate-reverse both;
}

@-webkit-keyframes appeal {
  from {
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
  to {
    -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
  }
}

@keyframes appeal {
  from {
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
  to {
    -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
  }
}
.job__slider .slick-center,
.slick__slide--animated {
  -webkit-transform: scale(1.23);
          transform: scale(1.23);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
}

.slick__slide--animated .card {
  -webkit-animation: pop 0.6s ease-in-out forwards;
          animation: pop 0.6s ease-in-out forwards;
}

.progress {
  width: 60px;
  width: 3.75rem;
  height: 5px;
  height: 0.3125rem;
  background-color: #C8C8C8;
  margin-top: 18px;
  margin-top: 1.125rem;
  position: relative;
  border-radius: 0.15625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .progress {
    margin-top: 2.125rem;
    width: 6.25rem;
  }
}

.progress-bar {
  height: 100%;
  background-color: #85BEAF;
  width: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.job__btn-icon {
  display: block;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.job__btn:hover .job__btn-icon {
  -webkit-transform: translateY(0.1875rem);
          transform: translateY(0.1875rem);
}

.job__btn--active .job__btn-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.job__btn--active:hover .job__btn-icon {
  -webkit-transform: rotate(180deg) translateY(0.1875rem);
          transform: rotate(180deg) translateY(0.1875rem);
}

.job__menu {
  position: absolute;
  z-index: 10;
  width: 100%;
  left: 0;
  bottom: -25px;
  bottom: -1.5625rem;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.job__menu-body {
  position: absolute;
  max-width: 350px;
  max-width: 21.875rem;
  width: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  border-radius: 0.9375rem;
  border: 1px solid #110E0A;
  display: none;
}

.job__menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  height: 3.125rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  color: #000;
}

.job__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

@media screen and (min-width: 768px) {
  .job__nav--sp {
    display: none;
  }
}

.job__nav--tablet {
  display: none;
}
@media screen and (min-width: 768px) {
  .job__nav--tablet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.job__stars {
  position: absolute;
  z-index: 5;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0);
          transform: translateX(-50%) scale(0);
  bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
  width: 43.023255814svw;
  aspect-ratio: 400/512;
}
@media screen and (min-width: 768px) {
  .job__stars {
    width: 40.2877697842svw;
  }
}
@media screen and (min-width: 1100px) {
  .job__stars {
    width: 20.3125rem;
  }
}
@media screen and (min-width: 1600px) {
  .job__stars {
    width: 25rem;
  }
}

.job__stars--active {
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
}

.job__stars-body {
  width: 100%;
  height: 100%;
  position: relative;
}

.job__stars--active .job__stars-body {
  -webkit-animation: bigPop 0.5s ease-in-out forwards;
          animation: bigPop 0.5s ease-in-out forwards;
}

.job__star {
  position: absolute;
}

.job__star--a {
  width: 13.5%;
  left: -16%;
  top: -6%;
}

.job__star--a .job__star-img {
  -webkit-animation: spin 0.5268292683s linear infinite;
          animation: spin 0.5268292683s linear infinite;
}

.job__star--b {
  width: 11.25%;
  top: -16%;
  right: 25%;
}

.job__star--b .job__star-img {
  animation: spin 0.4390243902s linear infinite reverse;
}

.job__star--c {
  width: 20.5%;
  right: -13%;
  top: 18%;
}

.job__star--c .job__star-img {
  -webkit-animation: spin 0.8s linear infinite;
          animation: spin 0.8s linear infinite;
}

.job__star--d {
  width: 20.5%;
  bottom: -1%;
  left: -18%;
}

.job__star--d .job__star-img {
  animation: spin 0.8s linear infinite reverse;
}

.job__star--e {
  width: 20%;
  bottom: -9%;
  right: -9%;
}

.job__star--e .job__star-img {
  -webkit-animation: spin 0.7804878049s linear infinite;
          animation: spin 0.7804878049s linear infinite;
}

.card__img--tamura {
  width: 69%;
  left: 20%;
  bottom: -15%;
}

.card__img--tamura.card__img--private {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -3%;
}

.card__img--kanbayashi {
  width: 83.75%;
  bottom: -3%;
  left: -15%;
}

.card__img--nemoto {
  width: 77.5%;
  z-index: 2;
  bottom: -23%;
  right: 6%;
}

.card__img--inoue {
  width: 59.25%;
  bottom: -4%;
  right: -15%;
}

.card__img--ikeo {
  width: 48.5%;
  bottom: -17%;
  left: -16%;
}

.card__img--kitayama {
  width: 58.5%;
  z-index: 2;
  bottom: -18%;
  right: 22%;
}

.card__img--akaza {
  width: 74.5%;
  bottom: -8%;
  right: -16%;
}

.card__img--natsuko {
  width: 75.75%;
  bottom: -12%;
  left: -9%;
}

.card__img--miura {
  width: 68%;
  z-index: 2;
  bottom: -25%;
  right: -9%;
}

.card__img--kuroda {
  width: 47%;
  bottom: -17%;
  left: -13%;
}

.card__img--miyuki {
  width: 86%;
  z-index: 2;
  bottom: -8%;
  right: -12%;
}

.loading-back {
  position: fixed;
  z-index: 15;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-animation: fadeOut 1s ease-in-out 3s both;
          animation: fadeOut 1s ease-in-out 3s both;
}

.loading {
  position: fixed;
  z-index: 30;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-animation: fadeOut 1s ease-in-out 3s both;
          animation: fadeOut 1s ease-in-out 3s both;
}

.loading__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .85);
}

.loading__bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/bg.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.loading__inner {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
}

.loading__body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loading__text,
.loading__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loading__text {
  width: 320px;
  width: 20rem;
  -webkit-animation: fadeIn 1.5s ease-in-out both;
          animation: fadeIn 1.5s ease-in-out both;
}

.loading__circle {
  width: 374px;
  width: 23.375rem;
  -webkit-animation: fadeIn 1.5s ease-in-out 1s both, spinBig 1s ease-in-out 3s both;
          animation: fadeIn 1.5s ease-in-out 1s both, spinBig 1s ease-in-out 3s both;
}

.menu {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/common/bg.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.menu--active {
  opacity: 1;
  visibility: visible;
  z-index: 15;
}

.menu::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .85);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.menu__outer {
  overflow: auto;
  height: 100%;
}

.menu__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 144px;
  padding-top: 9rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .menu__inner {
    padding-top: 4.8828125svh;
    padding-bottom: 4.8828125svh;
    height: 100%;
  }
}

.menu__logo {
  display: block;
  width: 249px;
  width: 15.5625rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 36px;
  margin-bottom: 2.25rem;
}
@media screen and (min-width: 768px) {
  .menu__logo {
    margin-bottom: 2.75rem;
  }
}

.menu__body {
  -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;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-left: 40px;
  padding-left: 2.5rem;
}
@media screen and (min-width: 600px) {
  .menu__body {
    padding-right: 4.1875rem;
    padding-left: 4.1875rem;
  }
}
@media screen and (min-width: 1100px) {
  .menu__body {
    padding-right: 7.5rem;
    padding-left: 7.5rem;
  }
}

.menu__body-inner {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu__lists {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  gap: 1.875rem;
  margin-bottom: 36px;
  margin-bottom: 2.25rem;
  width: 100%;
  max-width: 420px;
  max-width: 26.25rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .menu__lists {
    gap: 3.1875rem;
  }
}
@media screen and (min-width: 700px) {
  .menu__lists {
    max-width: 31.25rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1100px) {
  .menu__lists {
    max-width: 37.5rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1600px) {
  .menu__lists {
    max-width: 31.25rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.menu__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: 18px;
  gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .menu__list {
    gap: 0.875rem;
  }
}

.menu__list--overview {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 23px;
  gap: 1.4375rem;
  width: 184px;
  width: 11.5rem;
}
@media screen and (min-width: 700px) {
  .menu__list--overview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: auto;
  }
}

.menu__list--overview .menu__link {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 1100px) {
  .menu__list--overview .menu__link {
    font-size: max(1rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .menu__list--overview .menu__link {
    font-size: 1rem;
  }
}

.menu__link {
  letter-spacing: 0.2em;
  font-size: 15px;
  font-size: 0.9375rem;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  color: #000;
}
@media screen and (min-width: 1100px) {
  .menu__link {
    font-size: max(0.9375rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .menu__link {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .menu__link {
    letter-spacing: 0.1em;
  }
}

.menu__link:hover {
  color: #85BEAF;
}

.menu__link-title {
  font-weight: 700;
  letter-spacing: 0.2em;
  display: inline-block;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 1100px) {
  .menu__link-title {
    font-size: max(1rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .menu__link-title {
    font-size: 1rem;
  }
}

.menu__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .menu__btns {
    max-width: 21.875rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.menu__footer {
  position: relative;
}

.menu__cats-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17.5px;
  gap: 1.09375rem;
}

.menu__cats-slider-slide {
  height: auto !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -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: flex-end;
  width: 750px;
  width: 46.875rem;
}
@media screen and (min-width: 768px) {
  .menu__cats-slider-slide {
    width: 62.1875rem;
  }
}

.menu .menu__text-slider {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.menu__text-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
  gap: 2.8125rem;
}

.menu__text-slide {
  text-align: center;
  width: 1210px;
  width: 75.625rem;
}
@media screen and (min-width: 768px) {
  .menu__text-slide {
    width: 100.625rem;
  }
}

.menu__text-slideText {
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  color: rgba(242, 233, 206, 0.69804);
  white-space: nowrap;
  font-size: 72px;
  font-size: 4.5rem;
}
@media screen and (min-width: 1100px) {
  .menu__text-slideText {
    font-size: max(4.5rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .menu__text-slideText {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 768px) {
  .menu__text-slideText {
    font-size: 6rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .menu__text-slideText {
    font-size: max(6rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .menu__text-slideText {
    font-size: 6rem;
  }
}

.menu .sns {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .news-item {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
}
@media screen and (min-width: 1100px) {
  .news-item {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.news-item--top {
  padding-top: 0px;
  padding-top: 0rem;
  padding-bottom: 0px;
  padding-bottom: 0rem;
}
@media screen and (min-width: 768px) {
  .news-item--top {
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
  }
}
@media screen and (min-width: 1450px) {
  .news-item--top {
    width: 21.25rem;
  }
}

.news-item__img {
  width: 110px;
  width: 6.875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
@media screen and (min-width: 768px) {
  .news-item__img {
    width: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .news-item--top .news-item__img {
    width: 6.875rem;
  }
}

.news-item:hover .news-item__img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.news-item__body {
  display: block;
}

.news-item__body-header {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #969696;
  display: block;
  white-space: nowrap;
}
@media screen and (min-width: 1100px) {
  .news-item__body-header {
    font-size: max(0.8125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .news-item__body-header {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .news-item__body-header {
    margin-bottom: 0.375rem;
  }
}
@media screen and (min-width: 1100px) {
  .news-item__body-header {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .news-item__body-header {
    font-size: max(0.9375rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .news-item__body-header {
    font-size: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .news-item--top .news-item__body-header {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1100px) {
  .news-item--top .news-item__body-header {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .news-item--top .news-item__body-header {
    font-size: max(0.8125rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .news-item--top .news-item__body-header {
    font-size: 0.8125rem;
  }
}

.news-item__cat {
  color: #969696;
  font-size: inherit;
  letter-spacing: 0.05em;
}

.news-item__time {
  font-weight: 600;
  font-size: inherit;
  color: #000;
  letter-spacing: 0.15em;
}

.news-item__title {
  font-weight: 700;
  line-height: 1.3333333333;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
@media screen and (min-width: 1100px) {
  .news-item__title {
    font-size: 1.125rem;
    line-height: 1.6666666667;
    letter-spacing: 0.2em;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .news-item__title {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .news-item__title {
    font-size: 1.125rem;
  }
}

.news-item--archive .news-item__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-item--top .news-item__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 1100px) {
  .news-item--top .news-item__title {
    font-size: 0.9375rem;
    line-height: 1.3333333333;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .news-item--top .news-item__title {
    font-size: max(0.9375rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .news-item--top .news-item__title {
    font-size: 0.9375rem;
  }
}

.news-item:hover .news-item__title {
  opacity: 0.7;
}

.news-item--single {
  padding-top: 0px;
  padding-top: 0rem;
  padding-bottom: 0px;
  padding-bottom: 0rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

@media screen and (min-width: 1100px) {
  .news-item--single .news-item__img {
    width: 15.625rem;
  }
}

.news-item--single {
  pointer-events: none;
}

.news {
  padding-top: 65px;
  padding-top: 4.0625rem;
  padding-bottom: 65px;
  padding-bottom: 4.0625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .news {
    padding-top: 3.4375rem;
    padding-bottom: 3.3125rem;
  }
}
@media screen and (min-width: 1100px) {
  .news {
    padding-top: 9.0625rem;
    padding-bottom: 9.0625rem;
  }
}

.news::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(2deg);
          transform: translate(-50%, -50%) rotate(2deg);
  background-color: #fff;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .news::before {
    -webkit-transform: translate(-50%, -50%) rotate(3deg);
            transform: translate(-50%, -50%) rotate(3deg);
  }
}
@media screen and (min-width: 1100px) {
  .news::before {
    -webkit-transform: translate(-50%, -50%) rotate(6deg);
            transform: translate(-50%, -50%) rotate(6deg);
  }
}

@media screen and (min-width: 1100px) {
  .news__inner {
    max-width: 75rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.news__header {
  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;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .news__header {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1100px) {
  .news__header {
    margin-bottom: 2.8125rem;
  }
}

.news__list {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .news__list {
    width: 71.130952381%;
    margin-right: auto;
    margin-left: auto;
    gap: 1.875rem;
  }
}
@media screen and (min-width: 1450px) {
  .news__list {
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0rem;
  }
}

@media screen and (min-width: 768px) {
  .news__btn--sp {
    display: none;
  }
}

.news__btn--tablet {
  display: none;
  margin-right: 0;
  margin-left: 0;
  width: 300px;
  width: 18.75rem;
}
@media screen and (min-width: 768px) {
  .news__btn--tablet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.news__list-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
}
@media screen and (min-width: 1450px) {
  .news__list-line {
    width: 1px;
    height: auto;
  }
}

.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  gap: 1.125rem;
}

.pagination li .page-numbers {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 1100px) {
  .pagination li .page-numbers {
    font-size: max(0.75rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .pagination li .page-numbers {
    font-size: 0.75rem;
  }
}

.pagination li .page-numbers:not(.dots) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #000;
  background-color: #fff;
  letter-spacing: 0;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.pagination li .page-numbers:not(.dots):hover {
  background-color: #000;
  color: #fff;
  opacity: 0.5;
}

.pagination li .page-numbers.current {
  background-color: #000;
  color: #fff;
  pointer-events: none;
}

.pop {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.pop--animated {
  -webkit-animation: popped 0.6s forwards;
          animation: popped 0.6s forwards;
}

@-webkit-keyframes popped {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  80% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes popped {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  80% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.recruit-btn {
  background-color: #E1BB44;
  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;
  -webkit-column-gap: 0.3125rem;
     -moz-column-gap: 0.3125rem;
          column-gap: 0.3125rem;
  border-radius: 3.125rem;
  width: 350px;
  width: 21.875rem;
  height: 44px;
  height: 2.75rem;
}

.recruit-btn__icon {
  color: #fff;
}

.recruit-btn__text {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}

.recruit {
  padding-top: 46px;
  padding-top: 2.875rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .recruit {
    padding-top: 5.6875rem;
  }
}
@media screen and (min-width: 1100px) {
  .recruit {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.recruit__inner {
  position: relative;
  padding-top: 53px;
  padding-top: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .recruit__inner {
    padding-top: 4.5rem;
  }
}

.recruit__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .recruit__header {
    height: 5rem;
  }
}

.recruit__header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
@media screen and (min-width: 1100px) {
  .recruit__header-inner {
    max-width: 75rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1600px) {
  .recruit__header-inner {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.recruit__header--fixed {
  position: fixed;
  top: 100px;
  top: 6.25rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .recruit__header--fixed {
    top: 7.5rem;
  }
}
@media screen and (min-width: 1600px) {
  .recruit__header--fixed {
    top: 8.75rem;
  }
}

.recruit__header--bottom {
  top: auto;
}

.recruit__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 31px;
  gap: 1.9375rem;
  margin-top: 28px;
  margin-top: 1.75rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .recruit__top {
    width: 76.0416666667%;
    margin-right: auto;
    margin-left: auto;
    gap: 2.875rem;
    margin-bottom: 6.1875rem;
  }
}
@media screen and (min-width: 1100px) {
  .recruit__top {
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.75rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 7.1875rem;
    margin-bottom: 18.75rem;
  }
}

.recruit__top-title {
  width: 78.2051282051%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .recruit__top-title {
    width: 69.9404761905%;
  }
}
@media screen and (min-width: 1100px) {
  .recruit__top-title {
    width: 31.25rem;
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 1100px) {
  .recruit__top-body {
    width: 35.8125rem;
  }
}

.recruit__top-text {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .recruit__top-text {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    line-height: 2;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .recruit__top-text {
    font-size: max(1.25rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .recruit__top-text {
    font-size: 1.25rem;
  }
}

.recruit__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
  gap: 6.25rem;
}
@media screen and (min-width: 768px) {
  .recruit__body {
    width: 76.0416666667%;
    margin-right: auto;
    margin-left: auto;
    gap: 8.125rem;
  }
}
@media screen and (min-width: 1100px) {
  .recruit__body {
    max-width: 62.5rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    gap: 18.75rem;
  }
}
@media screen and (min-width: 1600px) {
  .recruit__body {
    max-width: 75rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.recruit__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .recruit__media {
    gap: 4.375rem;
  }
}
@media screen and (min-width: 1100px) {
  .recruit__media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 27.34375rem;
  }
}
@media screen and (min-width: 1600px) {
  .recruit__media {
    min-height: 35.6875rem;
  }
}

@media screen and (min-width: 1100px) {
  .recruit__media-body {
    width: 43.1223628692%;
  }
}
@media screen and (min-width: 1600px) {
  .recruit__media-body {
    width: 43.1223628692%;
  }
}

.recruit__media-sub-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 1100px) {
  .recruit__media-sub-title {
    font-size: max(1.25rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .recruit__media-sub-title {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .recruit__media-sub-title {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .recruit__media-sub-title {
    font-size: max(1.5rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .recruit__media-sub-title {
    font-size: 1.5rem;
  }
}

.recruit__media-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 1100px) {
  .recruit__media-title {
    font-size: max(2rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .recruit__media-title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .recruit__media-title {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .recruit__media-title {
    font-size: max(3rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .recruit__media-title {
    font-size: 3rem;
  }
}

.recruit__media-text {
  margin-bottom: 43px;
  margin-bottom: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .recruit__media-text {
    font-size: 1.125rem;
    letter-spacing: 0.2em;
    line-height: 1.6666666667;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .recruit__media-text {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .recruit__media-text {
    font-size: 1.125rem;
  }
}

.recruit__media-btns-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1100px) {
  .recruit__media-btns-title {
    font-size: max(1.25rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .recruit__media-btns-title {
    font-size: 1.25rem;
  }
}

.recruit__media-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  gap: 1.25rem;
}

.recruit__media-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #fff;
  border-radius: 1.4375rem;
  height: 35px;
  height: 2.1875rem;
  padding-right: 39px;
  padding-right: 2.4375rem;
  padding-left: 39px;
  padding-left: 2.4375rem;
}

.recruit__media-img-wrapper {
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .recruit__media-img-wrapper {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1100px) {
  .recruit__media-img-wrapper {
    width: 37.5%;
  }
}
@media screen and (min-width: 1600px) {
  .recruit__media-img-wrapper {
    width: 47.5949367089%;
  }
}

@media screen and (min-width: 1100px) {
  .recruit__media-img-wrapper span {
    width: 50%;
  }
}
@media screen and (min-width: 1600px) {
  .recruit__media-img-wrapper span {
    width: 43.1223628692%;
  }
}

@media screen and (min-width: 1100px) {
  .recruit__media-img-wrapper.is-fixed {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    padding-right: 9%;
    padding-left: 9%;
  }
}
@media screen and (min-width: 900px) {
  .recruit__media-img-wrapper.is-fixed {
    padding-right: 13%;
    padding-left: 13%;
  }
}
@media screen and (min-width: 1100px) {
  .recruit__media-img-wrapper.is-fixed {
    padding-right: 7.5rem;
    padding-left: 7.5rem;
  }
}
@media screen and (min-width: 1100px) {
  .recruit__media-img-wrapper.is-fixed .recruit__media-img-inner {
    max-width: 62.5rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4.375rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1600px) {
  .recruit__media-img-wrapper.is-fixed .recruit__media-img-inner {
    max-width: 75rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.recruit__media-img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0);
          filter: brightness(0);
  -webkit-transition: -webkit-filter 0.35s;
  transition: -webkit-filter 0.35s;
  transition: filter 0.35s;
  transition: filter 0.35s, -webkit-filter 0.35s;
}
.recruit--active .recruit__media-img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

@media screen and (min-width: 1100px) {
  .recruit__media-img-wrapper.is-fixed .recruit__media-img {
    width: 37.5%;
  }
}
@media screen and (min-width: 1600px) {
  .recruit__media-img-wrapper.is-fixed .recruit__media-img {
    width: 47.5949367089%;
  }
}

@media screen and (min-width: 768px) {
  .recruit .recruit__btn--sp {
    display: none;
  }
}

.recruit .recruit__btn--tablet {
  display: none;
}
@media screen and (min-width: 768px) {
  .recruit .recruit__btn--tablet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0;
    margin-left: 0;
  }
}

.sec-header {
  line-height: 1;
}

.sec-header__title {
  line-height: 1;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1100px) {
  .sec-header__title {
    font-size: max(2rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .sec-header__title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .sec-header__title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .sec-header__title {
    font-size: max(3rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .sec-header__title {
    font-size: 3rem;
  }
}

.sec-header__sub-title {
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .sec-header__sub-title {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .sec-header__sub-title {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .sec-header__sub-title {
    font-size: 1.125rem;
  }
}

.sec-header--sub {
  margin-bottom: 38px;
  margin-bottom: 2.375rem;
}
@media screen and (min-width: 1100px) {
  .sec-header--sub {
    margin-bottom: 7.5rem;
  }
}

.sec-header--sub .sec-header__title {
  font-size: 36px;
  font-size: 2.25rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1100px) {
  .sec-header--sub .sec-header__title {
    font-size: max(2.25rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .sec-header--sub .sec-header__title {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1100px) {
  .sec-header--sub .sec-header__title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .sec-header--sub .sec-header__title {
    font-size: max(3rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .sec-header--sub .sec-header__title {
    font-size: 3rem;
  }
}

.sec-header--sub .sec-header__sub-title {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 1100px) {
  .sec-header--sub .sec-header__sub-title {
    font-size: max(0.875rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .sec-header--sub .sec-header__sub-title {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1100px) {
  .sec-header--sub .sec-header__sub-title {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .sec-header--sub .sec-header__sub-title {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .sec-header--sub .sec-header__sub-title {
    font-size: 1.125rem;
  }
}

.single-nav {
  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;
}

.single-nav__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 15px;
  gap: 0.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 175px;
  max-width: 10.9375rem;
  width: 100%;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
@media screen and (min-width: 768px) {
  .single-nav__btn {
    max-width: 14.375rem;
  }
}

.single-nav__btn:hover {
  opacity: 0.7;
}

.single-nav__btn--next {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.single-nav__btn-mark {
  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;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.single-nav__btn--prev:hover .single-nav__btn-mark {
  -webkit-transform: translateX(-0.1875rem);
          transform: translateX(-0.1875rem);
}

.single-nav__btn--next:hover .single-nav__btn-mark {
  -webkit-transform: translateX(0.1875rem);
          transform: translateX(0.1875rem);
}

.single-nav__btn-mark .material-symbols-outlined {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 1100px) {
  .single-nav__btn-mark .material-symbols-outlined {
    font-size: max(1.5rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .single-nav__btn-mark .material-symbols-outlined {
    font-size: 1.5rem;
  }
}

.single-nav__btn-mark-text {
  line-height: 1;
  font-size: 10px;
  font-size: 0.625rem;
}

.single-nav__btn-text {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.5384615385;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 1100px) {
  .single-nav__btn-text {
    font-size: max(0.8125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .single-nav__btn-text {
    font-size: 0.8125rem;
  }
}

.single-nav__back {
  font-weight: 500;
  letter-spacing: 0.2em;
  border-bottom: 1px dotted #000;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  display: none;
}
@media screen and (min-width: 768px) {
  .single-nav__back {
    display: block;
  }
}

.single-nav__back:hover {
  opacity: 0.7;
}

.sns {
  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;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
}

.sub-fv {
  padding-top: 90px;
  padding-top: 5.625rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .sub-fv {
    padding-top: 10rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1100px) {
  .sub-fv {
    margin-bottom: 4.5rem;
  }
}

@media screen and (min-width: 1100px) {
  .sub-fv__inner {
    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;
    max-width: 75rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1100px) {
  .sub-fv__left {
    max-width: 50%;
  }
}

.sub-fv__right {
  display: none;
}
@media screen and (min-width: 1100px) {
  .sub-fv__right {
    display: block;
  }
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  gap: 0.25rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.breadcrumbs__link {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 1100px) {
  .breadcrumbs__link {
    font-size: max(0.75rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .breadcrumbs__link {
    font-size: 0.75rem;
  }
}

.breadcrumbs__div {
  display: block;
  width: 1px;
  height: 12px;
  height: 0.75rem;
  background-color: #110E0A;
}

.sub-fv__sub-title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 1100px) {
  .sub-fv__sub-title {
    font-size: max(2.25rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .sub-fv__sub-title {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-fv__sub-title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .sub-fv__sub-title {
    font-size: max(3rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .sub-fv__sub-title {
    font-size: 3rem;
  }
}

.sub-fv__sub-title span {
  color: #85BEAF;
  letter-spacing: 0.04em;
}

.sub-fv__title {
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .sub-fv__title {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .sub-fv__title {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .sub-fv__title {
    font-size: 1.125rem;
  }
}

.sub-fv__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.2em;
  text-align: right;
}
@media screen and (min-width: 1100px) {
  .sub-fv__text {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .sub-fv__text {
    font-size: 1.125rem;
  }
}

.underline {
  width: 100%;
  height: 16px;
  height: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}

.underline__left {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 43.5897435897%;
}

.underline__left::before {
  content: "";
  display: block;
  background-color: #000;
  height: 2px;
  height: 0.125rem;
  border-radius: 0.0625rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.underline__left::after {
  content: "";
  display: block;
  background-color: #000;
  height: 2px;
  height: 0.125rem;
  border-radius: 0.0625rem;
  width: 11.7647058824%;
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

.underline__right {
  display: block;
  background-color: #000;
  height: 2px;
  height: 0.125rem;
  border-radius: 0.0625rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* must
--------------------------------------------*/
.contact-form__table-head-span[data-must=true]::after {
  content: "*";
  color: #BE2121;
  margin-left: 0px;
  margin-left: 0rem;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 1100px) {
  .contact-form__table-head-span[data-must=true]::after {
    font-size: max(0.9375rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .contact-form__table-head-span[data-must=true]::after {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-form__table-head-span[data-must=true]::after {
    margin-left: 0rem;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .contact-form__table-head-span[data-must=true]::after {
    font-size: max(0.875rem, 14px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .contact-form__table-head-span[data-must=true]::after {
    font-size: 0.875rem;
  }
}

.mw_wp_form_confirm .contact-form__table-head-span[data-must=true]::after {
  content: none;
}

/* mw-form
--------------------------------------------*/
.mw_wp_form .contact-form .error {
  display: none;
  color: #f48787;
}

.error + .contact-form__input,
.error + .contact-form__select {
  background-color: #e8cbcb;
}

.error + .contact-form__table-head-span::after {
  content: "※必須項目です";
}

/* contact-form
--------------------------------------------*/
.contact-form__inner {
  max-width: 900px;
  max-width: 56.25rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/* contact-form__table
--------------------------------------------*/
.contact-form__table {
  display: block;
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .contact-form__table {
    margin-bottom: 3.125rem;
  }
}

.mw_wp_form_confirm .contact-form__table {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .mw_wp_form_confirm .contact-form__table {
    margin-bottom: 1.875rem;
  }
}

.contact-form__table-tbody {
  display: block;
  width: 100%;
}

.contact-form__table-row {
  display: block;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .contact-form__table-row {
    margin-bottom: 1.25rem;
  }
}

.mw_wp_form_confirm .contact-form__table-row {
  padding-top: 7px;
  padding-top: 0.4375rem;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
  border-bottom: 0.5px solid #d1d1d1;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .mw_wp_form_confirm .contact-form__table-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0.6875rem;
    padding-bottom: 0.6875rem;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.contact-form__table-row:last-child {
  margin-bottom: 0;
}

.mw_wp_form_input .contact-form__table-head-span--confirm {
  display: none;
}

.mw_wp_form_confirm .contact-form__table-head-span--input {
  display: none;
}

.contact-form__table-head,
.contact-form__table-body {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .contact-form__table-head,
.contact-form__table-body {
    width: auto;
  }
}

.contact-form__table-head {
  display: block;
  margin-bottom: 1px;
  margin-bottom: 0.0625rem;
  font-weight: 400;
  padding-left: 0px;
  padding-left: 0rem;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 1100px) {
  .contact-form__table-head {
    font-size: max(0.9375rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .contact-form__table-head {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-form__table-head {
    padding-left: 0rem;
    margin-bottom: 0.0625rem;
  }
}

.mw_wp_form_confirm .contact-form__table-head {
  margin-bottom: 1px;
  margin-bottom: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .mw_wp_form_confirm .contact-form__table-head {
    width: 10.8125rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.contact-form__table-head-span {
  display: inline-block;
}

.contact-form__table-body {
  display: block;
}
@media screen and (min-width: 768px) {
  .contact-form__table-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.contact-form__table-body--error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.contact-form__table-body--error .error {
  display: block !important;
}

.contact-form__input {
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-top: 11px;
  padding-top: 0.6875rem;
  padding-bottom: 11px;
  padding-bottom: 0.6875rem;
  background-color: #EDEDED;
  color: #000;
  width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 1100px) {
  .contact-form__input {
    font-size: max(0.9375rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .contact-form__input {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-form__input {
    padding-right: 1.6875rem;
    padding-left: 1.6875rem;
    padding-top: 0.53125rem;
    padding-bottom: 0.53125rem;
  }
}

.contact-form__input::-webkit-input-placeholder {
  color: #AFAFAF;
}

.contact-form__input::-moz-placeholder {
  color: #AFAFAF;
}

.contact-form__input::-ms-input-placeholder {
  color: #AFAFAF;
}

.contact-form__input::placeholder {
  color: #AFAFAF;
}

.contact-form__select {
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-top: 11px;
  padding-top: 0.6875rem;
  padding-bottom: 11px;
  padding-bottom: 0.6875rem;
  background-color: #EDEDED;
  color: #000;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 1100px) {
  .contact-form__select {
    font-size: max(0.9375rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .contact-form__select {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-form__select {
    padding-right: 1.6875rem;
    padding-left: 1.6875rem;
    padding-top: 0.53125rem;
    padding-bottom: 0.53125rem;
  }
}

.contact-form__textarea {
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-top: 8.5px;
  padding-top: 0.53125rem;
  padding-bottom: 8.5px;
  padding-bottom: 0.53125rem;
  background-color: #EDEDED;
  color: #000;
  width: 100%;
  height: 240px;
  height: 15rem;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 1100px) {
  .contact-form__textarea {
    font-size: max(0.9375rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .contact-form__textarea {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-form__textarea {
    padding-right: 1.6875rem;
    padding-left: 1.6875rem;
    padding-top: 0.53125rem;
    padding-bottom: 0.53125rem;
  }
}

.contact-form__textarea::-webkit-input-placeholder {
  color: #AFAFAF;
}

.contact-form__textarea::-moz-placeholder {
  color: #AFAFAF;
}

.contact-form__textarea::-ms-input-placeholder {
  color: #AFAFAF;
}

.contact-form__textarea::placeholder {
  color: #AFAFAF;
}

.contact-form__note {
  margin-inline: auto;
  max-inline-size: -webkit-max-content;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  line-height: 1.6666666667;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  display: none;
}
@media screen and (min-width: 768px) {
  .contact-form__note {
    margin-bottom: 1.5rem;
  }
}

.contact-form__note-link {
  color: #2593f3;
  opacity: 1;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
@media (hover: hover) {
  .contact-form__note-link:hover {
    opacity: 0.65;
  }
}
@media (hover: none) {
  .contact-form__note-link:active {
    opacity: 0.65;
  }
}

.page-confirm .contact-form__note {
  display: block;
}

.contact-form__back-btn {
  color: #AFAFAF;
  text-align: center;
  margin-top: 21px;
  margin-top: 1.3125rem;
  opacity: 1;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
@media (hover: hover) {
  .contact-form__back-btn:hover {
    opacity: 0.65;
  }
}
@media (hover: none) {
  .contact-form__back-btn:active {
    opacity: 0.65;
  }
}

/* contact-form__apply-btn
--------------------------------------------*/
.contact-form__apply-btn-container {
  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;
}

.contact-form__apply-btn {
  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;
  max-width: 350px;
  max-width: 21.875rem;
  width: 100%;
  min-height: 50px;
  min-height: 3.125rem;
  background-color: #E37F1A;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .contact-form__apply-btn {
    max-width: 350px;
    min-height: 50px;
    border-radius: 25px;
  }
}

.contact-form__table-row--address .contact-form__table-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact-form__table-row--address .contact-form__table-body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 0.625rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    display: block;
    font-size: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact-form__table-row--address .contact-form__input {
    margin-bottom: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .contact-form__table-row--address .contact-form__input:nth-of-type(2) {
    margin-right: 1.25rem;
  }
}

.contact-form__table-row--address .contact-form__input:last-child {
  margin-bottom: 0;
}

.p-country-name {
  display: none;
}

.contact-form__table-row--radio .contact-form__table-body,
.contact-form__table-row--checkbox .contact-form__table-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1.4375rem;
     -moz-column-gap: 1.4375rem;
          column-gap: 1.4375rem;
  row-gap: 8px;
  row-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .contact-form__table-row--radio .contact-form__table-body,
.contact-form__table-row--checkbox .contact-form__table-body {
    -webkit-column-gap: 1.125rem;
       -moz-column-gap: 1.125rem;
            column-gap: 1.125rem;
    row-gap: 0.625rem;
  }
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.mwform-radio-field,
.mwform-checkbox-field {
  display: inline-block;
}

.mwform-radio-field:last-of-type,
.mwform-checkbox-field:last-of-type {
  margin-right: 0;
}

.mwform-radio-field-text,
.mwform-checkbox-field-text {
  position: relative;
  padding-left: 28px;
  padding-left: 1.75rem;
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 1100px) {
  .mwform-radio-field-text,
.mwform-checkbox-field-text {
    font-size: max(0.9375rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .mwform-radio-field-text,
.mwform-checkbox-field-text {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .mwform-radio-field-text,
.mwform-checkbox-field-text {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
}

.mwform-radio-field-text::before,
.mwform-checkbox-field-text::before {
  content: "";
  position: absolute;
  top: 2.5px;
  top: 0.15625rem;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  border: 0.5px solid #AFAFAF;
  border-radius: 50%;
  left: 0;
}
.contact-form__input--radio:checked + .mwform-radio-field-text,
.contact-form__input--checkbox:checked + .mwform-checkbox-field-text {
  pointer-events: none;
}

.contact-form__input--radio:checked + .mwform-radio-field-text::before,
.contact-form__input--checkbox:checked + .mwform-checkbox-field-text::before {
  background: radial-gradient(#E37F1A 0 0.30625rem, transparent 0.34375rem 100%);
}

.contact-form__table-row--radio .contact-form__table-body,
.contact-form__table-row--checkbox .contact-form__table-body {
  padding-left: 0px;
  padding-left: 0rem;
}
@media screen and (min-width: 768px) {
  .contact-form__table-row--radio .contact-form__table-body,
.contact-form__table-row--checkbox .contact-form__table-body {
    padding-left: 0rem;
  }
}

.mw_wp_form_confirm .contact-form__table-row--radio .contact-form__table-body,
.mw_wp_form_confirm .contact-form__table-row--checkbox .contact-form__table-body {
  padding-left: 0;
}

input[name=occupation-apply] {
  max-width: 400px;
  max-width: 25rem;
}

.contact-form__select-wrapper--birth-year {
  max-width: 150px;
  max-width: 9.375rem;
}

.contact-form__select-wrapper--residence {
  max-width: 200px;
  max-width: 12.5rem;
}

input[name=postal-code] {
  max-width: 230px;
  max-width: 14.375rem;
}

input[name=region] {
  max-width: 200px;
  max-width: 12.5rem;
}

input[name=locality] {
  max-width: 200px;
  max-width: 12.5rem;
}

input[name=extended-address] {
  max-width: 420px;
  max-width: 26.25rem;
}

.contact-form__select-wrapper--your-occupation {
  max-width: 400px;
  max-width: 25rem;
}

.contact-form__select-wrapper--office-location {
  max-width: 400px;
  max-width: 25rem;
}

.archive-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100svh;
}

.archive-news__contents {
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .archive-news__contents {
    padding-bottom: 4.375rem;
  }
}

.archive-news__posts {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .archive-news__posts {
    max-width: 50rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 3.125rem;
  }
}

.archive-news__posts-line {
  display: block;
  background-color: #000;
  height: 1px;
}

.archive-news__contents-footer {
  height: 44px;
  height: 2.75rem;
}

.page-404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.page-404__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-404__text {
  text-align: center;
}

.page-company .sub-fv__sub-title span {
  color: #E1BB44;
}

.page-company__contents {
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-company__contents {
    padding-bottom: 3.125rem;
  }
}

.page-company__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
  gap: 2.1875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-company__header {
    gap: 2.1875rem;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1100px) {
  .page-company__header {
    gap: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.page-company__header-img {
  width: 300px;
  width: 18.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .page-company__header-img {
    width: 24.375rem;
  }
}
@media screen and (min-width: 1100px) {
  .page-company__header-img {
    margin-right: 0;
    margin-left: 0;
  }
}

.page-company__header-text {
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 2;
}
@media screen and (min-width: 600px) {
  .page-company__header-text {
    text-align: center;
  }
}
@media screen and (min-width: 1100px) {
  .page-company__header-text {
    width: 20.625rem;
    font-size: 1.125rem;
    line-height: 1.6666666667;
    text-align: left;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .page-company__header-text {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1600px) {
  .page-company__header-text {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .page-company__body-inner {
    max-width: 50rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.page-company .table__body a {
  font-weight: 700;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.page-company .table__body a:hover {
  opacity: 0.7;
}

.page-company .table__row {
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  position: relative;
}
@media screen and (min-width: 1100px) {
  .page-company .table__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.page-company .table__row:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #E1BB44), color-stop(19%, #E1BB44), color-stop(19%, #C8C8C8), to(#C8C8C8));
  background: linear-gradient(to right, #E1BB44 0, #E1BB44 19%, #C8C8C8 19%, #C8C8C8 100%);
}

.page-company .table__head {
  letter-spacing: 0.2em;
  line-height: 1.6666666667;
}
@media screen and (min-width: 1100px) {
  .page-company .table__head {
    width: 9.375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.page-company .table__body,
.page-company .table__text {
  line-height: 1.6666666667;
}

.page-company .table iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 390/240;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-company .table iframe {
    width: 75.3846153846%;
  }
}
@media screen and (min-width: 1100px) {
  .page-company .table iframe {
    aspect-ratio: 490/240;
  }
}

@media screen and (min-width: 768px) {
  .page-company .table__row--access {
    padding-bottom: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .page-company .table__row--history {
    display: block;
  }
}

.page-company .table__row--history .table__head {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.page-company__slider-slide {
  width: 230px !important;
  width: 14.375rem !important;
}

.page-company__slider-slide-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #E1BB44;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1100px) {
  .page-company__slider-slide-title {
    font-size: max(1.25rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .page-company__slider-slide-title {
    font-size: 1.25rem;
  }
}

.page-company__slider-scrollbar {
  position: relative;
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.page-company__slider-scrollbar::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #C8C8C8;
  z-index: -1;
}

.page-company__slider-btn {
  background-image: url("../images/company/slider-btn@2x.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: auto;
  aspect-ratio: 67/30;
  cursor: -webkit-grab;
  cursor: grab;
}

.page-complete .sub-fv__sub-title span {
  color: #F1BB8A;
}

.page-complete__contents {
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}

.page-complete__btn {
  border: none;
  background-color: #E1BB44;
}

.page-complete__btn:hover {
  background-color: #E1BB44;
  opacity: 0.7;
}

.page-complete__btn * {
  color: #fff;
}

.page-contact .sub-fv__sub-title span {
  color: #F1BB8A;
}

.page-contact__contents {
  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;
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
  gap: 45px;
  gap: 2.8125rem;
}
@media screen and (min-width: 1100px) {
  .page-contact__contents {
    gap: 4.8125rem;
  }
}

@media screen and (min-width: 1100px) {
  .page-contact__head {
    width: 24.375rem;
  }
}

@media screen and (min-width: 768px) {
  .page-contact__body {
    max-width: 600px;
    width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .page-contact__body {
    max-width: none;
    width: 28.125rem;
  }
}

.page-contact__body-text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 1100px) {
  .page-contact__body-text {
    font-size: max(0.875rem, 14px);
  }
}
@media screen and (min-width: 1600px) {
  .page-contact__body-text {
    font-size: 0.875rem;
  }
}

.page-contact__body-text a {
  color: #31A4DD;
}

.grecaptcha-badge {
  visibility: hidden;
}

.page-human-resource__contents {
  padding-top: 7px;
  padding-top: 0.4375rem;
}

.page-policy .sub-fv__sub-title span {
  color: #85BEAF;
}

.page-policy__contents {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-policy__contents {
    padding-bottom: 4.375rem;
  }
}

.page-policy__text {
  max-width: 1000px;
  max-width: 62.5rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.page-policy__text span {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.2em;
}

.page-top__contents {
  position: relative;
  z-index: 1;
}

.page-top__body {
  overflow: hidden;
}

.single-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.single-news__contents {
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.single-news__contents-inner {
  max-width: 800px;
  max-width: 50rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.single-news__contents-footer {
  margin-top: 42px;
  margin-top: 2.625rem;
}

.single-our-job__contents {
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  overflow: hidden;
}

@media screen and (min-width: 1100px) {
  .single-our-job--ceo .job-holiday__body-inner {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}

.single-our-job--ceo .job-schedule {
  background-color: #F0D173 !important;
}

.single-our-job--ceo .job-fv__icon-img {
  width: 241px;
  width: 15.0625rem;
}
@media screen and (min-width: 768px) {
  .single-our-job--ceo .job-fv__icon-img {
    width: 61.4678899083%;
  }
}

.single-our-job--ceo .job-holiday__img {
  width: 217px;
  width: 13.5625rem;
}

@media screen and (min-width: 768px) {
  .single-our-job--ceo .job-holiday__item--green {
    top: 46%;
    left: 9%;
  }
}
@media screen and (min-width: 1100px) {
  .single-our-job--ceo .job-holiday__item--green {
    position: relative;
    top: auto;
    left: auto;
  }
}

@media screen and (min-width: 768px) {
  .single-our-job--ceo .job-holiday__item--yellow {
    top: 1%;
    right: 12%;
  }
}
@media screen and (min-width: 1100px) {
  .single-our-job--ceo .job-holiday__item--yellow {
    top: auto;
    right: auto;
    left: 14%;
    bottom: 32%;
  }
}

@media screen and (min-width: 768px) {
  .single-our-job--ceo .job-holiday__item--orange {
    bottom: 7%;
    right: 13%;
  }
}
@media screen and (min-width: 1100px) {
  .single-our-job--ceo .job-holiday__item--orange {
    bottom: auto;
    top: 52%;
    right: 18%;
  }
}

@media screen and (min-width: 1100px) {
  .single-our-job--sales .job-holiday {
    padding-bottom: 0;
  }
}

.single-our-job--sales .job-schedule {
  background-color: #9AD1C2 !important;
}

@media screen and (min-width: 1100px) {
  .single-our-job--sales .job-holiday__body-inner {
    padding-top: 13.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .single-our-job--sales .job-holiday__item--yellow {
    top: 7%;
    right: 9%;
  }
}
@media screen and (min-width: 1100px) {
  .single-our-job--sales .job-holiday__item--yellow {
    top: auto;
    right: auto;
    left: 13%;
    bottom: 31%;
  }
}

@media screen and (min-width: 768px) {
  .single-our-job--sales .job-holiday__item--green {
    top: 1%;
    left: 14%;
  }
}
@media screen and (min-width: 1100px) {
  .single-our-job--sales .job-holiday__item--green {
    left: auto;
    top: 4%;
    right: 33%;
    margin-right: 0;
    margin-left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .single-our-job--sales .job-holiday__item--orange {
    bottom: -3%;
    left: 24%;
  }
}
@media screen and (min-width: 1100px) {
  .single-our-job--sales .job-holiday__item--orange {
    bottom: auto;
    left: auto;
    top: 62%;
    right: 13%;
  }
}

@media screen and (min-width: 1100px) {
  .single-our-job--creative .job-holiday__body-inner {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}

.single-our-job--creative .job-holiday__img {
  margin-top: 143px;
  margin-top: 8.9375rem;
}
@media screen and (min-width: 768px) {
  .single-our-job--creative .job-holiday__img {
    margin-top: 0;
  }
}

.single-our-job--creative .job-holiday__item--green {
  position: absolute;
  top: 245px;
  top: 15.3125rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .single-our-job--creative .job-holiday__item--green {
    top: 16%;
    left: 20%;
  }
}
@media screen and (min-width: 1100px) {
  .single-our-job--creative .job-holiday__item--green {
    position: relative;
    top: auto;
    left: auto;
  }
}

@media screen and (min-width: 768px) {
  .single-our-job--creative .job-holiday__item--yellow {
    top: -4%;
    right: 12%;
  }
}
@media screen and (min-width: 1100px) {
  .single-our-job--creative .job-holiday__item--yellow {
    top: auto;
    right: auto;
    left: 14%;
    bottom: 28%;
  }
}

@media screen and (min-width: 768px) {
  .single-our-job--creative .job-holiday__item--orange {
    top: auto;
    bottom: -4%;
    right: 16%;
  }
}
@media screen and (min-width: 1100px) {
  .single-our-job--creative .job-holiday__item--orange {
    bottom: auto;
    top: 28%;
    right: 12%;
  }
}
/*# sourceMappingURL=styles.css.map */
