@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #60574b;
  background-color: #f8f6ea;
  font-weight: 500;
}

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

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

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2139605463vw;
  }
}
@media (min-width: 1318px) {
  html {
    font-size: 16px;
  }
}

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

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

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

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

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

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.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 */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
img {
  max-width: 100%;
  display: block;
  width: 100%;
  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.05" /><feFuncG type="linear" slope="1.05" /><feFuncB type="linear" slope="1.05" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}

/* 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;
}

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

.current-item {
  color: #eb9500;
}

.button {
  display: inline-block;
  padding: 17px 30px;
  padding: 1.0625rem 1.875rem;
  color: #fff;
  background-color: #eb9500;
  border-radius: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.21em;
  position: relative;
  min-width: 280px;
  min-width: 17.5rem;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 520px) {
  .button {
    letter-spacing: 0.09em;
    padding: 1.0625rem 2.5625rem;
  }
}

.button::after {
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.button:hover::after {
  border-top: solid 2px #eb9500;
  border-right: solid 2px #eb9500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.button:hover {
  background-color: #fff;
  color: #eb9500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

body.active {
  height: 100%;
  overflow: hidden;
}

.drawer__icon {
  display: block;
  position: fixed;
  top: 34px;
  right: 22px;
  right: 1.375rem;
  width: 27px;
  width: 1.6875rem;
  height: 2px;
  height: 0.125rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  z-index: 1000;
  cursor: pointer;
}
@media screen and (max-width: 520px) {
  .drawer__icon {
    top: 1.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .drawer__icon {
    top: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .drawer__icon {
    top: 42px;
    right: 29px;
  }
}
@media screen and (min-width: 1366px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon.is-open {
  z-index: 900;
}
.drawer__icon.is-open .drawer__icon-bar1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
  top: 0.4375rem;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer__icon.is-open .drawer__icon-bar2 {
  display: none;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer__icon.is-open .drawer__icon-bar3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 7px;
  top: 0.4375rem;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer__icon-bars {
  position: relative;
  width: 31px;
  width: 1.9375rem;
  height: 13px;
  height: 0.8125rem;
  cursor: pointer;
}
.drawer__icon-bar1,
.drawer__icon-bar2,
.drawer__icon-bar3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  background: #eb9500;
}

.drawer__icon-bar1 {
  top: 0;
  border-radius: 0.9375rem;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer__icon-bar2 {
  top: 9px;
  top: 0.5625rem;
  border-radius: 0.9375rem;
  width: 100%;
  -webkit-transition: -webkit-transform 0.8s ease 0s;
  transition: -webkit-transform 0.8s ease 0s;
  transition: transform 0.8s ease 0s;
  transition: transform 0.8s ease 0s, -webkit-transform 0.8s ease 0s;
}

.drawer__icon-bar3 {
  top: 19px;
  top: 1.1875rem;
  border-radius: 0.9375rem;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer__content {
  overflow: scroll;
  color: 900;
  position: fixed;
  top: 0;
  right: 0;
  background: #f8f6ea;
  height: 100%;
  width: 300px;
  width: 18.75rem;
  z-index: 800;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  width: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .drawer__content {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .drawer__content {
    width: 30%;
    padding-top: 7.125rem;
  }
}
@media screen and (max-width: 520px) {
  .drawer__content {
    margin-top: 80px;
  }
}

.drawer__content.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer__content-items {
  color: 900;
  line-height: 1.57;
  position: relative;
  list-style: none;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
.drawer__content-items a {
  position: relative;
}
.drawer__content-items a .drawer__content-items::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: 900;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.drawer__content-item {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  position: relative;
  text-align: left;
  padding-left: 65px;
}

.drawer__nav-link--cta.drawer__content-item {
  background: -webkit-gradient(linear, left top, right top, from(#9fcd7b), color-stop(#e2e41c), to(#e0972c));
  background: linear-gradient(to right, #9fcd7b, #e2e41c, #e0972c);
  color: #fff;
  text-shadow: 2px 2px 6px #e0972c;
  margin-top: 20px;
  margin-right: 5px;
  margin-right: 0.3125rem;
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.drawer__nav-link--cta.drawer__content-item::after {
  content: none;
}

.drawer__content-item a {
  display: block;
  padding: 17px 0;
  padding: 1.0625rem 0;
}

.drawer__content-item::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  height: 1.25rem;
  width: 20px;
  width: 1.25rem;
}

.drawer__content-item::after {
  content: "";
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 10px;
  height: 0.625rem;
  width: 10px;
  width: 0.625rem;
  content: "";
  border-top: solid 2px #eb9500;
  border-right: solid 2px #eb9500;
  position: absolute;
}

.drawer__content-item--orange.drawer__content-item {
  color: #eb9500;
  padding-left: 0;
  border: 2px solid #eb9500;
  margin: 0 5px;
  margin: 0 0.3125rem;
  position: relative;
}

.drawer__content-item--orange.drawer__content-item a {
  padding: 10px 0 10px 55px;
  padding: 0.625rem 0 0.625rem 3.4375rem;
}

.drawer__content-item--orange.drawer__content-item::after {
  content: none;
}

.drawer__content-item--orange.drawer__content-item::before {
  content: "";
  position: absolute;
  right: 40px;
  right: 2.5rem;
  left: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/logo_outlink.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 15px;
  height: 0.9375rem;
  width: 15px;
  width: 0.9375rem;
}

.header__mail-icon {
  display: inline-block;
  width: 50px;
  width: 3.125rem;
  padding-top: 8px;
  padding-top: 0.5rem;
}
.drawer__content-button {
  width: 280px;
  width: 17.5rem;
  padding: 8px 0;
  padding: 0.5rem 0;
  color: #fff;
  border: 3px solid #eb9500;
  background-color: #eb9500;
  font-size: 20px;
  font-size: 1.25rem;
  display: inline-block;
  border-radius: 30px;
  text-align: center;
  position: relative;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 520px) {
  .drawer__content-button {
    width: 18.75rem;
    margin-top: 0;
  }
}

.drawer__content-button::before {
  content: "";
  position: absolute;
  right: 9px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow-recruit.png);
  background-size: contain;
  height: 23px;
  height: 1.4375rem;
  width: 23px;
  width: 1.4375rem;
}

.drawer__content-button::after {
  content: "";
  position: absolute;
  left: 33px;
  left: 2.0625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_recruit.png);
  background-size: contain;
  height: 26px;
  height: 1.625rem;
  width: 26px;
  width: 1.625rem;
}

.flow-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flow-list__term {
  width: 15%;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.flow-list__description {
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
  width: 85%;
  position: relative;
}

.flow-list__description::before,
.flow-list__description::after {
  content: "";
  position: absolute;
  top: 3px;
  top: 0.1875rem;
}

.flow-list__description::before {
  left: 0;
  width: 1px;
  height: 100%;
  background: #333;
}

.flow-list__description::after {
  left: -3px;
  left: -0.1875rem;
  width: 7px;
  width: 0.4375rem;
  height: 7px;
  height: 0.4375rem;
  border-radius: 50%;
  background: #de8430;
}

.flow-list__month {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb9500;
}

.flow-list__text {
  margin-top: 5px;
  margin-top: 0.3125rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

.footer:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/common/bg_service-filter.png);
  height: 100%;
  width: 100%;
  z-index: -1;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 29px;
  padding-top: 1.8125rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 60px;
  padding-left: 3.75rem;
}
@media screen and (max-width: 520px) {
  .footer__inner {
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.5%;
    padding-top: 15.75rem;
    padding-left: 0;
  }
}

.footer__inner.inner {
  max-width: 1300px;
  padding-left: 60px;
  padding-left: 3.75rem;
}
@media screen and (max-width: 520px) {
  .footer__inner.inner {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}
.footer__left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__left {
    width: 27%;
  }
}

.footer__left p {
  margin-top: 45px;
  margin-top: 2.8125rem;
  letter-spacing: 0.17em;
}
@media screen and (max-width: 520px) {
  .footer__left p {
    margin-top: 1.9375rem;
    padding-left: 0.625rem;
    line-height: 1.8;
  }
}
@media screen and (min-width: 768px) {
  .footer__left p {
    font-size: 0.875rem;
    line-height: 1.9;
  }
}
@media screen and (min-width: 1024px) {
  .footer__left p {
    font-size: 1rem;
  }
}

.footer__tel-info {
  margin-top: 0 !important;
}

.footer__logo {
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 60%;
}
@media screen and (max-width: 520px) {
  .footer__logo {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 95%;
  }
}

.access__map-wrap {
  height: 400px;
  height: 25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 520px) {
  .access__map-wrap {
    height: 16rem;
  }
}
@media screen and (min-width: 768px) {
  .access__map-wrap {
    height: 15rem;
  }
}

.access__map {
  position: relative;
  overflow: hidden;
  height: inherit;
}

.access__map iframe {
  top: -63px;
  width: 100%;
  height: inherit;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .access__map iframe {
    width: inherit;
    height: inherit;
  }
}

.footer__nav {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    width: 75%;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 39px;
  margin-top: 2.4375rem;
  gap: 5%;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media screen and (max-width: 520px) {
  .footer__nav-list {
    gap: 0;
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 0.375rem;
    gap: 0;
  }
}

.footer__nav-itemWrap {
  width: 30%;
}

.footer__nav-itemWrap.left {
  width: 100%;
  margin-right: 0;
}
@media screen and (max-width: 520px) {
  .footer__nav-itemWrap.left {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .footer__nav-itemWrap.left {
    width: 34.4%;
    margin-right: 2.625rem;
  }
}

.footer__nav-itemWrap.middle {
  width: 86%;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .footer__nav-itemWrap.middle {
    width: 25.5%;
    margin-right: 3.4375rem;
  }
}
@media screen and (max-width: 520px) {
  .footer__nav-itemWrap.middle {
    margin-top: 0.4375rem;
  }
}

.footer__nav-itemWrap.right {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__nav-itemWrap.right {
    width: 32%;
  }
}

@media screen and (min-width: 768px) {
  .footer__nav-item:first-child {
    padding-left: 0.3125rem;
  }
}

.footer__nav-item a {
  letter-spacing: 0.06em;
}

.footer__nav-item:not(:first-child) {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 520px) {
  .footer__nav-item:not(:first-child) {
    margin-top: 0.125rem;
  }
}

.footer__nav-link {
  display: inline-block;
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  font-weight: 400;
}
@media screen and (max-width: 520px) {
  .footer__nav-link {
    padding-left: 1.6875rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__nav-link {
    margin-top: 0.4375rem;
  }
}

.footer__nav-link::after {
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-top: solid 2px #eb9500;
  border-top: solid 0.125rem #eb9500;
  border-right: solid 2px #eb9500;
  border-right: solid 0.125rem #eb9500;
  position: absolute;
  left: -16px;
  left: -1rem;
  top: 8px;
  top: 0.5rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 520px) {
  .footer__nav-link::after {
    left: 0.75rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.footer__button {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 520px) {
  .footer__button {
    margin-top: 2.625rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .footer__button {
    margin-top: 3.625rem;
    margin-left: -0.875rem;
  }
}

.footer__button-link {
  display: inline-block;
  color: #eb9500;
  background-color: #fff;
  border-radius: 30px;
  padding: 16px 40px;
  padding: 1rem 2.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.2em;
  border: 3px solid #eb9500;
  position: relative;
  font-weight: 700;
}

.footer__button-link::after {
  content: "";
  position: absolute;
  right: 25px;
  right: 1.5625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/logo_outlink.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 12px;
  height: 0.75rem;
  width: 12px;
  width: 0.75rem;
}

.footer__sub-link {
  margin-top: 7px;
  margin-top: 0.4375rem;
  display: inline-block;
  position: relative;
}

.footer__sub-link::after {
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 2px;
  height: 0.125rem;
  position: absolute;
  background-color: #eb9500;
  left: -21px;
  left: -1.3125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__sub-list {
  padding-left: 34px;
  padding-left: 2.125rem;
}

@media screen and (max-width: 520px) {
  .footer__sub-item {
    padding-left: 1.5rem;
    margin-top: 0.0625rem;
  }
}

.footer__sub-link {
  font-size: 15px;
  font-size: 0.9375rem;
}

.footer__copyright {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
  margin-top: 120px;
  margin-top: 7.5rem;
  font-weight: 400;
}
@media screen and (max-width: 520px) {
  .footer__copyright {
    margin-top: 1.75rem;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    line-height: 1.7;
  }
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 10.625rem;
  }
}

.footer__copyright span {
  letter-spacing: 0.16em;
}

.header {
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  width: 1366px;
  width: 85.375rem;
  margin: 0 auto;
  max-width: 100%;
  z-index: 900;
}
@media screen and (max-width: 520px) {
  .header {
    height: 82px;
    background-color: #fff;
  }
}
@media screen and (min-width: 1366px) {
  .header {
    display: block;
    top: 0;
    border-radius: 1.875rem;
  }
}

.active__header {
  background: 900;
  -webkit-transition: background 0.7s ease;
  transition: background 0.7s ease;
}

.header__inner {
  height: inherit;
  padding-left: 30px;
  padding-left: 1.875rem;
}
@media screen and (max-width: 520px) {
  .header__inner {
    padding-left: 1.25rem;
  }
}
@media screen and (min-width: 1366px) {
  .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 10px;
    padding-right: 5px;
  }
}

.header__logo {
  width: 180px;
  width: 11.25rem;
  height: inherit;
  padding-top: 11px;
  padding-top: 0.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 520px) {
  .header__logo {
    width: 12.125rem;
    padding-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .header__logo {
    padding-top: 2rem;
  }
}
@media screen and (min-width: 1366px) {
  .header__logo {
    width: 17.5rem;
    padding-top: 1.5rem;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1366px) {
  .header__nav {
    display: block;
    height: inherit;
    margin-left: 3.9375rem;
  }
}

.header__nav-list {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav-list {
    margin-left: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1366px) {
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__nav-item {
  height: inherit;
  position: relative;
}
.header__nav-item a {
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  padding: 0 12px;
  padding: 0 0.75rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  letter-spacing: 0;
  font-weight: 500;
}

.header__nav-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  bottom: -0.5625rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 3px;
  width: 41px;
  width: 2.5625rem;
  background: -webkit-gradient(linear, left top, right top, from(#dc890f), color-stop(50%, #dc890f), color-stop(50%, #449f37), to(#449f37));
  background: linear-gradient(90deg, #dc890f 0%, #dc890f 50%, #449f37 50%, #449f37 100%);
}

.header__nav-item.header__nav-link--cta {
  width: 283px;
  width: 17.6875rem;
  background: -webkit-gradient(linear, left top, right top, from(#9fcd7b), color-stop(#e2e41c), to(#e0972c));
  background: linear-gradient(to right, #9fcd7b, #e2e41c, #e0972c);
  padding: 12px 16px 12px 0;
  padding: 0.75rem 1rem 0.75rem 0;
  border-radius: 39px;
  margin-left: 29px;
  margin-left: 1.8125rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="3" /><feOffset dx="3" dy="3" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.3)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, .3));
          filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, .3));
}
@media screen and (min-width: 1366px) {
  .header__nav-item.header__nav-link--cta {
    width: 13.75rem;
  }
}

.header__nav-item.header__nav-link--cta a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  text-shadow: 2px 2px 6px #e0972c;
}
@media screen and (min-width: 1366px) {
  .header__nav-item.header__nav-link--cta a {
    font-size: 1.0625rem;
  }
}

.header__nav-item.header__nav-link--cta::after {
  content: none;
}

.header__nav-item.header__nav-link--outLink {
  border: 1px solid #dc890f;
  color: #dc890f;
  position: relative;
  height: 43px;
  height: 2.6875rem;
}

.header__nav-item.header__nav-link--outLink::before {
  content: "";
  position: absolute;
  right: 10px;
  right: 0.625rem;
  top: 54%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/logo_outlink.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 12px;
  height: 0.75rem;
  width: 12px;
  width: 0.75rem;
}

.header__nav-item.header__nav-link--outLink::after {
  content: none;
}

.header__nav-item.header__nav-link--outLink a {
  padding: 0 33px 0 19px;
  padding: 0 2.0625rem 0 1.1875rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.header__nav-item.header__nav-link--outLink a::after {
  content: none;
}

@media screen and (min-width: 1366px) {
  .header.subpage {
    background-color: rgba(248, 246, 234, .8);
  }
}

@media screen and (min-width: 1366px) {
  .header.subpage .header__logo {
    width: 13.5rem !important;
    padding-top: 0;
  }
}

.heading-main {
  font-size: clamp(24px, 20.601px + 0.9061488673vw, 38px);
  font-size: clamp(1.5rem, 1.2876213592rem + 0.9061488673vw, 2.375rem);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}

.heading-main::after {
  content: "";
  position: absolute;
  right: 0;
  background-color: #eb9500;
  width: 120%;
  top: 1em;
  height: 5px;
  height: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .heading-main::after {
    top: 0.7em;
    height: 0.625rem;
  }
}

.heading-main span {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Rubik", sans-serif;
  color: #eb9500;
  display: block;
  font-weight: 400;
  margin-bottom: 4px;
}

.heading-primary {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: clamp(21px, 18.815px + 0.5825242718vw, 30px);
  font-size: clamp(1.3125rem, 1.1759708738rem + 0.5825242718vw, 1.875rem);
}

.heading-primary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(130deg, transparent, transparent 7px, rgb(255, 239, 1) 7px, rgb(255, 239, 1) 11px);
  height: 5px;
  height: 0.3125rem;
  width: 100%;
}

.inner {
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1368px;
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .inner {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1366px) {
  .inner {
    max-width: 1368px;
  }
}

.archive-staff__sub-title {
  font-size: clamp(18px, 16.543px + 0.3883495146vw, 24px);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
}

.job-category__wrap {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .job-category__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.job-category__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
  row-gap: 30px;
  row-gap: 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .job-category__list {
    width: 80%;
    margin-top: 0;
  }
}

.archive-staff__sub-title {
  width: 100%;
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .archive-staff__sub-title {
    width: 23%;
    padding-top: 1em;
  }
}

.job-category__item {
  background-color: #fff;
  border: 2px solid #ecdf00;
  border-radius: 0.625rem;
  font-size: clamp(18px, 16.543px + 0.3883495146vw, 24px);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  position: relative;
}

.job-category__item::after {
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-top: solid 2px #ecdf00;
  border-right: solid 2px #ecdf00;
  position: absolute;
  right: 14px;
  right: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 520px) {
  .job-category__item::after {
    right: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .job-category__item::after {
    right: 1.25rem;
  }
}

.job-category__item a {
  padding: 8px 30px;
  padding: 0.5rem 1.875rem;
  display: inline-block;
}
@media screen and (max-width: 520px) {
  .job-category__item a {
    padding: 0.3125rem 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .job-category__item a {
    padding: 0.9375rem 3.75rem;
  }
}

.layout-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.layout-fv {
  margin-top: 82px;
  margin-top: 5.125rem;
}
@media screen and (min-width: 768px) {
  .layout-fv {
    margin-top: 10rem;
  }
}

.layout-charm {
  margin-top: 110px;
  margin-top: 6.875rem;
}
@media screen and (min-width: 768px) {
  .layout-charm {
    margin-top: 11.0625rem;
  }
}

.layout-recruitment {
  margin-top: 52px;
  margin-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .layout-recruitment {
    margin-top: 13.3125rem;
  }
}

.layout-department {
  margin-top: 92px;
  margin-top: 5.75rem;
}
@media screen and (min-width: 768px) {
  .layout-department {
    margin-top: 14.8125rem;
  }
}

.layout-voice {
  margin-top: 102px;
  margin-top: 6.375rem;
}
@media screen and (min-width: 768px) {
  .layout-voice {
    margin-top: 6.9375rem;
  }
}

.layout-numbers {
  margin-top: 133px;
  margin-top: 8.3125rem;
}
@media screen and (min-width: 768px) {
  .layout-numbers {
    margin-top: 7.375rem;
  }
}

.layout-banner {
  margin-top: 203px;
  margin-top: 12.6875rem;
}
@media screen and (min-width: 768px) {
  .layout-banner {
    margin-top: 6.1875rem;
  }
}

.layout-section {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .layout-section {
    margin-top: 7.5rem;
  }
}

.layout-title {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .layout-title {
    margin-top: 3.125rem;
  }
}

.layout-text {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .layout-text {
    margin-top: 2.5rem;
  }
}

.layout-content {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .layout-content {
    margin-top: 5rem;
  }
}

.layout-button {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .layout-button {
    margin-top: 3.75rem;
  }
}

.layout-footer {
  margin-top: 108px;
  margin-top: 6.75rem;
}
@media screen and (min-width: 768px) {
  .layout-footer {
    margin-top: 0;
  }
}

.loading {
  width: 100%;
  height: 100vh;
  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;
  background-color: #fff;
}

.loading__img {
  margin: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  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: prem(300);
  width: prem(300);
  opacity: 0;
  -webkit-animation: loading 1s forwards ease-in-out;
          animation: loading 1s forwards ease-in-out;
}

.loading__img img {
  width: 40%;
  height: 40%;
  -o-object-fit: contain;
     object-fit: contain;
}

.loading-text {
  font-size: 24px;
  opacity: 0; /* 初期状態は非表示 */
  -webkit-animation: loading 1s ease-in-out infinite;
          animation: loading 1s ease-in-out infinite;
}

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

.media__text {
  width: 100%;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .media__text {
    line-height: 1.7;
    width: 50%;
  }
}

.media__img {
  width: 100%;
  border-radius: 3.125rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .media__img {
    width: 50%;
  }
}

.mv {
  position: relative;
  margin-top: 127px;
  margin-top: 7.9375rem;
  background-image: url(../images/common/bg_mv.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: right;
  height: 400px;
  height: 25rem;
  z-index: -10;
  height: 122px;
  height: 7.625rem;
}
@media screen and (min-width: 768px) {
  .mv {
    height: 25rem;
  }
}

.mv__sec-title {
  position: absolute;
  left: 20%;
  top: 33%;
  font-size: clamp(26px, 23.087px + 0.7766990291vw, 38px);
  font-size: clamp(1.625rem, 1.442961165rem + 0.7766990291vw, 2.375rem);
  letter-spacing: 0.05em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
  left: 9%;
  top: 2%;
}
@media screen and (min-width: 768px) {
  .mv__sec-title {
    left: 20%;
    top: 33%;
  }
}

.mv__sec-title::before {
  content: "";
  position: absolute;
  left: -36%;
  top: 13%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/common/icon_flower.png), url(../images/common/icon_flower.png);
  background-repeat: no-repeat, no-repeat; /* それぞれの画像で繰り返しを無効化 */
  background-size: 22.0625rem, 12.5rem; /* 画像の大きさをそれぞれ指定 */
  background-position: left 48% top 58%, right -1% bottom 6%; /* 画像の位置を指定 */
  z-index: -1;
  left: 10%;
  top: 0%;
  width: 657px;
  width: 41.0625rem;
  height: 241px;
  height: 15.0625rem;
  background-size: 5.0625rem, 4.5rem; /* 画像の大きさをそれぞれ指定 */
  background-position: left 48% top 58%, right 29% bottom 7%;
}
@media screen and (max-width: 520px) {
  .mv__sec-title::before {
    width: 12.5rem;
    background-position: left 48% top 58%, right -13% bottom 7%;
  }
}
@media screen and (min-width: 768px) {
  .mv__sec-title::before {
    width: 64.0625rem;
    height: 32.0625rem;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-image: url(../images/common/icon_flower.png), url(../images/common/icon_flower.png);
    background-repeat: no-repeat, no-repeat; /* それぞれの画像で繰り返しを無効化 */
    background-size: 22.0625rem, 12.5rem; /* 画像の大きさをそれぞれ指定 */
    background-position: left 24% top 58%, right 14% bottom 6%; /* 画像の位置を指定 */
  }
}

.mv__sec-title::after {
  content: "";
  position: absolute;
  left: 0%;
  bottom: -29px;
  bottom: -1.8125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 5px;
  height: 0.3125rem;
  width: 80px;
  width: 5rem;
  background: -webkit-gradient(linear, left top, right top, from(#dc890f), color-stop(50%, #dc890f), color-stop(50%, #449f37), to(#449f37));
  background: linear-gradient(90deg, #dc890f 0%, #dc890f 50%, #449f37 50%, #449f37 100%);
}
@media screen and (max-width: 520px) {
  .mv__sec-title::after {
    height: 0.25rem;
    width: 3.5rem;
    bottom: -1.125rem;
  }
}

.mv__sec-title .en {
  text-align: center;
  color: #eb9500;
  font-size: clamp(14px, 13.029px + 0.2588996764vw, 18px);
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  display: block;
  letter-spacing: 0.22em;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
}

.mv__en-title {
  content: "";
  position: absolute;
  right: 12%;
  bottom: -2%;
  line-height: 1.2;
  font-size: clamp(32px, 19.378px + 3.3656957929vw, 84px);
  font-size: clamp(2rem, 1.2111650485rem + 3.3656957929vw, 5.25rem);
  font-family: "Rubik", sans-serif;
  color: rgba(236, 223, 0, .5);
  line-height: 1;
  right: 1%;
  bottom: 0%;
}
@media screen and (min-width: 768px) {
  .mv__en-title {
    right: 12%;
    bottom: -2%;
  }
}

.no-image {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.recruit-table__list {
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #000;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .recruit-table__list {
    padding-bottom: 1.5625rem;
    font-size: 1rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.recruit-table__list:first-child {
  background-color: #fbeacc;
  padding-top: 15px;
  padding-top: 0.9375rem;
  border-bottom: none;
  color: #eb9500;
}
@media screen and (min-width: 768px) {
  .recruit-table__list:first-child {
    padding-top: 1.5625rem;
  }
}

.recruit-table__list + .recruit-table__list {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .recruit-table__list + .recruit-table__list {
    margin-top: 1.5625rem;
  }
}

.recruit-table__term {
  max-width: 120px;
  max-width: 7.5rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .recruit-table__term {
    max-width: 11.25rem;
  }
}

.recruit-table__description {
  line-height: 1.6;
}

.sec-title {
  position: relative;
  font-size: clamp(26px, 23.087px + 0.7766990291vw, 38px);
  font-size: clamp(1.625rem, 1.442961165rem + 0.7766990291vw, 2.375rem);
  letter-spacing: 0.05em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.sec-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -29px;
  bottom: -1.8125rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 5px;
  height: 0.3125rem;
  width: 80px;
  width: 5rem;
  background: -webkit-gradient(linear, left top, right top, from(#dc890f), color-stop(50%, #dc890f), color-stop(50%, #449f37), to(#449f37));
  background: linear-gradient(90deg, #dc890f 0%, #dc890f 50%, #449f37 50%, #449f37 100%);
}
@media screen and (max-width: 520px) {
  .sec-title::after {
    height: 0.25rem;
    width: 3.5rem;
    bottom: -1.125rem;
  }
}

.sec-title .en {
  text-align: center;
  color: #eb9500;
  font-size: clamp(14px, 13.029px + 0.2588996764vw, 18px);
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-family: "Rubik", sans-serif;
  display: block;
  letter-spacing: 0.22em;
  font-weight: 400;
}

.sub-title {
  position: relative;
  font-size: clamp(26px, 23.087px + 0.7766990291vw, 38px);
  font-size: clamp(1.625rem, 1.442961165rem + 0.7766990291vw, 2.375rem);
  letter-spacing: 0.05em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
}

.sub-title::after {
  content: "";
  position: absolute;
  left: -7%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 100%;
  width: 5px;
  width: 0.3125rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#dc890f), color-stop(50%, #dc890f), color-stop(50%, #449f37), to(#449f37));
  background: linear-gradient(180deg, #dc890f 0%, #dc890f 50%, #449f37 50%, #449f37 100%);
}
@media screen and (max-width: 520px) {
  .sub-title::after {
    width: 0.25rem;
    bottom: -1.125rem;
  }
}

.sub-title .en {
  text-align: center;
  color: #eb9500;
  font-size: clamp(14px, 13.029px + 0.2588996764vw, 18px);
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  display: block;
  letter-spacing: 0.22em;
  font-weight: 400;
}

.recruitment__swiper {
  position: relative;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 520px) {
  .recruitment__swiper {
    padding: 0 0.9375rem;
    width: 100%;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .recruitment__swiper {
    margin-top: 0;
  }
}
@media screen and (min-width: 1366px) {
  .recruitment__swiper {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}
@media screen and (min-width: 1920px) {
  .recruitment__swiper {
    max-width: none;
    width: 100%;
  }
}

.js-recruitment-swiper .js-swiper-pagination {
  bottom: -15% !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  position: absolute;
  bottom: -15%;
}
@media screen and (max-width: 520px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -7.4%;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
}
@media screen and (max-width: 520px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 0.4375rem;
    height: 0.4375rem;
  }
}

.recruitment__swiper .swiper-pagination {
  position: absolute;
  bottom: -8%;
}
@media screen and (min-width: 768px) {
  .recruitment__swiper .swiper-pagination {
    bottom: -13% !important;
  }
}

.recruitment__swiper .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  margin: 0 10px !important;
}

.recruitment__swiper .swiper-pagination-bullet-active {
  background-color: #eb9500;
}

.swiper-button-prev,
.swiper-button-next {
  height: 50px;
  width: 50px;
  top: 59%;
}
@media screen and (max-width: 520px) {
  .swiper-button-prev,
  .swiper-button-next {
    height: 2.375rem;
    width: 1.75rem;
    top: 62%;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 41px;
  height: 2.5625rem;
  margin: auto;
  width: 41px;
  width: 2.5625rem;
}

.swiper-button-prev::after {
  background-image: url(../images/common/icon_left-arrow.png);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../images/common/icon_right-arrow.png);
}

.swiper-button-prev {
  left: -39px;
}
@media screen and (max-width: 520px) {
  .swiper-button-prev {
    left: -18px;
  }
}

.swiper-button-next {
  right: -41px;
}
@media screen and (max-width: 520px) {
  .swiper-button-next {
    right: -20px;
  }
}
@media screen and (min-width: 768px) {
  .swiper-button-next {
    right: -57px;
  }
}
@media screen and (min-width: 1366px) {
  .swiper-button-next {
    right: -41px;
  }
}

.js-recruitment-swiper-wrapper {
  margin-top: 37px;
  margin-top: 2.3125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .js-recruitment-swiper-wrapper {
    margin-top: 7.375rem;
  }
}

.swiper__card {
  border: 2px solid red;
  background-color: #fff;
  font-size: clamp(20px, 18.543px + 0.3883495146vw, 26px);
  font-size: clamp(1.25rem, 1.1589805825rem + 0.3883495146vw, 1.625rem);
  border-radius: 2.1875rem;
  padding: 5px;
  padding: 0.3125rem;
}
@media screen and (max-width: 520px) {
  .swiper__card {
    border-radius: 42px;
  }
}
@media screen and (min-width: 768px) {
  .swiper__card {
    border-radius: 2.1875rem;
  }
}
@media screen and (min-width: 1366px) {
  .swiper__card {
    border-radius: 3.75rem;
  }
}

.swiper__card-locate {
  text-align: center;
  background-color: red;
  font-weight: 500;
  padding: 10px 0;
  padding: 0.625rem 0;
  color: #fff;
  line-height: 1.2;
  position: relative;
  font-size: clamp(16px, 14.3px + 0.4530744337vw, 23px);
  font-size: clamp(1rem, 0.8938106796rem + 0.4530744337vw, 1.4375rem);
  border-radius: 2.1875rem 2.1875rem 0 0;
  padding-left: 3em;
}
@media screen and (max-width: 520px) {
  .swiper__card-locate {
    padding: 0.25rem 0;
    padding-left: 2.5em;
  }
}
@media screen and (min-width: 1366px) {
  .swiper__card-locate {
    border-radius: 52px 52px 0 0;
  }
}

.swiper__card-locate span {
  display: block;
}

.swiper__card-locate .locate {
  position: absolute;
  left: 16px;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/text_locate.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 60px;
  height: 3.75rem;
  width: 60px;
  width: 3.75rem;
}
@media screen and (max-width: 520px) {
  .swiper__card-locate .locate {
    height: 2.5rem;
    width: 2.5rem;
  }
}

.swiper__card-img {
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-right: 10px;
  padding-right: 0.625rem;
  padding-left: 10px;
  padding-left: 0.625rem;
}

.swiper__card-img img {
  aspect-ratio: 404/260;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper__card-genre {
  padding: 17px 0 15px;
  padding: 1.0625rem 0 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 520px) {
  .swiper__card-genre {
    padding: 0.5625rem 0;
  }
}

.swiper__card-genre span {
  border: 2px solid #ecdf00;
  border-radius: 27px;
  padding: 5px 30px;
  padding: 0.3125rem 1.875rem;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .swiper__card-genre span {
    font-size: 0.875rem;
    padding: 0.125rem 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .swiper__card-genre span {
    min-width: 10rem;
  }
}

.swiper__card-title {
  background-color: #f4eeb4;
  text-align: center;
  font-size: clamp(21px, 19.3px + 0.4530744337vw, 28px);
  font-size: clamp(1.3125rem, 1.2063106796rem + 0.4530744337vw, 1.75rem);
  padding: 7px 0;
  padding: 0.4375rem 0;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .swiper__card-title {
    padding: 0.625rem 0;
    line-height: 1;
  }
}

.swiper__card-salary {
  text-align: center;
  padding: 15px 0;
  padding: 0.9375rem 0;
  border-bottom: 2px dotted;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 520px) {
  .swiper__card-salary {
    font-size: 0.875rem;
    padding: 0.5rem 0;
  }
}

.swiper__card-salary::after {
  content: "";
  position: absolute;
  left: 17px;
  left: 1.0625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/icon_money.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 26px;
  height: 1.625rem;
  width: 26px;
  width: 1.625rem;
}
@media screen and (max-width: 520px) {
  .swiper__card-salary::after {
    height: 1.0625rem;
    width: 1.0625rem;
  }
}

.swiper__card-details {
  text-align: center;
}

.swiper__card-detail {
  position: relative;
}

.swiper__card-detail::after {
  content: "";
  position: absolute;
  left: 20px;
  left: 1.25rem;
  top: 23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/icon_clock.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 26px;
  height: 1.625rem;
  width: 26px;
  width: 1.625rem;
}

.swiper__card-detail-text {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 520px) {
  .swiper__card-detail-text {
    font-size: 0.875rem;
  }
}

.test {
  font-size: 100px;
  font-size: 6.25rem;
  background-color: 900;
  color: #fff;
}

.voice__content .swiper-pagination {
  position: absolute;
  bottom: 2.6%;
}
@media screen and (min-width: 768px) {
  .voice__content .swiper-pagination {
    bottom: 6%;
  }
}

.js-voice-swiper-wrapper .swiper-button-prev,
.js-voice-swiper-wrapper .swiper-button-next {
  height: 50px;
  width: 50px;
  top: 59%;
}
@media screen and (max-width: 520px) {
  .js-voice-swiper-wrapper .swiper-button-prev,
  .js-voice-swiper-wrapper .swiper-button-next {
    height: 2.375rem;
    width: 1.75rem;
    top: 62%;
  }
}

.voice__content .swiper-button-prev {
  left: -5%;
}
@media screen and (max-width: 520px) {
  .voice__content .swiper-button-prev {
    left: -4%;
  }
}
@media screen and (min-width: 768px) {
  .voice__content .swiper-button-prev {
    left: 8%;
  }
}

.voice__content .swiper-button-next {
  right: -5%;
}
@media screen and (max-width: 520px) {
  .voice__content .swiper-button-next {
    right: -4%;
  }
}
@media screen and (min-width: 768px) {
  .voice__content .swiper-button-next {
    right: 7%;
  }
}

.voice__content .swiper-button-prev,
.voice__content .swiper-button-next {
  top: 51%;
}
@media screen and (min-width: 768px) {
  .voice__content .swiper-button-prev,
  .voice__content .swiper-button-next {
    top: 49%;
  }
}

.voice__content .swiper-pagination-bullet {
  background-color: #fbeacc;
  opacity: 1;
  margin: 0 10px !important;
}

.voice__content .swiper-pagination-bullet-active {
  background-color: #eb9500;
}

.sub-department__archive .department__img img {
  aspect-ratio: 408/371;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-department__archive .department__item::after {
  top: 75%;
}
@media screen and (max-width: 520px) {
  .sub-department__archive .department__item::after {
    top: 72%;
  }
}
@media screen and (min-width: 768px) {
  .sub-department__archive .department__item::after {
    top: 69%;
  }
}

.entry-form__inner {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .entry-form__inner {
    max-width: 1000px;
  }
}

.form-notice__container {
  background-color: #fff;
  padding: 40px 15px;
  padding: 2.5rem 0.9375rem;
  border-radius: 30px;
  border: 1px solid;
  padding: 40px 15px 40px 40px;
  padding: 2.5rem 0.9375rem 2.5rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .form-notice__container {
    padding: 2.5rem 3.75rem;
  }
}

.form-notice__title {
  font-size: clamp(24px, 22.058px + 0.5177993528vw, 32px);
  font-size: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  text-align: center;
}

.form-notice__list {
  max-width: 900px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.form-notice__item {
  list-style: disc outside none;
  list-style: initial;
}

.form-notice__item + .form-notice__item {
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .form-notice__item + .form-notice__item {
    margin-top: 1.25rem;
  }
}

.sub-contact__privacy {
  border: 1px solid;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  border-radius: 1.25rem;
}

.sub-contact__privacy__title {
  background-color: #60574b;
  color: #fff;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  margin: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 20px;
}

.form {
  max-width: 1110px;
  margin: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .form {
    margin-top: 3.75rem;
  }
}

.form__item {
  padding: 20px 0 10px 0;
}
@media screen and (min-width: 768px) {
  .form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5%;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
  }
}

.form__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 0;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .form__title {
    padding: 0 10px;
    width: 31%;
  }
}
.form__title span {
  display: inline-block;
  padding: 7px;
  color: #fff;
  font-size: 12px;
  background-color: #d00000;
  border-radius: 20px;
}

.form__title p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .form__title p {
    width: 100%;
  }
}

.form__title p span {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .form__title p span {
    margin-left: auto;
  }
}

.form__title--type02 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .form__title--type02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form__item.form__title--aiStart .form__title {
  padding-top: 10px;
  padding-top: 0.625rem;
}

.form__title--aiStart {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .form__input {
    width: 100%;
    margin-top: 10px;
    padding: 0 10px;
  }
}

.form__input input {
  border-radius: 30px;
}

.formInput input::-webkit-input-placeholder,
.formTextarea textarea::-webkit-input-placeholder {
  color: lightgray;
  font-size: 16px;
}

.formInput input::-moz-placeholder,
.formTextarea textarea::-moz-placeholder {
  color: lightgray;
  font-size: 16px;
}

.formInput input::-ms-input-placeholder,
.formTextarea textarea::-ms-input-placeholder {
  color: lightgray;
  font-size: 16px;
}

.formInput input::placeholder,
.formTextarea textarea::placeholder {
  color: lightgray;
  font-size: 16px;
}

.formInput input {
  width: 100%;
  height: 40px;
  padding-left: 20px;
  border: 1px solid #b5b5b5;
  background-color: #fff;
  font-size: 16px;
  color: #60574b;
}
@media screen and (min-width: 768px) {
  .formInput input {
    width: 100%;
    height: 50px;
    margin-left: 0;
    padding-left: 15px;
  }
}

.formInput input:focus,
.formTextarea textarea:focus {
  outline: 2px solid #b5b5b5;
}

.formInput--sm input {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .formInput--sm input {
    width: 100%;
  }
}

.formInput--tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.formInput--tel > * {
  min-width: 0;
}

.formInput--tel input {
  width: 150px;
  max-width: 100%;
}

.formSelect select {
  width: 100%;
  max-width: 100%;
  height: 60px;
  padding-left: 20px;
  border: 1px solid #b5b5b5;
  border-radius: 0;
  color: 900;
  font-size: 16px;
  background: url(../images/common/pulldown.svg) right 10px center/10px no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 768px) {
  .formSelect select {
    width: 100%;
    height: 50px;
  }
}

.formSelect select:focus {
  outline: 2px solid #b5b5b5;
  color: black;
}

.formSelect select option:checked {
  color: black; /* 選択後の文字色を黒に */
}

.formSelect select.selected {
  color: black; /* 選択されたときの色を黒に */
}

@-moz-document url-prefix() {
  .formCalendar input {
    background: none;
  }
  .formCalendar::after {
    position: absolute;
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><path d="M13.5 2H13V1c0-.6-.4-1-1-1s-1 .4-1 1v1H5V1c0-.6-.4-1-1-1S3 .4 3 1v1h-.5C1.1 2 0 3.1 0 4.5v9C0 14.9 1.1 16 2.5 16h11c1.4 0 2.5-1.1 2.5-2.5v-9C16 3.1 14.9 2 13.5 2zm0 12.5h-11c-.6 0-1-.4-1-1V6h13v7.5c0 .6-.4 1-1 1z"></path></svg>') no-repeat center center/contain;
    top: 50%;
    right: 10px;
    transform: translateY(-55%);
    pointer-events: none;
  }
}
.formCalendar input::-webkit-date-and-time-value {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .Android .formCalendar input {
    padding-left: 15px;
  }
}

.formCalendar input:focus {
  outline: 2px solid #b5b5b5;
}

@media screen and (min-width: 768px) {
  .form__dataBlockSelect {
    width: 100%;
  }
}

.form__dataBlockDate input:not(.formDate__default) {
  color: #333;
}

.formNumber__txt {
  font-size: 16px;
}

.formNumber__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1%;
}
@media screen and (min-width: 768px) {
  .formNumber__flex {
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.formNumber__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.formNumber__blockLabel01 {
  font-size: 16px;
}
.formNumber__blockLabel01 {
  font-size: 16px;
}

.formNumber__blockInput {
  width: 100px;
  margin-right: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .formNumber__blockInput {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 20px;
  }
}

.formNumber__blockInput.month {
  width: 70px;
}

.formNumber__blockInput-confirm {
  width: 40px;
  text-align: center;
}

.formCheckbox input {
  display: none;
}

.formCheckbox .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.formCheckbox .wpcf7-list-item {
  margin-left: 0;
}

.formCheckbox--vertical .wpcf7-checkbox {
  display: block;
}

.formCheckbox--vertical .wpcf7-list-item {
  display: block;
  margin: 0;
}

.formCheckbox--vertical .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 20px;
}

.formCheckbox input + span {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 0 0 0 35px;
  font-size: 16px;
  cursor: pointer;
}

.formCheckbox input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #b5b5b5;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.formCheckbox input + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  display: block;
  width: 8px;
  height: 13px;
  margin-top: -8px;
  border-right: 3px solid #eb9500;
  border-bottom: 3px solid #eb9500;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.formCheckbox input:checked + span::after {
  opacity: 1;
}

.formRadio .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
  gap: 3.75rem;
}
@media screen and (max-width: 520px) {
  .formRadio .wpcf7-radio {
    row-gap: 1.875rem;
  }
}

.formRadio--vertical .wpcf7-radio {
  display: block;
}

.formRadio .wpcf7-list-item {
  margin: 0;
}

.formRadio--vertical .wpcf7-list-item {
  display: block;
  margin: 0;
}

.formRadio--vertical .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 20px;
}

.formRadio input + span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  cursor: pointer;
}

.formRadio input[type=radio] {
  display: none;
}

.formRadio input + span::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: auto;
  margin-right: 0.5em;
  margin-bottom: auto;
  border: 1px solid #b5b5b5;
  border-radius: 100%;
  background: #fff;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.formRadio input:checked + span::before {
  background-color: #eb9500;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
          box-shadow: inset 0 0 0 3px #fff;
}

.formTextarea textarea {
  width: 100%;
  min-height: 350px;
  padding-top: 10px;
  padding-left: 20px;
  border: 1px solid #b5b5b5;
  border-radius: 30px;
  font-size: 16px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .formTextarea textarea {
    width: 100%;
    min-height: 300px;
    margin-left: 0;
    padding-left: 15px;
  }
}

.form__privacy {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .form__privacy {
    text-align: left;
  }
}

.form__privacy a {
  line-height: 1;
  text-decoration: underline;
}

.form__acceptance {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form__acceptance {
    text-align: left;
  }
}

.form__acceptance.formCheckbox {
  text-align: center;
}

.form__acceptance.formCheckbox a {
  text-decoration: underline;
}

.form__submit {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form__submit {
    margin-top: 30px;
  }
}

.formBtn input {
  width: 300px;
  padding: 20px 0;
  border: none;
  color: #fff;
  font-size: 18px;
  text-align: center;
  border-radius: 0;
  background-color: #313d58;
  cursor: pointer;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
.formBtn input:disabled {
  color: #fff;
  background-color: #eee;
  border-color: #eee;
}
@media screen and (min-width: 768px) {
  .formBtn input:disabled:hover {
    cursor: not-allowed;
  }
}
@media screen and (min-width: 768px) {
  .formBtn input:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
}

.p-formBtn__wrapper {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-formBtn__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.form__submit.p-formBtn input {
  background: #eb9500;
  color: #fff;
  padding: 10px;
  border-radius: 40px;
  width: 300px;
  max-width: 100%;
  margin: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.form__submit.p-formBtn.return input {
  margin-left: 0;
}

.form__submit.p-formBtn.return input {
  width: 200px;
}

.wpcf7 form.sent .wpcf7-response-output {
  padding: 15px 10px;
  border-color: #2c94de;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .wpcf7 form.sent .wpcf7-response-output {
    font-size: 16px;
  }
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  padding: 15px 10px;
  border-color: red;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 16px;
  }
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  color: red;
  font-size: 16px;
  font-weight: normal;
}

.wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
  display: none;
}

.formValidation .wpcf7-not-valid-tip {
  display: none;
}

.formValidation__error {
  display: none;
  margin-top: 10px;
  color: red;
  font-size: 16px;
  font-weight: normal;
}

.wpcf7-form:not(.hide_error_message) .formValidation:has(.wpcf7-not-valid-tip) .formValidation__error {
  display: block;
}

.department-detail__title {
  margin-right: auto;
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .department-detail__content.sub-interview-detail__content {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}

.department-detail__content .sub-interview-detail__textBlock {
  margin-top: 0px;
  margin-top: 0rem;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
}
@media screen and (min-width: 768px) {
  .department-detail__content .sub-interview-detail__textBlock {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 3.75rem;
  }
}

.department-detail__content .sub-interview-detail__introductionHead {
  font-size: clamp(20px, 17.572px + 0.6472491909vw, 30px);
  font-size: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
  margin-right: auto;
  margin-left: auto;
}

.department-detail__content .sub-interview-detail__introductionText {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.department-detail__content .sub-interview-detail__contentImg {
  width: 88%;
  border-radius: 30px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 520px) {
  .department-detail__content .sub-interview-detail__contentImg {
    width: 90%;
  }
}
@media screen and (min-width: 768px) {
  .department-detail__content .sub-interview-detail__contentImg {
    width: 53%;
    height: 83%;
    border-radius: 3.75rem; /* 角を丸める */
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.department-detail__content .sub-interview-detail__contentImg img {
  aspect-ratio: 723/528;
  -o-object-fit: cover;
     object-fit: cover;
}

.department-detail__work-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .department-detail__work-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.department-detail__work-img {
  width: 100%;
  overflow: hidden; /* 必須: 子要素を平行四辺形内に収める */
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg); /* 平行四辺形にする */
  border-radius: 20px; /* 角を丸める */
}
@media screen and (min-width: 768px) {
  .department-detail__work-img {
    width: 50%;
  }
}

.department-detail__work-img img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transform: skew(20deg) scale(1.2);
          transform: skew(20deg) scale(1.2); /* 親の逆方向に補正 */
}

.department-detail__work-detail {
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .department-detail__work-detail {
    width: 50%;
    margin-left: -3.9375rem;
    margin-top: 5.625rem;
    position: relative;
    z-index: 1;
    border-radius: 20px; /* 丸み */
    -webkit-transform: skew(-20deg);
            transform: skew(-20deg); /* 平行四辺形にする */
    position: relative; /* 相対配置 */
    overflow: hidden; /* 角のはみ出しを隠す */
    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; /* 水平方向の中央配置 */
  }
}

.department-detail__work-detail p {
  -webkit-transform: skew(20deg);
          transform: skew(20deg);
}

.department-detail__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .department-detail__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
  }
}

.department-detail__salary {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .department-detail__salary {
    width: 50%;
  }
}

.department-detail__salary-content .fee {
  font-weight: 600;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  font-size: 18px;
}

.department-detail__welcome {
  width: 100%;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .department-detail__welcome {
    width: 50%;
    margin-top: 0;
  }
}

.department-detail__welcome-content li {
  position: relative;
  padding-left: 2em;
  font-size: clamp(18px, 17.029px + 0.2588996764vw, 22px);
  font-size: clamp(1.125rem, 1.0643203883rem + 0.2588996764vw, 1.375rem);
}

.department-detail__welcome-content li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/icon_list.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  height: 1.25rem;
  width: 20px;
  width: 1.25rem;
}

.department-detail__message {
  background-color: #fff;
  padding: 30px;
  padding: 1.875rem;
  border-radius: 30px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .department-detail__message {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
}

.department-detail__message-title {
  background-color: #eb9500;
  text-transform: uppercase;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
  font-size: clamp(18px, 16.543px + 0.3883495146vw, 24px);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  border-radius: 1.125rem;
  min-width: 260px;
  min-width: 16.25rem;
  text-align: center;
  color: #fff;
  content: "";
  position: absolute;
  left: 50%;
  top: -1em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Rubik", sans-serif;
}

.department-detail__message-title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #eb9500;
}

.department-detail__message-content {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .department-detail__message-content {
    margin-top: 1.875rem;
  }
}

.department-detail__footer {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .department-detail__footer {
    margin-top: 3.75rem;
  }
}

.parallelogram {
  position: relative;
  display: inline-block;
  overflow: hidden; /* 必須: 子要素を平行四辺形内に収める */
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg); /* 平行四辺形にする */
  border-radius: 20px; /* 角を丸める */
}

.parallelogram img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transform: skew(20deg) scale(1.15);
          transform: skew(20deg) scale(1.15);
}

.dr__subtitle {
  font-size: clamp(18px, 16.058px + 0.5177993528vw, 26px);
  font-size: clamp(1.125rem, 1.0036407767rem + 0.5177993528vw, 1.625rem);
  text-indent: -71px;
  text-indent: -4.4375rem;
  padding-left: 31px;
  padding-left: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .dr__subtitle {
    padding-left: 1rem;
    text-indent: -2rem;
  }
}

.dr-introduction__title {
  font-size: clamp(24px, 20.116px + 1.0355987055vw, 40px);
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  border-bottom: 2px solid;
  display: inline;
}
@media screen and (min-width: 768px) {
  .dr-introduction__title {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: block;
    margin-inline: auto;
  }
}

.dr__subtitle span {
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #eb9500;
  display: inline-block;
  margin-right: 16px;
  margin-right: 1rem;
  margin-left: 30px;
  margin-left: 1.875rem;
  margin-left: 40px;
  margin-left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .dr__subtitle span {
    margin-left: 0;
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

.dr-introduction__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .dr-introduction__media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
  }
}

@media screen and (min-width: 768px) {
  .dr-introduction__media:nth-of-type(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.dr-introduction__text {
  font-size: clamp(14px, 12.543px + 0.3883495146vw, 20px);
  font-size: clamp(0.875rem, 0.7839805825rem + 0.3883495146vw, 1.25rem);
}
@media screen and (min-width: 768px) {
  .dr-introduction__text {
    width: 55%;
  }
}

.dr-introduction__img {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .dr-introduction__img {
    width: 42%;
    margin-top: 0;
  }
}

.dr-introduction__img img {
  border-radius: 10px;
}

.dr-introduction__addText {
  font-size: clamp(14px, 12.543px + 0.3883495146vw, 20px);
  font-size: clamp(0.875rem, 0.7839805825rem + 0.3883495146vw, 1.25rem);
  margin-top: 20px;
  margin-top: 1.25rem;
}

.dr-introduction__bg-wrap {
  background-color: #fff;
  padding: 20px;
  padding: 1.25rem;
  padding-top: 30px;
  padding-top: 1.875rem;
  position: relative;
  margin-top: 100px;
  margin-top: 6.25rem;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .dr-introduction__bg-wrap {
    margin-top: 8.75rem;
    padding-top: 3.125rem;
    padding: 2.1875rem;
  }
}

.dr-introduction__bg-wrapTitle {
  position: absolute;
  top: -0.8em;
  padding-left: 17px;
  padding-left: 1.0625rem;
}

.dr-introduction__bg-wrapText {
  border-radius: 10px;
  font-size: clamp(14px, 12.543px + 0.3883495146vw, 20px);
  font-size: clamp(0.875rem, 0.7839805825rem + 0.3883495146vw, 1.25rem);
}

.dr-introduction__bg-wrapText strong {
  letter-spacing: 0.05em;
}

.dr__text {
  font-size: clamp(14px, 12.543px + 0.3883495146vw, 20px);
  font-size: clamp(0.875rem, 0.7839805825rem + 0.3883495146vw, 1.25rem);
  line-height: 1.7;
}

.dr__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .dr__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
  }
}

.dr__wrap-content {
  background-color: #fff;
  padding: 20px;
  padding: 1.25rem;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .dr__wrap-content {
    width: 45%;
  }
}

.dr__wrap-content + .dr__wrap-content {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .dr__wrap-content + .dr__wrap-content {
    margin-top: 0;
  }
}

.dr__wrap-content .list {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.dr__wrap-contentTitle {
  font-size: clamp(17px, 15.786px + 0.3236245955vw, 22px);
  font-size: clamp(1.0625rem, 0.9866504854rem + 0.3236245955vw, 1.375rem);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  border-bottom: 2px solid;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.dr__footer {
  text-align: center;
}

.dr__footer-message {
  font-size: clamp(16px, 12.116px + 1.0355987055vw, 32px);
  font-size: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}

.dr__footer-message span {
  border-bottom: 2px solid;
  letter-spacing: 0.1em;
}

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

.sub-interview-detail__content {
  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) {
  .sub-interview-detail__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.sub-interview-detail__contentImg {
  position: relative;
  display: inline-block;
  overflow: hidden; /* 必須: 子要素を平行四辺形内に収める */
  -webkit-transform: skew(-12deg);
          transform: skew(-12deg); /* 平行四辺形にする */
  border-radius: 3.75rem; /* 角を丸める */
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  height: 83%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 30px;
  margin-top: 1.875rem;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  .sub-interview-detail__contentImg {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 98%;
  }
}
@media screen and (min-width: 768px) {
  .sub-interview-detail__contentImg {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 53%;
    margin-top: 0;
  }
}

.sub-interview-detail__contentImg img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transform: skew(12deg) scale(1.25);
          transform: skew(12deg) scale(1.25); /* 親の逆方向に補正 */
}

.sub-interview-detail__textBlock {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .sub-interview-detail__textBlock {
    width: 53%;
    margin-top: 10.8125rem;
    margin-left: -8.6875rem;
    margin-right: 20px;
  }
}

.sub-interview-detail__introductionNumber {
  color: #eb9500;
}

.sub-interview-detail__introductionHead {
  margin-right: auto;
}
@media screen and (max-width: 520px) {
  .sub-interview-detail__introductionHead {
    margin-right: auto;
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .sub-interview-detail__introductionHead {
    margin-left: 8.125rem;
  }
}

.sub-interview-detail__introductionDetail {
  background-color: #eb9500;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 10px;
  color: #fff;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  font-size: clamp(18px, 16.543px + 0.3883495146vw, 24px);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
}

.sub-interview-detail__introductionPersonal {
  font-size: clamp(20px, 17.572px + 0.6472491909vw, 30px);
  font-size: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
}

.sub-interview-detail__introductionPersonal .small {
  margin-left: 20px;
  margin-left: 1.25rem;
  font-size: 16px;
}

.sub-interview-detail__introductionMessage {
  background-color: none;
  -webkit-transform: none;
          transform: none;
  border-radius: 3.75rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-interview-detail__introductionMessage {
    background-color: rgba(255, 255, 255, .76);
    -webkit-transform: skew(-12deg);
            transform: skew(-12deg);
    padding: 1.6875rem 6.875rem 4.1875rem;
  }
}

.sub-interview-detail__introductionTitle {
  -webkit-transform: skew(0);
          transform: skew(0);
  font-size: clamp(21px, 18.815px + 0.5825242718vw, 30px);
  font-size: clamp(1.3125rem, 1.1759708738rem + 0.5825242718vw, 1.875rem);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .sub-interview-detail__introductionTitle {
    -webkit-transform: skew(12deg);
            transform: skew(12deg);
  }
}

.sub-interview-detail__introductionTitle span {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(89%, rgba(0, 0, 0, 0)), color-stop(70%, rgb(236, 223, 0)));
  background-image: linear-gradient(rgba(0, 0, 0, 0) 89%, rgb(236, 223, 0) 70%);
}

.sub-interview-detail__introductionText {
  margin-top: 40px;
  margin-top: 2.5rem;
  line-height: 1.6666666667;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .sub-interview-detail__introductionText {
    -webkit-transform: skew(12deg);
            transform: skew(12deg);
  }
}

.sub-interview-detail-chanceTitle {
  font-size: clamp(21px, 18.815px + 0.5825242718vw, 30px);
  font-size: clamp(1.3125rem, 1.1759708738rem + 0.5825242718vw, 1.875rem);
}

.sub-interview-detail-chanceText {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-interview-detail-chanceText {
    margin-top: 2.5rem;
  }
}

.sub-interview-detail-chanceImg {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-interview-detail-chanceImg {
    margin-top: 0;
  }
}

.sub-interview-detail-chanceImg img {
  aspect-ratio: 620/426;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-interview-detail-pointList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 30px;
  row-gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-interview-detail-pointList {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
    row-gap: 1.875rem;
  }
}

.sub-interview-detail-pointItem {
  width: 100% x;
  background-color: #fff;
  padding: 20px;
  padding: 1.25rem;
  border-radius: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-interview-detail-pointItem {
    width: 45%;
    padding: 1.875rem;
  }
}

.sub-interview-detail-pointItem-text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.sub-interview-detail-movieWrapper iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.sub-interview-detail-flowWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .sub-interview-detail-flowWrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5%;
  }
}

.sub-interview-detail-flowImg {
  width: 100%;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-interview-detail-flowImg {
    width: 50%;
    margin-top: 0;
  }
}

.sub-interview-detail-flowImg img {
  border-radius: 30px;
  aspect-ratio: 624/443;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-interview-detail-flowChart {
  width: 100%;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-interview-detail-flowChart {
    width: 50%;
    margin-top: 0;
  }
}

.sub-interview__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  counter-reset: sub-number;
}
@media screen and (min-width: 768px) {
  .sub-interview__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
    row-gap: 1.875rem;
  }
}

.sub-interview__list__card {
  position: relative;
  width: 100%;
  margin-top: 40px;
  margin-top: 2.5rem;
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .sub-interview__list__card {
    width: 30%;
    max-width: 1368px;
    margin-left: 0;
    margin-right: 0;
  }
}

.sub-interview__list__number {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  margin-left: 30px;
  margin-left: 1.875rem;
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 520px) {
  .sub-interview__list__number {
    margin-left: 1.6875rem;
  }
}

.sub-interview__list__number span {
  font-size: clamp(28px, 25.087px + 0.7766990291vw, 40px);
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  position: relative;
  z-index: 2;
  color: transparent;
  -webkit-text-stroke: 1px #eb9500;
  text-stroke: 1px #eb9500;
  counter-increment: sub-number;
}

.sub-interview__list__number span::before {
  content: "0" counter(sub-number) "";
}

.sub-interview__list__number::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 34%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/common/icon_number.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 100px;
  height: 6.25rem;
  width: 100px;
  width: 6.25rem;
}
@media screen and (max-width: 520px) {
  .sub-interview__list__number::after {
    height: 4.6875rem;
    width: 4.6875rem;
  }
}

.sub-interview__list__img {
  position: relative;
  overflow: hidden;
  border-radius: 40px 40px 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sub-interview__list__img:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sub-interview__list__img img {
  aspect-ratio: 400/341;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px 40px 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 520px) {
  .sub-interview__list__img img {
    aspect-ratio: 400/346;
    border-radius: 28px 28px 0 0;
  }
}

.sub-interview__list__tag {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
  font-size: clamp(17px, 15.3px + 0.4530744337vw, 24px);
  font-size: clamp(1.0625rem, 0.9563106796rem + 0.4530744337vw, 1.5rem);
  background-color: #eb9500;
  border-radius: 0.625rem;
  color: #fff;
  min-width: 200px;
  min-width: 12.5rem;
  text-align: center;
  position: relative;
  margin-top: -1em;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .sub-interview__list__tag {
    border-radius: 8px;
    min-width: 8.75rem;
  }
}
.sub-interview__list__body {
  background-color: #f8f6ea;
  padding: 66px 30px 31px;
  padding: 4.125rem 1.875rem 1.9375rem;
  border-radius: 0 0 30px 30px;
}
@media screen and (max-width: 520px) {
  .sub-interview__list__body {
    padding: 1rem 1.875rem 1.9375rem;
  }
}

.sub-interview__list__text {
  font-size: clamp(17px, 15.3px + 0.4530744337vw, 24px);
  font-size: clamp(1.0625rem, 0.9563106796rem + 0.4530744337vw, 1.5rem);
}

.sub-interview__list__detail {
  font-size: clamp(17px, 15.3px + 0.4530744337vw, 24px);
  font-size: clamp(1.0625rem, 0.9563106796rem + 0.4530744337vw, 1.5rem);
  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-top: 20px;
  margin-top: 1.25rem;
}

.sub-interview__list__detail span {
  font-size: 16px;
  font-size: 1rem;
}

.sub-message-representative__title {
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-message-representative__title {
    text-align: left;
    text-align: initial;
    margin-inline: initial;
  }
}

.sub-message-representative__title .under-line {
  position: relative;
  background-color: transparent;
  background-color: initial;
}

.sub-message-representative__title .under-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: transparent;
  background-color: initial;
  background-size: auto auto;
  background-image: repeating-linear-gradient(130deg, transparent, transparent 7px, rgb(255, 239, 1) 7px, rgb(255, 239, 1) 11px);
  height: 5px;
  height: 0.3125rem;
  width: 80%;
}

.sub-message-representative__wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3%;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .sub-message-representative__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.375rem;
  }
}

.sub-message-representative__img {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .sub-message-representative__img {
    width: 58%;
  }
}

.sub-message-representative__img img {
  border-radius: 20px;
  aspect-ratio: 764/500;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-message-care__title {
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .sub-message-care__title {
    text-align: left;
    text-align: initial;
    margin-inline: initial;
    font-size: 1.875rem;
  }
}

.sub-message-care__wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3%;
}
@media screen and (min-width: 768px) {
  .sub-message-care__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
  }
}

.sub-message-care__text {
  line-height: 1.7;
}

.sub-message-care__img {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-message-care__img {
    width: 58%;
    margin-top: 0;
  }
}

.sub-message-care__img img {
  border-radius: 20px;
  aspect-ratio: 764/500;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-message-medical__title {
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .sub-message-medical__title {
    text-align: left;
    text-align: initial;
    margin-inline: initial;
  }
}

.sub-message-medical__text {
  line-height: 1.7;
}

.sub-message-service__title {
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .sub-message-service__title {
    text-align: left;
    text-align: initial;
    margin-inline: initial;
  }
}

.sub-message-service__text {
  line-height: 1.7;
}

.numbers__list.middle {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.numbers__list.middle .numbers__list-item {
  width: 48%;
}
@media screen and (min-width: 768px) {
  .numbers__list.middle .numbers__list-item {
    width: 32%;
  }
}

.numbers__list-img.lady {
  width: 61%;
}
@media screen and (min-width: 768px) {
  .numbers__list-img.lady {
    width: 30%;
  }
}

.numbers__list-img.clock {
  width: 42%;
}
@media screen and (min-width: 768px) {
  .numbers__list-img.clock {
    width: 30%;
  }
}

.sub-number__inner .numbers__list-img.paid {
  width: 54%;
}
@media screen and (min-width: 768px) {
  .sub-number__inner .numbers__list-img.paid {
    width: 48%;
  }
}

.numbers__list-img.men {
  margin-top: 18px;
  margin-top: 1.125rem;
  width: 53%;
}
@media screen and (min-width: 768px) {
  .numbers__list-img.men {
    margin-top: 1.875rem;
  }
}

.numbers__list-img.rate {
  width: 29%;
}
@media screen and (min-width: 768px) {
  .numbers__list-img.rate {
    width: 22%;
  }
}

.numbers__list-img.holiday {
  width: 49%;
}
@media screen and (min-width: 768px) {
  .numbers__list-img.holiday {
    width: 40%;
  }
}

.page-stanndby {
  margin-top: 100px;
  margin-top: 6.25rem;
  margin-bottom: 160px;
  margin-bottom: 10rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-stanndby {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}

.page-stanndby__title {
  font-size: clamp(30px, 25.145px + 1.2944983819vw, 50px);
  font-size: clamp(1.875rem, 1.5716019417rem + 1.2944983819vw, 3.125rem);
}

.page-stanndby__text {
  font-size: clamp(18px, 14.601px + 0.9061488673vw, 32px);
  font-size: clamp(1.125rem, 0.9126213592rem + 0.9061488673vw, 2rem);
  line-height: 1.7;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-stanndby__text {
    margin-top: 2.5rem;
  }
}

.page-stanndby__footer {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .page-stanndby__footer {
    margin-top: 5rem;
  }
}

.privacy-policy__section-title {
  font-size: clamp(20px, 18.058px + 0.5177993528vw, 28px);
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
}

.privacy-policy__section ul {
  margin-top: 14px;
  margin-top: 0.875rem;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .privacy-policy__section ul {
    margin-top: 1.25rem;
  }
}

.privacy-policy__section li {
  list-style: disc outside none;
  list-style: initial;
}

.recruit-archive__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 520px) {
  .recruit-archive__wrapper {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .recruit-archive__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3%;
    row-gap: 1.875rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
}

.recruit__card {
  background-color: #fff;
  font-size: clamp(20px, 18.543px + 0.3883495146vw, 26px);
  font-size: clamp(1.25rem, 1.1589805825rem + 0.3883495146vw, 1.625rem);
  border-radius: 2.1875rem;
  padding: 5px;
  padding: 0.3125rem;
  width: 100%;
}
@media screen and (max-width: 520px) {
  .recruit__card {
    border-radius: 42px;
  }
}
@media screen and (min-width: 768px) {
  .recruit__card {
    border-radius: 35px;
    width: 31%;
  }
}
@media screen and (min-width: 1366px) {
  .recruit__card {
    border-radius: 60px;
  }
}

.recruit__card + .recruit__card {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .recruit__card + .recruit__card {
    margin-top: 0;
  }
}

.recruit__card-locate {
  text-align: center;
  border-radius: 30px 30px 0 0;
  font-weight: 500;
  padding: 10px 0;
  padding: 0.625rem 0;
  color: #fff;
  line-height: 1.2;
  position: relative;
  font-size: clamp(16px, 13.572px + 0.6472491909vw, 26px);
  font-size: clamp(1rem, 0.8483009709rem + 0.6472491909vw, 1.625rem);
}
@media screen and (max-width: 520px) {
  .recruit__card-locate {
    border-radius: 35px 35px 0 0;
    padding: 0.25rem 0;
  }
}
@media screen and (min-width: 768px) {
  .recruit__card-locate {
    font-size: 1.25rem;
    letter-spacing: -0.1em;
  }
}
@media screen and (min-width: 1366px) {
  .recruit__card-locate {
    border-radius: 3.75rem 3.75rem 0 0;
  }
}

.recruit__card-locate span {
  display: block;
}

.recruit__card-locate .locate {
  position: absolute;
  left: 16px;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/text_locate.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 60px;
  height: 3.75rem;
  width: 60px;
  width: 3.75rem;
}
@media screen and (max-width: 520px) {
  .recruit__card-locate .locate {
    height: 2.5rem;
    width: 2.5rem;
  }
}

.recruit__card-img {
  padding-top: 15px;
  padding-top: 0.9375rem;
}

.recruit__card-img img {
  aspect-ratio: 404/250;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit__card-genre {
  padding: 15px 0;
  padding: 0.9375rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 520px) {
  .recruit__card-genre {
    padding: 0.5625rem 0;
  }
}

.recruit__card-genre span {
  border: 2px solid #ecdf00;
  border-radius: 27px;
  padding: 5px 30px;
  padding: 0.3125rem 1.875rem;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .recruit__card-genre span {
    font-size: 0.875rem;
    padding: 0.125rem 1.875rem;
  }
}

.recruit__card-title {
  background-color: #f4eeb4;
  text-align: center;
  font-size: clamp(21px, 19.3px + 0.4530744337vw, 28px);
  font-size: clamp(1.3125rem, 1.2063106796rem + 0.4530744337vw, 1.75rem);
  padding: 7px 0;
  padding: 0.4375rem 0;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .recruit__card-title {
    padding: 0.625rem 0;
    line-height: 1;
  }
}

.recruit__card-salary {
  text-align: center;
  padding: 15px 40px;
  padding: 0.9375rem 2.5rem;
  border-bottom: 2px dotted;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 520px) {
  .recruit__card-salary {
    font-size: 0.875rem;
    padding: 0.5rem 2.5rem;
    padding-left: 2.4375rem;
  }
}

.recruit__card-salary::after {
  content: "";
  position: absolute;
  left: 17px;
  left: 1.0625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/icon_money.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 26px;
  height: 1.625rem;
  width: 26px;
  width: 1.625rem;
}
@media screen and (max-width: 520px) {
  .recruit__card-salary::after {
    height: 1.0625rem;
    width: 1.0625rem;
  }
}

.recruit__card-details {
  text-align: center;
}

.recruit__card-detail {
  position: relative;
}

.recruit__card-detail::after {
  content: "";
  position: absolute;
  left: 20px;
  left: 1.25rem;
  top: 23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/icon_clock.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 26px;
  height: 1.625rem;
  width: 26px;
  width: 1.625rem;
}

.recruit__card-detail-text {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 520px) {
  .recruit__card-detail-text {
    font-size: 0.875rem;
  }
}

.swiper__card.color-red {
  border: 3px solid #ec6b61;
  background-color: #fff;
}

.swiper__card.color-green {
  border: 2px solid #76b743;
  background-color: #fff;
}

.swiper__card.color-blue {
  border: 2px solid #76bbc9;
  background-color: #fff;
}

.color-red {
  background-color: #ec6b61;
}

.color-green {
  background-color: #76b743;
}

.color-blue {
  background-color: #76bbc9;
}

.recruit__card.color-red {
  border: 3px solid #ec6b61;
  background-color: #fff;
}

.recruit__card.color-green {
  border: 2px solid #76b743;
  background-color: #fff;
}

.recruit__card.color-blue {
  border: 2px solid #76bbc9;
  background-color: #fff;
}

.no-recruit {
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: clamp(18px, 17.514px + 0.1294498382vw, 20px);
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
}

.sub-recruit__content {
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .sub-recruit__content {
    max-width: 800px;
  }
}

.sub-recruit__table {
  background-color: #fff;
  border-radius: 30px;
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .sub-recruit__table {
    max-width: 800px;
    padding: 40px;
  }
}

.sub-recruit__footer {
  text-align: center;
}

.sub-recruit__footer-link.button:hover {
  background-color: #eb9500;
  color: #fff;
}

.sub-recruit__footer-link.button:hover::after {
  right: 16px;
  right: 1rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.home {
  position: relative;
  overflow-x: clip;
}

.home::after {
  content: "";
  position: absolute;
  left: 0;
  top: -150px;
  background-image: url(../images/common/huge_shadow-upper.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  width: 98%;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  .home::after {
    width: 131%;
  }
}
@media screen and (min-width: 768px) {
  .home::after {
    height: 100%;
    width: 44%;
  }
}

.main-page {
  position: relative;
  overflow-x: clip;
}

.main-page::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../images/common/huge_shadow-lower.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 53%;
  width: 47%;
  z-index: -1;
}

.fv {
  position: relative;
}

.fv::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/icon_flower.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 14%;
  width: 23%;
  z-index: 10;
  bottom: 23%;
  right: 0;
}
@media screen and (min-width: 768px) {
  .fv::before {
    height: 31%;
    width: 17%;
    right: 1%;
    bottom: 2%;
  }
}

.fv::after {
  content: "";
  position: absolute;
  left: 0%;
  top: 0%;
  background-image: url(../images/common/icon_flower.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 29%;
  width: 29%;
}
@media screen and (max-width: 520px) {
  .fv::after {
    height: 21%;
    width: 32%;
    top: 19%;
  }
}
@media screen and (min-width: 768px) {
  .fv::after {
    height: 51%;
    width: 37%;
    left: 6%;
    top: -8%;
  }
}

@media screen and (min-width: 768px) {
  .fv__inner {
    width: 70%;
  }
}

.fv__img {
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .fv__img {
    width: 113.5%;
    margin-left: auto;
    margin-right: calc(50% - 50vw);
  }
}

.fv__text-block {
  z-index: 1;
  top: 35%;
  top: 35%;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .fv__text-block {
    position: absolute;
    bottom: 3.5rem;
    top: 30%;
    margin-left: -1rem;
  }
}

@-webkit-keyframes title {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes title {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fv__title {
  font-family: "Rubik", sans-serif;
  font-size: clamp(46px, 28.038px + 4.7896440129vw, 120px);
  font-size: clamp(2.875rem, 1.7524271845rem + 4.7896440129vw, 7.5rem);
  color: #eb9500;
  letter-spacing: 0.16em;
  color: rgba(235, 149, 0, .72);
  font-weight: 500;
  -webkit-animation: title 1.5s both 2s;
          animation: title 1.5s both 2s;
}
@media screen and (max-width: 520px) {
  .fv__title {
    line-height: 1.2;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 768px) {
  .fv__title {
    margin-top: 2.875rem;
    line-height: 1.1;
    margin-left: -1rem;
  }
}
@media screen and (min-width: 1920px) {
  .fv__title {
    margin-top: 7.875rem;
  }
}

.fv__title span {
  font-size: clamp(54px, 28.271px + 6.8608414239vw, 160px);
  font-size: clamp(3.375rem, 1.7669902913rem + 6.8608414239vw, 10rem);
}
@media screen and (max-width: 520px) {
  .fv__title span {
    letter-spacing: 0.12em;
  }
}
@media screen and (min-width: 768px) {
  .fv__title span {
    letter-spacing: 0.1em;
  }
}

.fv__sub-title {
  font-size: clamp(26px, 23.087px + 0.7766990291vw, 38px);
  font-size: clamp(1.625rem, 1.442961165rem + 0.7766990291vw, 2.375rem);
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-color: #fff;
  line-height: 2;
  font-weight: 600;
  letter-spacing: 0.12em;
  position: relative;
}
@media screen and (max-width: 520px) {
  .fv__sub-title {
    line-height: 2.1;
  }
}
@media screen and (min-width: 768px) {
  .fv__sub-title {
    margin-left: 5.8125rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-weight: 600 !important;
    line-height: 2.2;
  }
}

@-webkit-keyframes sub-title {
  0% {
    -webkit-clip-path: inset(0% 100% 0% 0%);
            clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    -webkit-clip-path: inset(0% 0% 0% 0%);
            clip-path: inset(0% 0% 0% 0%);
  }
}

@keyframes sub-title {
  0% {
    -webkit-clip-path: inset(0% 100% 0% 0%);
            clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    -webkit-clip-path: inset(0% 0% 0% 0%);
            clip-path: inset(0% 0% 0% 0%);
  }
}
.fv__sub-title .under-line {
  position: relative;
  padding: 0 15px;
  padding: 0 0.9375rem;
  -webkit-animation: sub-title both 1.5s 1s;
          animation: sub-title both 1.5s 1s;
}

.fv__sub-title .under-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(130deg, transparent, transparent 7px, rgb(255, 239, 1) 7px, rgb(255, 239, 1) 11px);
  height: 5px;
  height: 0.3125rem;
  width: 100%;
}

.under-line {
  background-color: #fff;
}

.fv__explain {
  position: relative;
  display: inline-block;
  text-align: center;
  content: "";
  left: 50%;
  top: 43px;
  top: 2.6875rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: clamp(21px, 18.815px + 0.5825242718vw, 30px);
  font-size: clamp(1.3125rem, 1.1759708738rem + 0.5825242718vw, 1.875rem);
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .fv__explain {
    top: 8rem;
  }
}

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

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

.fv__explain .under-line {
  padding: 0 10px;
  padding: 0 0.625rem;
}

.fv__explain span {
  position: relative;
}

.fv__explain span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(130deg, transparent, transparent 7px, rgb(255, 239, 1) 7px, rgb(255, 239, 1) 11px);
  height: 5px;
  height: 0.3125rem;
  width: 100%;
}

.testt {
  position: relative;
}

.testt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(130deg, transparent, transparent 7px, rgb(255, 239, 1) 7px, rgb(255, 239, 1) 11px);
  height: 5px;
  height: 0.3125rem;
  width: 100%;
}

.charm {
  position: relative;
}

.charm::before {
  content: "";
  position: absolute;
  right: 0%;
  top: 19%;
  background-image: url(../images/common/icon_flower.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 32%;
  width: 25%;
  z-index: 1;
}
@media screen and (max-width: 520px) {
  .charm::before {
    right: 8%;
    top: 4%;
    height: 6%;
    width: 34%;
  }
}

.charm::after {
  content: "";
  position: absolute;
  left: 6%;
  bottom: -7%;
  background-image: url(../images/common/icon_flower.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 23%;
  width: 17%;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  .charm::after {
    left: 4%;
    bottom: -8.5%;
    height: 12%;
    width: 22%;
    z-index: 1;
  }
}
@media screen and (min-width: 768px) {
  .charm::after {
    height: 18%;
  }
}

.charm__inner.inner {
  max-width: 1235px;
}

.charm__wrapper {
  margin-top: 44px;
  margin-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .charm__wrapper {
    margin-top: 6rem;
  }
}

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

.charm__content + .charm__content {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .charm__content + .charm__content {
    margin-top: 3.875rem;
  }
}

.charm__textBlock {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .charm__textBlock {
    width: 50%;
  }
}
@media screen and (min-width: 1920px) {
  .charm__textBlock {
    width: 44%;
  }
}

.feature__number {
  display: block;
  color: #eb9500;
  position: relative;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: clamp(13px, 12.029px + 0.2588996764vw, 17px);
  font-size: clamp(0.8125rem, 0.7518203883rem + 0.2588996764vw, 1.0625rem);
  padding-left: 17px;
  padding-left: 1.0625rem;
}
@media screen and (max-width: 520px) {
  .feature__number {
    padding-left: 1.3125rem;
    margin-bottom: 0.125rem;
  }
}
@media screen and (min-width: 768px) {
  .feature__number {
    margin-bottom: 0.625rem;
  }
}

.feature__number::after {
  content: "";
  position: absolute;
  left: -8px;
  left: -0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/icon_sub-title.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 10px;
  height: 0.625rem;
  width: 20px;
  width: 1.25rem;
}
@media screen and (max-width: 520px) {
  .feature__number::after {
    height: 0.5625rem;
    width: 1rem;
    left: 0.125rem;
  }
}

.feature__number .number {
  font-size: clamp(23px, 22.029px + 0.2588996764vw, 27px);
  font-size: clamp(1.4375rem, 1.3768203883rem + 0.2588996764vw, 1.6875rem);
  padding-left: 8px;
  padding-left: 0.5rem;
}

.feature__heading {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: clamp(21px, 18.815px + 0.5825242718vw, 30px);
  font-size: clamp(1.3125rem, 1.1759708738rem + 0.5825242718vw, 1.875rem);
  display: inline-block;
  letter-spacing: 0.12em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  background: #fff;
  display: inline;
  line-height: 1.7;
}
@media screen and (max-width: 520px) {
  .feature__heading {
    margin-top: 0.5rem;
    padding-left: 0.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .feature__heading {
    margin-top: 0.75rem;
  }
}

.charm__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 520px) {
  .charm__text {
    line-height: 1.5;
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .charm__text {
    margin-top: 1.75rem;
    line-height: 1.86;
  }
}

.charm__imgBlock {
  width: 100%;
  margin-top: 61px;
  margin-top: 3.8125rem;
}
@media screen and (max-width: 520px) {
  .charm__imgBlock {
    width: 113%;
    margin: 3.8125rem calc(50% - 50vw);
  }
}
@media screen and (min-width: 768px) {
  .charm__imgBlock {
    margin-right: calc(58% - 55vw);
    width: 50%;
  }
}
@media screen and (min-width: 1366px) {
  .charm__imgBlock {
    width: 68%;
    margin-right: calc(58% - 55vw);
    margin-left: 0.4375rem;
    z-index: -1;
    margin-top: 0;
  }
}
@media screen and (min-width: 1920px) {
  .charm__imgBlock {
    width: 78%;
    margin-right: calc(56% - 45vw);
    z-index: -1;
    margin-top: 0;
  }
}

.charm__imgBlock img {
  aspect-ratio: 900/497;
  -o-object-fit: cover;
     object-fit: cover;
}

.department__inner {
  max-width: 1360px;
}

.department__wrapper {
  margin-top: 55px;
  margin-top: 3.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6%;
  row-gap: 39px;
  row-gap: 2.4375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .department__wrapper {
    margin-top: 3.1875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.6%;
    row-gap: 3.6875rem;
  }
}

.department__item {
  width: 43%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .department__item {
    width: 21%;
  }
}

.department__img {
  position: relative;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  overflow: hidden;
  border-radius: 20px;
}

.department__img:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.department__img img {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.department__item::after {
  content: "";
  position: absolute;
  right: -6px;
  right: -0.375rem;
  top: 73%;
  background-image: url(../images/common/icon_right-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 40px;
  height: 2.5rem;
  width: 40px;
  width: 2.5rem;
}
@media screen and (max-width: 520px) {
  .department__item::after {
    height: 1.25rem;
    width: 1.25rem;
    right: 0;
    top: 64%;
  }
}
@media screen and (min-width: 768px) {
  .department__item::after {
    top: 71%;
  }
}

.department__name {
  font-size: clamp(16px, 14.058px + 0.5177993528vw, 24px);
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .department__name {
    margin-top: 1.6875rem;
  }
}

.voice__inner {
  margin-right: auto;
  margin-left: auto;
  padding-left: 25px;
  padding-right: 25px;
  width: 90%;
}
@media screen and (max-width: 520px) {
  .voice__inner {
    padding: 0 1.25rem;
    width: 100%;
  }
}
@media screen and (min-width: 1366px) {
  .voice__inner {
    max-width: 1200px;
    width: 100%;
  }
}
@media screen and (min-width: 1920px) {
  .voice__inner {
    max-width: 1655px;
    width: 100%;
  }
}

.voice__content {
  padding: 32px 20px 103px;
  padding: 2rem 1.25rem 6.4375rem;
  background-color: #fff;
  position: relative;
  margin-top: 73px;
  margin-top: 4.5625rem;
  border-radius: 60px;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .voice__content {
    border-radius: 48px;
  }
}
@media screen and (min-width: 768px) {
  .voice__content {
    margin-top: 4.3125rem;
    padding: 3.8125rem 10.8125rem 4.1875rem;
  }
}

.swiper-wrapper {
  counter-reset: number; /* カウンタをリセット */
}

.js-voice-swiper {
  padding-top: 25px;
  padding-top: 1.5625rem;
  padding: 28px 26px 0;
  padding: 1.75rem 1.625rem 0;
}
@media screen and (max-width: 520px) {
  .js-voice-swiper {
    padding: 1.0625rem 0.4375rem 0;
  }
}
@media screen and (min-width: 768px) {
  .js-voice-swiper {
    padding: 2.5rem 2.5rem 1.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .js-voice-swiper {
    padding: 1.875rem 0.625rem;
  }
}

.voice__card {
  position: relative;
}
.voice__number {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  margin-left: 30px;
  margin-left: 1.875rem;
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 520px) {
  .voice__number {
    margin-left: 1.6875rem;
  }
}

.voice__number span {
  font-size: clamp(28px, 25.087px + 0.7766990291vw, 40px);
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  position: relative;
  z-index: 2;
  color: transparent;
  -webkit-text-stroke: 1px #eb9500;
  text-stroke: 1px #eb9500;
}

.voice__number::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 34%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/common/icon_number.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 100px;
  height: 6.25rem;
  width: 100px;
  width: 6.25rem;
}
@media screen and (max-width: 520px) {
  .voice__number::after {
    height: 4.6875rem;
    width: 4.6875rem;
  }
}

.voice__img {
  position: relative;
}

.voice__img img {
  aspect-ratio: 400/361;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px 40px 0 0;
}
@media screen and (max-width: 520px) {
  .voice__img img {
    aspect-ratio: 400/346;
    border-radius: 28px 28px 0 0;
  }
}

.voice__tag {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
  font-size: clamp(17px, 15.3px + 0.4530744337vw, 24px);
  font-size: clamp(1.0625rem, 0.9563106796rem + 0.4530744337vw, 1.5rem);
  background-color: #eb9500;
  border-radius: 20px;
  color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -1em;
  min-width: 200px;
  min-width: 12.5rem;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .voice__tag {
    border-radius: 8px;
    min-width: 8.75rem;
  }
}

.voice__body {
  background-color: #f8f6ea;
  text-align: left;
  text-align: initial;
  padding: 66px 30px 31px;
  padding: 4.125rem 1.875rem 1.9375rem;
  border-radius: 0 0 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 520px) {
  .voice__body {
    padding: 3rem 1.875rem 1.9375rem;
  }
}

.voice__text {
  font-size: clamp(17px, 15.3px + 0.4530744337vw, 24px);
  font-size: clamp(1.0625rem, 0.9563106796rem + 0.4530744337vw, 1.5rem);
  min-height: 72px;
}

.voice__detail {
  font-size: clamp(17px, 15.3px + 0.4530744337vw, 24px);
  font-size: clamp(1.0625rem, 0.9563106796rem + 0.4530744337vw, 1.5rem);
  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;
}

.voice__detail span {
  font-size: 16px;
  font-size: 1rem;
}

.voice__footer {
  text-align: center;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .voice__footer {
    margin-top: 3.3125rem;
  }
}

.voice__footer-button {
  display: inline-block;
  padding: 17px 41px 17px 43px;
  padding: 1.0625rem 2.5625rem 1.0625rem 2.6875rem;
  color: #fff;
  background-color: #eb9500;
  border-radius: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.21em;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 520px) {
  .voice__footer-button {
    letter-spacing: 0.09em;
    padding: 1.0625rem 2.5625rem;
  }
}

.voice__footer-button::after {
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.voice__footer-button:hover {
  background-color: #fff;
  color: #eb9500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.voice__footer-button:hover::after {
  border-top: solid 2px #eb9500;
  border-right: solid 2px #eb9500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 520px) {
  .numbers__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.numbers__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1%;
  row-gap: 10px;
  row-gap: 0.625rem;
  margin-top: 65px;
  margin-top: 4.0625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .numbers__list {
    margin-top: 5.875rem;
    max-width: 1176px;
    margin-right: auto;
    margin-left: auto;
  }
}

.numbers__list-item {
  width: 48%;
  border-radius: 28px;
  border: 4px solid #f0e99a;
  border: 0.25rem solid #f0e99a;
  background-color: #fff;
  padding-top: 10px;
  padding-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .numbers__list-item {
    width: 23.9%;
    border: 0.4375rem solid #f0e99a;
    padding: 0.9375rem 0 0.3125rem;
    border-radius: 40px;
  }
}

.numbers__inner .numbers__list-item:nth-last-child(-n+3) {
  width: 48%;
}
@media screen and (min-width: 768px) {
  .numbers__inner .numbers__list-item:nth-last-child(-n+3) {
    width: 32%;
  }
}

.numbers__inner .numbers__list-item:last-child {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .numbers__inner .numbers__list-item:last-child {
    width: 32%;
  }
}

.numbers__list-title {
  text-align: center;
  font-size: clamp(16px, 14.058px + 0.5177993528vw, 24px);
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  letter-spacing: 0.1em;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
}

.numbers__list-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(130deg, transparent, transparent 7px, rgb(255, 239, 1) 7px, rgb(255, 239, 1) 11px);
  height: 5px;
  height: 0.3125rem;
  width: 100%;
}

.numbers__list-img {
  width: 58%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 11px;
  margin-top: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .numbers__list-img {
    margin-top: 1.5625rem;
    width: 56%;
  }
}

.numbers__list-img.department {
  width: 56%;
}
@media screen and (min-width: 768px) {
  .numbers__list-img.department {
    width: 64%;
  }
}

.numbers__list-img.publish {
  width: 40%;
}
@media screen and (min-width: 768px) {
  .numbers__list-img.publish {
    width: 40%;
  }
}

.numbers__list-img.time {
  width: 34%;
}
@media screen and (min-width: 768px) {
  .numbers__list-img.time {
    width: 24%;
  }
}

.numbers__list-img.digestion {
  width: 43%;
}
@media screen and (min-width: 768px) {
  .numbers__list-img.digestion {
    width: 44%;
  }
}

.numbers__list-img.paid {
  width: 34%;
}
@media screen and (min-width: 768px) {
  .numbers__list-img.paid {
    width: 44%;
  }
}

.numbers__list-img.doctor {
  width: 34%;
}
@media screen and (min-width: 768px) {
  .numbers__list-img.doctor {
    width: 50%;
  }
}

.numbers__list-number {
  text-align: center;
  line-height: 1.3;
  font-size: clamp(16px, 13.33px + 0.71197411vw, 27px);
  font-size: clamp(1rem, 0.833131068rem + 0.71197411vw, 1.6875rem);
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .numbers__list-number {
    line-height: 1.2;
  }
}

.large-orange {
  color: #eb9500;
  font-size: clamp(40px, 33.446px + 1.7475728155vw, 67px);
  font-size: clamp(2.5rem, 2.0904126214rem + 1.7475728155vw, 4.1875rem);
  font-family: "Rubik", sans-serif;
  letter-spacing: 0.01em;
  margin-right: 5px;
  margin-right: 0.3125rem;
}

.numbers__footer {
  text-align: center;
  margin-top: 46px;
  margin-top: 2.875rem;
}
@media screen and (min-width: 768px) {
  .numbers__footer {
    margin-top: 4.3125rem;
  }
}

.numbers__footer-link {
  display: inline-block;
  padding: 17px 30px;
  padding: 1.0625rem 1.875rem;
  color: #fff;
  background-color: #eb9500;
  border-radius: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.21em;
  position: relative;
  min-width: 280px;
  min-width: 17.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 520px) {
  .numbers__footer-link {
    letter-spacing: 0.09em;
    padding: 1.0625rem 2.5625rem;
  }
}

.numbers__footer-link::after {
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.numbers__footer-link:hover {
  background-color: #fff;
  color: #eb9500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.numbers__footer-link:hover::after {
  border-top: solid 2px #eb9500;
  border-right: solid 2px #eb9500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.banner {
  background-image: url(../images/common/banner-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .banner {
    background-size: cover;
    background-image: url(../images/common/bannar.png);
  }
}

.banner__inner {
  padding-top: 111px;
  padding-top: 6.9375rem;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .banner__inner {
    padding-top: 6.1875rem;
    padding-bottom: 6.125rem;
  }
}

.banner__wraperr {
  background-color: #fff;
  padding-top: 33px;
  padding-top: 2.0625rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  border-radius: 32px;
}
@media screen and (min-width: 768px) {
  .banner__wraperr {
    padding-top: 3rem;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
}

.banner__title {
  letter-spacing: 0.12em;
}

.banner__message-block {
  text-align: center;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .banner__message-block {
    margin-top: 4rem;
  }
}

.banner__message {
  font-size: clamp(18px, 14.844px + 0.8414239482vw, 31px);
  font-size: clamp(1.125rem, 0.9277912621rem + 0.8414239482vw, 1.9375rem);
  text-align: center;
  margin-top: 65px;
  margin-top: 4.0625rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  background-color: #fff09d;
}
@media screen and (max-width: 520px) {
  .banner__message {
    line-height: 1.78;
  }
}

.banner__wraperr p {
  font-size: clamp(16px, 14.058px + 0.5177993528vw, 24px);
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
  letter-spacing: 0.07em;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  .banner__wraperr p {
    margin-top: 0.9375rem;
  }
}

.banner__footer {
  text-align: center;
  margin-top: 19px;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .banner__footer {
    margin-top: 3.125rem;
  }
}

.banner__link {
  display: inline-block;
  padding: 17px 30px;
  padding: 1.0625rem 1.875rem;
  color: #eb9500;
  background-color: #fff;
  border: 2px solid #eb9500;
  border: 0.125rem solid #eb9500;
  border-radius: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.21em;
  min-width: 280px;
  min-width: 17.5rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 520px) {
  .banner__link {
    letter-spacing: 0.12em;
    padding: 1.0625rem 2.5625rem;
  }
}

.banner__link::after {
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-top: solid 2px #eb9500;
  border-right: solid 2px #eb9500;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.banner__link:hover::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.banner__link:hover {
  background-color: #eb9500;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
/*# sourceMappingURL=styles.css.map */
