@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #000;
  line-height: 1.5;
}

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

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

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

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

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

button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  button:hover {
    opacity: 1;
  }
}

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

/* Remove default type */
ul,
ol {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

/* Remove default margin padding */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

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

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

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

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

/* フォームリセット */
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;
}

button {
  padding: 0;
}

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

/* l-page */
.l-page {
  padding: 160px 0 80px;
  padding: 10rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .l-page {
    padding: 6.25rem 0 2.5rem;
  }
}

/* bg */
.bg {
  position: fixed;
  left: -124px;
  left: -7.75rem;
  top: 0;
  width: 580px;
  width: 36.25rem;
  height: 538px;
  height: 33.625rem;
  background: url(/recruit/assets/img/common/bg.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .bg {
    width: 13rem;
    height: 12.0625rem;
    left: -2.3125rem;
  }
}

/* breadcrumb */
.breadcrumb__item {
  display: inline;
}
.breadcrumb__item + .breadcrumb__item {
  margin-left: 25px;
  margin-left: 1.5625rem;
  position: relative;
}
.breadcrumb__item + .breadcrumb__item::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 10px;
  height: 0.625rem;
  top: 8px;
  top: 0.5rem;
  left: -16px;
  left: -1rem;
}
.breadcrumb__item a, .breadcrumb__item span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item a, .breadcrumb__item span {
    display: inline;
  }
}

/* btn */
.btn {
  display: block;
  width: 230px;
  width: 14.375rem;
  max-width: 100%;
  letter-spacing: 0.06em;
  border: 1px solid #000;
  border: 0.0625rem solid #000;
  padding: 17px 20px;
  padding: 1.0625rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 10rem;
    font-size: 0.875rem;
    padding: 0.5rem 0.9375rem;
  }
}
.btn::after {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  background: url(/recruit/assets/img/common/arrow-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .btn::after {
    right: 0.9375rem;
  }
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-box-shadow: -0.3125rem 0.3125rem 1.25rem rgba(0, 0, 0, .2);
          box-shadow: -0.3125rem 0.3125rem 1.25rem rgba(0, 0, 0, .2);
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  padding: 80px 25px 40px;
  padding: 5rem 1.5625rem 2.5rem;
}
.drawer.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer__item + .drawer__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.drawer__item a {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-left: 13px;
  padding-left: 0.8125rem;
  position: relative;
}
.drawer__item a::before {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  border-radius: 50%;
  background: #819F49;
}

.drawer__btn {
  text-align: center;
  display: block;
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: #C1362F;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
  padding: 15px;
  padding: 0.9375rem;
  position: relative;
}
.drawer__btn::after {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  background: url(/recruit/assets/img/common/arrow-icon01.png) no-repeat center/contain;
}

/* floating */
.floating {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, .4);
  padding: 10px;
  padding: 0.625rem;
}
.floating a {
  display: block;
  width: 720px;
  width: 45rem;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background: #C1362F;
  position: relative;
  padding: 17px;
  padding: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .floating a {
    padding: 0.9375rem;
  }
}
.floating a::after {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  background: url(/recruit/assets/img/common/arrow-icon01.png) no-repeat center/contain;
}

.floating--top {
  display: none;
  z-index: 10;
}

/* fnav */
.fnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .fnav__items {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .fnav__item + .fnav__item {
    margin-top: 1.5625rem;
  }
}
.fnav__item a {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  padding-left: 13px;
  padding-left: 0.8125rem;
  position: relative;
}
.fnav__item a::before {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
}

/* footer */
.footer {
  color: #fff;
  background: #C1362F;
  padding: 60px 0 120px;
  padding: 3.75rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 2.5rem 0 6.25rem;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    display: block;
  }
}

.footer__logo {
  width: 150px;
  width: 9.375rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 6.25rem;
    margin: 0 auto;
  }
}

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

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

.footer__copyright {
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    text-align: center;
    font-size: 0.9375rem;
    margin-top: 1.875rem;
  }
}

/* form */
.form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .form__item {
    display: block;
  }
}
.form__item + .form__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .form__item + .form__item {
    margin-top: 1.875rem;
  }
}

.form__item-label {
  width: 28%;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__item-label {
    width: 100%;
    padding-top: 0;
  }
}
.form__item-label label {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .form__item-label label {
    font-size: 1rem;
  }
}
.form__item-label span {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #C1362F;
  letter-spacing: 0.06em;
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__item-label span {
    font-size: 0.875rem;
  }
}

.form__item-input {
  width: 72%;
}
@media screen and (max-width: 767px) {
  .form__item-input {
    width: 100%;
    margin-top: 0.625rem;
  }
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input textarea {
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  border: 1px solid #ccc;
  border: 0.0625rem solid #ccc;
  padding: 10px 15px;
  padding: 0.625rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input textarea {
    font-size: 1rem;
  }
}
.form__item-input input[type=text]::-webkit-input-placeholder, .form__item-input input[type=tel]::-webkit-input-placeholder, .form__item-input input[type=email]::-webkit-input-placeholder, .form__item-input textarea::-webkit-input-placeholder {
  color: #B3B3B3;
}
.form__item-input input[type=text]::-moz-placeholder, .form__item-input input[type=tel]::-moz-placeholder, .form__item-input input[type=email]::-moz-placeholder, .form__item-input textarea::-moz-placeholder {
  color: #B3B3B3;
}
.form__item-input input[type=text]::-ms-input-placeholder, .form__item-input input[type=tel]::-ms-input-placeholder, .form__item-input input[type=email]::-ms-input-placeholder, .form__item-input textarea::-ms-input-placeholder {
  color: #B3B3B3;
}
.form__item-input input[type=text]::placeholder, .form__item-input input[type=tel]::placeholder, .form__item-input input[type=email]::placeholder, .form__item-input textarea::placeholder {
  color: #B3B3B3;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email] {
  height: 48px;
  height: 3rem;
}
.form__item-input textarea {
  resize: none;
  height: 160px;
  height: 10rem;
}

.form__item-text {
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  margin-top: 2px;
  margin-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .form__item-text {
    font-size: 0.875rem;
  }
}

.form__radio label {
  display: inline-block;
}
.form__radio label:not(:last-child) {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.form__radio input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  padding-left: 30px;
  padding-left: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__radio input[type=radio] + span {
    font-size: 1rem;
  }
}
.form__radio input[type=radio] + span::before, .form__radio input[type=radio] + span::after {
  position: absolute;
  content: "";
}
.form__radio input[type=radio] + span::before {
  display: block;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ccc;
  border: 0.0625rem solid #ccc;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
}
.form__radio input[type=radio] + span::after {
  height: 12px;
  height: 0.75rem;
  width: 12px;
  width: 0.75rem;
  background: #000;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 6px;
  left: 0.375rem;
  top: 8px;
  top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .form__radio input[type=radio] + span::after {
    top: 0.375rem;
  }
}
.form__radio input[type=radio]:checked + span::after {
  opacity: 1;
}

.form__school .form__item-label {
  width: 10%;
}
@media screen and (max-width: 767px) {
  .form__school .form__item-label {
    width: 100%;
  }
}
.form__school .form__item-input {
  width: 87.5%;
}
@media screen and (max-width: 767px) {
  .form__school .form__item-input {
    width: 100%;
  }
}

.form__subitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  gap: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .form__subitem {
    gap: 0.625rem;
  }
}
.form__subitem + .form__subitem {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.form__subitem-label label {
  display: inline-block;
  width: 115px;
  width: 7.1875rem;
  min-width: 115px;
  min-width: 7.1875rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .form__subitem-label label {
    width: 6.5625rem;
    min-width: 6.5625rem;
    font-size: 1rem;
  }
}

.form__subitem-input {
  width: 100%;
}

.form__box {
  background: #F7F7F7;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 40px 40px;
  padding: 2.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .form__box {
    padding: 1.25rem;
    margin-top: 1.875rem;
  }
}

.form__box-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .form__box-text {
    font-size: 0.875rem;
  }
}

.form__box-subtext {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  line-height: 1.44;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__box-subtext {
    font-size: 0.875rem;
  }
}

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

.form__box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__box-item {
    display: block;
  }
}
.form__box-item + .form__box-item {
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .form__box-item + .form__box-item {
    margin-top: 1.25rem;
  }
}

.form__box-item-label label {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .form__box-item-label label {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .form__box-item-input {
    margin-top: 0.625rem;
  }
}

.form__file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  gap: 0.875rem;
}
@media screen and (max-width: 767px) {
  .form__file {
    display: block;
  }
}
.form__file input[type=file], .form__file .mwform-file-delete {
  display: none !important;
}

.form__file-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  gap: 0.9375rem;
}

.form__file-label {
  text-align: center;
  display: block;
  width: 220px;
  width: 13.75rem;
  max-width: 100%;
  border: 1px solid #ccc;
  border: 0.0625rem solid #ccc;
  background: #F0F0F0;
  letter-spacing: 0.05em;
  padding: 10px 0;
  padding: 0.625rem 0;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__file-label {
    width: 15.625rem;
    font-size: 0.9375rem;
  }
}

.form__file-text {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .form__file-text {
    font-size: 0.9375rem;
    margin-top: 0.3125rem;
  }
}

.form__file-delete {
  display: none;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__file-delete {
    margin-top: 0.3125rem;
  }
}
.form__file-delete::before, .form__file-delete::after {
  position: absolute;
  content: "";
  height: 2px;
  height: 0.125rem;
  width: 15px;
  width: 0.9375rem;
  background: #000;
  top: 50%;
  left: 50%;
}
.form__file-delete::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.form__file-delete::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.form__check {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .form__check {
    margin-top: 1.875rem;
  }
}
.form__check input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  padding-left: 34px;
  padding-left: 2.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__check input[type=checkbox] + span {
    font-size: 0.9375rem;
  }
}
.form__check input[type=checkbox] + span::before, .form__check input[type=checkbox] + span::after {
  position: absolute;
  content: "";
}
.form__check input[type=checkbox] + span::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  left: 0;
  top: 50%;
  border: 1px solid #CFCFCF;
  border: 0.0625rem solid #CFCFCF;
}
.form__check input[type=checkbox] + span::after {
  border-bottom: 3px solid #000;
  border-bottom: 0.1875rem solid #000;
  border-left: 3px solid #000;
  border-left: 0.1875rem solid #000;
  height: 8px;
  height: 0.5rem;
  width: 13px;
  width: 0.8125rem;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 6px;
  left: 0.375rem;
  top: 8px;
  top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .form__check input[type=checkbox] + span::after {
    top: 0.375rem;
  }
}
.form__check input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.form__check a {
  text-decoration: underline;
  color: #C1362F;
}

.form__button {
  display: block;
  width: 320px;
  width: 20rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: #C3C3C3;
  letter-spacing: 0.06em;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
  padding: 26px;
  padding: 1.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__button {
    font-size: 1rem;
    margin-top: 1.875rem;
    padding: 1.5rem;
  }
}
.form__button::after {
  position: absolute;
  content: "";
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  background: url(/recruit/assets/img/common/arrow-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .form__button::after {
    right: 1.25rem;
  }
}
.form__button:hover {
  opacity: 1;
}

/* gnav */
.gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  gap: 3.125rem;
  height: 70px;
  height: 4.375rem;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, .08);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .9);
  padding-left: 50px;
  padding-left: 3.125rem;
}
@media screen and (max-width: 1350px) {
  .gnav {
    padding-left: 1.875rem;
    gap: 1.875rem;
  }
}

.gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  gap: 3.125rem;
  height: inherit;
}
@media screen and (max-width: 1350px) {
  .gnav__items {
    gap: 1.875rem;
  }
}

.gnav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
.gnav__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-left: 13px;
  padding-left: 0.8125rem;
  position: relative;
}
@media screen and (max-width: 1350px) {
  .gnav__item a {
    font-size: 0.9375rem;
  }
}
.gnav__item a::before {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  border-radius: 50%;
  background: #76AA16;
}

.gnav__btn {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 0 0.25rem 0.25rem 0;
  background: #C1362F;
  position: relative;
}
.gnav__btn::after {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  background: url(/recruit/assets/img/common/arrow-icon01.png) no-repeat center/contain;
}

/* hamburger */
.hamburger {
  position: absolute;
  z-index: 30;
  right: 10px;
  right: 0.625rem;
  top: 10px;
  top: 0.625rem;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, .08);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .9);
  cursor: pointer;
  text-align: center;
}
.hamburger.active .hamburger__border {
  top: 20px;
  top: 1.25rem;
}
.hamburger.active .hamburger__border:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger.active .hamburger__border:nth-child(2), .hamburger.active .hamburger__border:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger__border {
  display: block;
  position: absolute;
  width: 15px;
  width: 0.9375rem;
  height: 2px;
  height: 0.125rem;
  left: 13px;
  left: 0.8125rem;
  background: #76AA16;
  border-radius: 0.625rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger__border:nth-child(1) {
  top: 15px;
  top: 0.9375rem;
}
.hamburger__border:nth-child(2) {
  top: 20px;
  top: 1.25rem;
}
.hamburger__border:nth-child(3) {
  top: 25px;
  top: 1.5625rem;
}

/* header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.header__logo {
  width: 150px;
  width: 9.375rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 5rem;
  }
}
.header__logo a {
  display: block;
}

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

/* main */
.main {
  overflow: hidden;
}

/* modal */
.modal {
  display: none;
  z-index: 1000;
  position: relative;
}
.modal.is-open {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal__overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .23);
  left: 0;
  top: 0;
  z-index: 100;
}

.modal__content {
  position: absolute;
  width: 1200px;
  width: 75rem;
  max-width: 94%;
  background: #fff;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100;
  padding: 60px 120px;
  padding: 3.75rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .modal__content {
    padding: 2.5rem 3.125rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 1.25rem;
    bottom: 1.25rem;
    overflow-y: auto;
  }
}

.modal__text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .modal__text {
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.72;
  }
}

.modal__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  gap: 2.5rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .modal__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem;
    margin-top: 0.9375rem;
  }
}

.modal__item:first-child .modal__item-logo {
  width: 195px;
  width: 12.1875rem;
}
@media screen and (max-width: 767px) {
  .modal__item:first-child .modal__item-logo {
    width: 6.6875rem;
  }
}
.modal__item:first-child .modal__item-text {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .modal__item:first-child .modal__item-text {
    margin-top: 0.625rem;
  }
}
.modal__item:nth-child(2) .modal__item-logo {
  width: 236px;
  width: 14.75rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .modal__item:nth-child(2) .modal__item-logo {
    width: 8.1875rem;
  }
}
.modal__item:nth-child(2) .modal__item-text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .modal__item:nth-child(2) .modal__item-text {
    margin-top: 0.9375rem;
  }
}

.modal__item-header {
  background: #F1F1F2;
  padding: 40px 20px 20px;
  padding: 2.5rem 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .modal__item-header {
    padding: 1.25rem 1.25rem 0.625rem;
  }
}

.modal__item-logo {
  max-width: 100%;
  margin: 0 auto;
}

.modal__item-text {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .modal__item-text {
    font-size: 0.625rem;
  }
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
  background: url(/recruit/assets/img/common/close-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .modal__close {
    width: 2rem;
    height: 2rem;
  }
}
.modal__close:hover {
  opacity: 1;
}

/* mv */
/* news */
.news__item + .news__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .news__item + .news__item {
    margin-top: 0.625rem;
  }
}

.news__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px rgba(65, 60, 60, .08);
          box-shadow: 0px 0px 16px rgba(65, 60, 60, .08);
  padding: 28px 40px;
  padding: 1.75rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news__item-inner {
    display: block;
    padding: 1.125rem 3.75rem 1.125rem 1.25rem;
  }
}
.news__item-inner::after {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  background: url(/recruit/assets/img/common/arrow-icon02.png) no-repeat center/contain;
}

.news__item-date {
  display: inline-block;
  min-width: 127px;
  min-width: 7.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #C1362F;
}
@media screen and (max-width: 767px) {
  .news__item-date {
    font-size: 0.9375rem;
  }
}

.news__item-title {
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    font-size: 0.9375rem;
    margin-top: 0.1875rem;
  }
}

/* page-title */
.page-title {
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .page-title {
    font-size: 1.5rem;
  }
}

/* pagetop */
.pagetop {
  text-align: right;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .pagetop {
    padding-bottom: 0.625rem;
  }
}
.pagetop a {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: url(/recruit/assets/img/common/pagetop-icon.png) no-repeat center right/16px;
  background: url(/recruit/assets/img/common/pagetop-icon.png) no-repeat center right/1rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    font-size: 0.875rem;
  }
}
.pagetop.bg-gray {
  background: #FAFAFA;
}

/* pagination */
.pagination {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 2.5rem;
  }
}
.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .pagination ul {
    gap: 0.5rem;
  }
}
.pagination a, .pagination span {
  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;
  width: 40px;
  width: 2.5rem;
  min-width: 40px;
  min-width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  border: 1px solid #000;
  border: 0.0625rem solid #000;
}
@media screen and (max-width: 767px) {
  .pagination a, .pagination span {
    width: 2.1875rem;
    min-width: 2.1875rem;
    height: 2.1875rem;
  }
}
.pagination .current {
  color: #C1362F;
  border-color: #C1362F;
}
.pagination .dots {
  border: none;
  width: unset;
  min-width: unset;
}
.pagination .prev {
  background: url(/recruit/assets/img/common/back-icon.png) no-repeat center/8px;
  background: url(/recruit/assets/img/common/back-icon.png) no-repeat center/0.5rem;
  margin-right: 45px;
  margin-right: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .pagination .prev {
    margin-right: 1.25rem;
  }
}
.pagination .next {
  background: url(/recruit/assets/img/common/arrow-icon02.png) no-repeat center/8px;
  background: url(/recruit/assets/img/common/arrow-icon02.png) no-repeat center/0.5rem;
  margin-left: 45px;
  margin-left: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .pagination .next {
    margin-left: 1.25rem;
  }
}

/* subtitle */
.subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #C1362F;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 0.875rem;
    margin-top: 0.4375rem;
  }
}

/* title */
.title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 1.5rem;
  }
}

/* entry */
.entry__content {
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px rgba(65, 60, 60, .08);
          box-shadow: 0px 0px 16px rgba(65, 60, 60, .08);
  padding: 60px 150px;
  padding: 3.75rem 9.375rem;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .entry__content {
    padding: 2.5rem 1.25rem;
    margin-top: 2.5rem;
  }
}

/* interview */
.interview__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 400px;
  min-height: 25rem;
  padding-top: 80px;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .interview__header {
    display: block;
    min-height: unset;
    padding-top: 1.25rem;
  }
}

.interview__header-inner {
  position: relative;
}

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

.interview__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #C1362F;
}
@media screen and (max-width: 767px) {
  .interview__subtitle {
    font-size: 1.125rem;
  }
}

.interview__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.45;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .interview__title {
    font-size: 1.75rem;
    margin-top: 1.25rem;
  }
}

.interview__name {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #819F49;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .interview__name {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}

.interview__year {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .interview__year {
    font-size: 1.125rem;
  }
}

.interview__img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 66%;
}
@media screen and (max-width: 767px) {
  .interview__img {
    position: static;
    -webkit-transform: unset;
            transform: unset;
    width: 100%;
    max-height: 28.75rem;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: 1.875rem;
  }
}

.interview__content {
  padding: 130px 0 60px;
  padding: 8.125rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .interview__content {
    padding: 3.75rem 0 2.5rem;
  }
}

.interview__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, .08);
          box-shadow: 0px 0px 16px rgba(0, 0, 0, .08);
}
@media screen and (max-width: 767px) {
  .interview__unit {
    display: block;
  }
}
.interview__unit + .interview__unit {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .interview__unit + .interview__unit {
    margin-top: 2.5rem;
  }
}
.interview__unit:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.interview__unit-number {
  text-align: center;
  width: 120px;
  width: 7.5rem;
  min-width: 120px;
  min-width: 7.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  color: #819F49;
  line-height: 1.1;
  font-weight: 500;
  background: #EDF2E4;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .interview__unit-number {
    width: 100%;
    font-size: 1.25rem;
    padding: 0.9375rem;
  }
}
.interview__unit-number span {
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .interview__unit-number span {
    font-size: 2rem;
  }
}

.interview__unit-body {
  width: 100%;
  padding: 40px 60px;
  padding: 2.5rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .interview__unit-body {
    padding: 1.875rem 1.25rem;
  }
}

.interview__unit-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #C1362F;
  border-bottom: 1px solid #C1362F;
  border-bottom: 0.0625rem solid #C1362F;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .interview__unit-title {
    font-size: 1.125rem;
    padding-bottom: 0.9375rem;
  }
}

.interview__unit-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  gap: 0.75rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .interview__unit-inner {
    margin-top: 1.25rem;
  }
}

.interview__unit-icon {
  width: 113px;
  width: 7.0625rem;
  min-width: 113px;
  min-width: 7.0625rem;
}
@media screen and (max-width: 767px) {
  .interview__unit-icon {
    width: 5rem;
    min-width: 5rem;
  }
}

.interview__unit-texts {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .interview__unit-texts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.interview__unit-texts::after {
  content: "";
  display: block;
  clear: both;
}

.interview__unit-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .interview__unit-text {
    font-size: 0.875rem;
  }
}

.interview__unit-img {
  float: right;
  width: 410px;
  width: 25.625rem;
  max-width: 100%;
  -webkit-box-shadow: 0px 0px 16px rgba(65, 60, 60, .08);
          box-shadow: 0px 0px 16px rgba(65, 60, 60, .08);
  margin-top: -120px;
  margin-top: -7.5rem;
  margin-left: 50px;
  margin-left: 3.125rem;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  margin-right: 30px;
  margin-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .interview__unit-img {
    float: unset;
    width: 100%;
    margin: 0.9375rem auto 0;
  }
}
.interview__unit-img.mt-160 {
  margin-top: -160px;
  margin-top: -10rem;
}
@media screen and (max-width: 767px) {
  .interview__unit-img.mt-160 {
    margin-top: 0.9375rem;
  }
}

.interview__schedule {
  background: #FAFAFA;
  padding: 60px 0;
  padding: 3.75rem 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .interview__schedule {
    padding: 2.5rem 0;
  }
}
.interview__schedule .l-inner {
  max-width: 1050px;
  max-width: 65.625rem;
}

.interview__schedule-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .interview__schedule-inner {
    display: block;
  }
}
.interview__schedule-inner::before {
  position: absolute;
  content: "";
  width: 395px;
  width: 24.6875rem;
  height: 237px;
  height: 14.8125rem;
  left: -150px;
  left: -9.375rem;
  bottom: -24px;
  bottom: -1.5rem;
  background: url(/recruit/assets/img/interview/interview-bg.png) no-repeat no-repeat center/contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .interview__schedule-inner::before {
    width: 12.5rem;
    height: 7.5rem;
    left: -3.75rem;
    bottom: -2.5rem;
  }
}

.interview__schedule-title {
  width: 27%;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 700;
  color: #819F49;
  letter-spacing: 0.06em;
  line-height: 1.44;
  background: url(/recruit/assets/img/common/time-icon.png) no-repeat top 3px left/32px;
  background: url(/recruit/assets/img/common/time-icon.png) no-repeat top 0.1875rem left/2rem;
  padding-left: 44px;
  padding-left: 2.75rem;
}
@media screen and (max-width: 767px) {
  .interview__schedule-title {
    width: 100%;
    font-size: 1.25rem;
    padding-left: 2.1875rem;
    background: url(/recruit/assets/img/common/time-icon.png) no-repeat top 0.125rem left/1.5625rem;
  }
}

.interview__list {
  width: 73%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .interview__list {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.interview__list::before {
  position: absolute;
  content: "";
  height: 100vh;
  width: 1px;
  width: 0.0625rem;
  left: 8px;
  left: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #C1362F;
}
@media screen and (max-width: 767px) {
  .interview__list::before {
    height: 100%;
    top: 0.625rem;
    -webkit-transform: unset;
            transform: unset;
    left: 0.3125rem;
  }
}

.interview__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.interview__list-item + .interview__list-item {
  margin-top: 38px;
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .interview__list-item + .interview__list-item {
    margin-top: 1.25rem;
  }
}

.interview__list-time {
  min-width: 105px;
  min-width: 6.5625rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #C1362F;
  padding-left: 27px;
  padding-left: 1.6875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .interview__list-time {
    min-width: 5rem;
    font-size: 1.125rem;
    padding-left: 1.25rem;
  }
}
.interview__list-time::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 17px;
  width: 1.0625rem;
  height: 17px;
  height: 1.0625rem;
  left: 0;
  top: 8px;
  top: 0.5rem;
  background: #C1362F;
}
@media screen and (max-width: 767px) {
  .interview__list-time::before {
    width: 0.75rem;
    height: 0.75rem;
    top: 0.5625rem;
  }
}

.interview__list-title {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .interview__list-title {
    font-size: 1.125rem;
  }
}

.interview__list-text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .interview__list-text {
    font-size: 0.875rem;
  }
}

.interview__footer {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .interview__footer {
    margin-top: 2.5rem;
  }
}
.interview__footer .interview__unit {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* other */
.other {
  background: #FAFAFA;
  padding: 80px 0 60px;
  padding: 5rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .other {
    padding: 2.5rem 0;
  }
}

.other__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  gap: 3.75rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .other__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.other__card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, .08);
          box-shadow: 0px 0px 16px rgba(0, 0, 0, .08);
}
.other__card-inner:hover {
  opacity: 1;
}
.other__card-inner:hover .other__card-img img:first-child {
  opacity: 0;
}
.other__card-inner:hover .other__card-img img:nth-child(2) {
  opacity: 1;
}

.other__card-img {
  padding-top: 71.0204081633%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .other__card-img {
    padding-top: 70.625%;
  }
}
.other__card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.other__card-img img:nth-child(2) {
  opacity: 0;
}

.other__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 30px 30px;
  padding: 1.875rem 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .other__card-body {
    padding: 1.25rem 1.25rem;
  }
}
.other__card-body::after {
  position: absolute;
  content: "";
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  right: 30px;
  right: 1.875rem;
  bottom: 30px;
  bottom: 1.875rem;
  background: url(/recruit/assets/img/common/arrow-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .other__card-body::after {
    width: 0.5rem;
    height: 0.5rem;
    right: 0.9375rem;
    bottom: 0.9375rem;
  }
}

.other__card-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.45;
  margin-bottom: 17px;
  margin-bottom: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .other__card-title {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 0.4375rem;
  }
}

.other__card-name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #819F49;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .other__card-name {
    font-size: 0.9375rem;
  }
}

.other__card-year {
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .other__card-year {
    font-size: 0.8125rem;
    margin-top: 0;
  }
}

/* news-archive */
.news-archive .l-inner {
  max-width: 1010px;
  max-width: 63.125rem;
}

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

.news-archive__btn {
  margin: 80px auto 0;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .news-archive__btn {
    margin-top: 2.5rem;
  }
}

/* news-single */
.news-single__date {
  text-align: center;
  display: block;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #C1362F;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .news-single__date {
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
  }
}

.news-single__content {
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px rgba(65, 60, 60, .08);
          box-shadow: 0px 0px 16px rgba(65, 60, 60, .08);
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 80px 120px;
  padding: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .news-single__content {
    padding: 2.5rem 1.25rem;
  }
}

.news-single__post h2, .news-single__post h3, .news-single__post h4, .news-single__post h5, .news-single__post h6 {
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin: 0;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h2, .news-single__post h3, .news-single__post h4, .news-single__post h5, .news-single__post h6 {
    line-height: 1.6;
  }
}
.news-single__post h2 {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h2 {
    font-size: 1.125rem;
  }
}
.news-single__post h3, .news-single__post h4, .news-single__post h5, .news-single__post h6 {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h3, .news-single__post h4, .news-single__post h5, .news-single__post h6 {
    font-size: 1rem;
  }
}
.news-single__post p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .news-single__post p {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.news-single__post p:not(:last-child) {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .news-single__post p:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.news-single__post figure img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
.news-single__post figure:not(:last-child) {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .news-single__post figure:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.news-single__post ul:not(:last-child), .news-single__post ol:not(:last-child) {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .news-single__post ul:not(:last-child), .news-single__post ol:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.news-single__post ul li {
  padding-left: 1em;
  position: relative;
}
.news-single__post ul li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.news-single__post ol {
  margin-left: 1.5em;
}
.news-single__post ol li {
  list-style: decimal;
}
.news-single__post li {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .news-single__post li {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.news-single__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .news-single__nav {
    display: block;
    text-align: center;
    margin-top: 2.5rem;
  }
}

.news-single__link a {
  display: inline-block;
  padding: 10px 0;
  padding: 0.625rem 0;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .news-single__link a {
    font-size: 0.9375rem;
  }
}

a.news-single__prev {
  background: url(/recruit/assets/img/common/prev-icon.png) no-repeat center left/40px;
  background: url(/recruit/assets/img/common/prev-icon.png) no-repeat center left/2.5rem;
  padding-left: 60px;
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  a.news-single__prev {
    background-size: 1.875rem;
    padding-left: 2.5rem;
  }
}

a.news-single__next {
  background: url(/recruit/assets/img/common/next-icon.png) no-repeat center right/40px;
  background: url(/recruit/assets/img/common/next-icon.png) no-repeat center right/2.5rem;
  padding-right: 60px;
  padding-right: 3.75rem;
}
@media screen and (max-width: 767px) {
  a.news-single__next {
    background-size: 1.875rem;
    padding-right: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .news-single__btn {
    margin: 1.25rem auto;
  }
}

/* office */
.office__links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #C1362F;
  border: 0.0625rem solid #C1362F;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .office__links {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.5rem;
  }
}

.office__link:not(:nth-child(5n)) {
  border-right: 1px solid #C1362F;
  border-right: 0.0625rem solid #C1362F;
}
@media screen and (max-width: 767px) {
  .office__link:not(:nth-child(5n)) {
    border-right: none;
  }
}
.office__link:first-child, .office__link:nth-child(2), .office__link:nth-child(3), .office__link:nth-child(4), .office__link:nth-child(5) {
  border-bottom: 1px solid #C1362F;
  border-bottom: 0.0625rem solid #C1362F;
}
@media screen and (max-width: 767px) {
  .office__link:first-child, .office__link:nth-child(2), .office__link:nth-child(3), .office__link:nth-child(4), .office__link:nth-child(5) {
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .office__link:not(:nth-child(2n)) {
    border-right: 0.0625rem solid #C1362F;
  }
}
@media screen and (max-width: 767px) {
  .office__link:not(:last-child) {
    border-bottom: 0.0625rem solid #C1362F;
  }
}
.office__link a {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 16px 21px;
  padding: 1rem 1.3125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .office__link a {
    font-size: 0.9375rem;
    padding: 0.9375rem 0.9375rem;
  }
}
.office__link a::after {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  background: url(/recruit/assets/img/common/anchor-icon02.png) no-repeat center/contain;
}

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

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

.office__subtitle {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .office__subtitle {
    font-size: 1.5rem;
  }
}

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

.office__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px rgba(65, 60, 60, .08);
          box-shadow: 0px 0px 16px rgba(65, 60, 60, .08);
}
@media screen and (max-width: 767px) {
  .office__unit {
    display: block;
  }
}
.office__unit + .office__unit {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .office__unit + .office__unit {
    margin-top: 1.875rem;
  }
}

.office__unit-body {
  width: 45%;
  padding: 60px 100px 60px 60px;
  padding: 3.75rem 6.25rem 3.75rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .office__unit-body {
    width: 100%;
    padding: 1.875rem 1.25rem;
  }
}

.office__unit-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #C1362F;
}
@media screen and (max-width: 767px) {
  .office__unit-title {
    font-size: 1.25rem;
  }
}

.office__unit-address {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.44;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .office__unit-address {
    font-size: 0.875rem;
    margin-top: 0.9375rem;
  }
}

.office__unit-contact {
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .office__unit-contact {
    font-size: 0.875rem;
    margin-top: 0.9375rem;
  }
}

.office__unit-img {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .office__unit-img {
    margin-top: 1.5625rem;
  }
}
.office__unit-img img {
  height: 220px;
  height: 13.75rem;
  width: auto;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .office__unit-img img {
    margin: 0 auto;
  }
}

.office__unit-map-wrapper {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .office__unit-map-wrapper {
    width: 100%;
  }
}

.office__unit-map {
  width: 100%;
  padding-top: 87.8787878788%;
  position: relative;
}
.office__unit-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* privacy */
.privacy .l-inner {
  max-width: 1010px;
  max-width: 63.125rem;
}

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

.privacy__list-item + .privacy__list-item {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .privacy__list-item + .privacy__list-item {
    margin-top: 1.875rem;
  }
}

.privacy__list-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .privacy__list-title {
    font-size: 1rem;
  }
}

.privacy__list-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.06em;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .privacy__list-text {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.privacy__list-box {
  background: #F5F5F5;
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .privacy__list-box {
    margin-top: 0.9375rem;
    padding: 1.25rem;
  }
}

.privacy__list-box-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .privacy__list-box-text {
    font-size: 0.875rem;
  }
}

/* top-about */
.top-about {
  padding-bottom: 75px;
  padding-bottom: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .top-about {
    padding-bottom: 1.875rem;
  }
}

.top-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top-about__inner {
    display: block;
  }
}

.top-about__img {
  width: 46vw;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .top-about__img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.top-about__img img {
  max-height: 726px;
  max-height: 45.375rem;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.top-about__text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  line-height: 2.33;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-about__text {
    font-size: 0.875rem;
    line-height: 2.14;
    margin-top: 1.5625rem;
  }
}

.top-about__items {
  background: #fff;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(65,60,60,0.08)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 16px rgba(65, 60, 60, .08));
          filter: drop-shadow(0px 0px 16px rgba(65, 60, 60, .08));
  padding: 50px 20px 50px 50px;
  padding: 3.125rem 1.25rem 3.125rem 3.125rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .top-about__items {
    padding: 1.875rem;
    margin-top: 1.5625rem;
  }
}

.top-about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-about__item {
    display: block;
  }
}
.top-about__item + .top-about__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-about__item + .top-about__item {
    margin-top: 1.6875rem;
  }
}
.top-about__item:first-child .top-about__item-title {
  background: url(/recruit/assets/img/top/top-about-icon01.png) no-repeat left center/50px;
  background: url(/recruit/assets/img/top/top-about-icon01.png) no-repeat left center/3.125rem;
}
@media screen and (max-width: 767px) {
  .top-about__item:first-child .top-about__item-title {
    background-size: 2.5rem;
  }
}
.top-about__item:nth-child(2) .top-about__item-title {
  background: url(/recruit/assets/img/top/top-about-icon02.png) no-repeat left center/50px;
  background: url(/recruit/assets/img/top/top-about-icon02.png) no-repeat left center/3.125rem;
}
@media screen and (max-width: 767px) {
  .top-about__item:nth-child(2) .top-about__item-title {
    background-size: 2.5rem;
  }
}
.top-about__item:nth-child(3) .top-about__item-title {
  background: url(/recruit/assets/img/top/top-about-icon03.png) no-repeat left center/50px;
  background: url(/recruit/assets/img/top/top-about-icon03.png) no-repeat left center/3.125rem;
}
@media screen and (max-width: 767px) {
  .top-about__item:nth-child(3) .top-about__item-title {
    background-size: 2.5rem;
  }
}

.top-about__item-title {
  min-height: 50px;
  min-height: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #819F49;
  padding-left: 66px;
  padding-left: 4.125rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-about__item-title {
    min-height: 2.5rem;
    font-size: 1.125rem;
    padding-left: 3rem;
  }
}

.top-about__item-text {
  line-height: 1.63;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .top-about__item-text {
    font-size: 0.875rem;
    margin-top: 0.3125rem;
  }
}

.top-about__heading {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #C1362F;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .top-about__heading {
    font-size: 1.125rem;
    margin-top: 1.5625rem;
  }
}

/* top-career */
.top-career {
  background: url(/recruit/assets/img/top/top-career-bg_pc.jpg) no-repeat center/cover;
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .top-career {
    background-image: url(/recruit/assets/img/top/top-career-bg_sp.jpg);
    padding: 2.5rem 0 1.875rem;
  }
}
.top-career .title, .top-career .subtitle {
  color: #fff;
}

.top-career__groups {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-career__groups {
    margin-top: 1.875rem;
  }
}

.top-career__group {
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  padding: 60px 50px 60px;
  padding: 3.75rem 3.125rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-career__group {
    margin: 0 -0.625rem;
    padding: 1.25rem 0.9375rem 0.9375rem;
  }
}
.top-career__group + .top-career__group {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-career__group + .top-career__group {
    margin-top: 0.75rem;
  }
}
.top-career__group:first-child {
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-career__group:first-child {
    padding-top: 1.25rem;
  }
}

.top-career__subtitle {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .top-career__subtitle {
    font-size: 1.25rem;
  }
}
.top-career__subtitle span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-career__subtitle span {
    font-size: 0.875rem;
  }
}

.top-career__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  gap: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-career__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 1.5625rem;
  }
}

.top-career__card {
  text-align: center;
  background: #fff;
  font-weight: 700;
  padding: 45px 20px 75px;
  padding: 2.8125rem 1.25rem 4.6875rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-career__card {
    padding: 1.25rem 0.3125rem 1.5625rem;
  }
}
.top-career__card::before {
  position: absolute;
  font-size: 272px;
  font-size: 17rem;
  font-weight: 700;
  color: rgba(129, 159, 73, .06);
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-career__card::before {
    font-size: 11.25rem;
  }
}
.top-career__card:first-child::before {
  content: "V";
}
.top-career__card:nth-child(2)::before {
  content: "S";
}
.top-career__card:nth-child(3)::before {
  content: "O";
}
.top-career__card:nth-child(4)::before {
  content: "P";
}

.top-career__card-subtitle {
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .top-career__card-subtitle {
    font-size: 1.5rem;
  }
}

.top-career__card-title {
  color: #819F49;
  letter-spacing: 0.06em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-career__card-title {
    font-size: 0.8125rem;
    margin-top: 0;
  }
}

.top-career__card-text {
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-career__card-text {
    font-size: 0.8125rem;
    line-height: 1.4;
    margin-top: 0.9375rem;
  }
}

.top-career__units {
  margin-top: 20px;
  margin-top: 1.25rem;
}

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

.top-career__subheading {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-career__subheading {
    text-align: center;
    font-size: 0.9375rem;
  }
}

.top-career__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  gap: 1.5625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-career__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 0.9375rem;
  }
}

.top-career__item-wrapper {
  position: relative;
}

.top-career__item {
  text-align: center;
  min-height: 190px;
  min-height: 11.875rem;
  padding: 35px 20px 20px;
  padding: 2.1875rem 1.25rem 1.25rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top-career__item {
    min-height: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem;
    padding: 0.9375rem 1.25rem;
  }
}
.top-career__item + .top-career__item {
  position: relative;
}
.top-career__item + .top-career__item::before {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 30px;
  height: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
  left: -1.25rem;
  background: url(/recruit/assets/img/common/arrow-icon03.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-career__item + .top-career__item::before {
    width: 0.625rem;
    height: 1.5625rem;
    top: -1.125rem;
    left: 50%;
    -webkit-transform: rotate(90deg) translateX(-50%);
            transform: rotate(90deg) translateX(-50%);
  }
}

.top-career__item-year {
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .top-career__item-year {
    font-size: 0.8125rem;
    padding-top: 0.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .top-career__item-year span {
    display: inline-block;
  }
}

.top-career__item-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #819F49;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-career__item-title {
    text-align: left;
    font-size: 1.25rem;
    margin-top: 0;
  }
}
.top-career__item-title span {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .top-career__item-title span {
    font-size: 0.875rem;
  }
}

.top-career__item-text {
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-career__item-text {
    font-size: 0.8125rem;
    margin-top: 0.25rem;
  }
}

.top-career__text {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .top-career__text {
    position: static;
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-top: 0.9375rem;
  }
}

/* top-company */
.top-company {
  color: #fff;
  background: url(/recruit/assets/img/top/top-company-bg_pc.jpg) no-repeat center/cover;
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .top-company {
    background-image: url(/recruit/assets/img/top/top-company-bg_sp.jpg);
    padding: 2.5rem 0;
  }
}
.top-company .l-inner {
  max-width: 1190px;
  max-width: 74.375rem;
}
.top-company .title {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top-company .title {
    font-size: 1.25rem;
  }
}

.top-company__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-company__lists {
    display: block;
    margin-top: 1.25rem;
  }
}

.top-company__list {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, .2);
}
.top-company__list:first-child {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .top-company__list:first-child {
    width: 100%;
  }
}
.top-company__list:first-child .top-company__list-title {
  min-width: 110px;
  min-width: 6.875rem;
}
@media screen and (max-width: 767px) {
  .top-company__list:first-child .top-company__list-title {
    min-width: unset;
  }
}
.top-company__list:nth-child(2) {
  width: 58%;
}
@media screen and (max-width: 767px) {
  .top-company__list:nth-child(2) {
    width: 100%;
  }
}
.top-company__list:nth-child(2) .top-company__list-title {
  min-width: 140px;
  min-width: 8.75rem;
}
@media screen and (max-width: 767px) {
  .top-company__list:nth-child(2) .top-company__list-title {
    min-width: unset;
  }
}

.top-company__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.63;
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-top: 0.0625rem solid rgba(255, 255, 255, .2);
  padding: 18px 20px;
  padding: 1.125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-company__list-item {
    display: block;
    font-size: 0.875rem;
    line-height: 1.3;
    padding: 0.9375rem 0;
  }
}

.top-company__list-title {
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.top-company__list-text {
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .top-company__list-text {
    margin-top: 0.5rem;
  }
}

.top-company__btn {
  color: #fff;
  border-color: #fff;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-company__btn {
    margin-top: 1.25rem;
  }
}
.top-company__btn::after {
  background-image: url(/recruit/assets/img/common/arrow-icon01.png);
}

/* top-data */
.top-data {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .top-data {
    padding: 2.5rem 0;
  }
}

.top-data__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  gap: 1.875rem;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-data__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3125rem;
    margin-top: 1.875rem;
  }
}

.top-data__item {
  text-align: center;
  min-height: 360px;
  min-height: 22.5rem;
  background: #fff;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.08)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, .08));
          filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, .08));
  padding: 60px 20px 20px;
  padding: 3.75rem 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-data__item {
    min-height: 12rem;
    padding: 1.25rem 0.625rem 0.625rem;
  }
}
.top-data__item:first-child .top-data__item-subtext {
  text-align: right;
}
.top-data__item:nth-child(2) .top-data__item-icon {
  width: 200px;
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .top-data__item:nth-child(2) .top-data__item-icon {
    width: 80%;
  }
}
.top-data__item:nth-child(3) .top-data__item-icon {
  width: 100%;
  margin-top: -10px;
  margin-top: -0.625rem;
}
.top-data__item:nth-child(4) .top-data__item-icon {
  width: 310px;
  width: 19.375rem;
}
@media screen and (max-width: 767px) {
  .top-data__item:nth-child(4) .top-data__item-icon {
    width: 90%;
  }
}

.top-data__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-data__item-title {
    font-size: 0.9375rem;
  }
}

.top-data__item-icon {
  width: 64px;
  width: 4rem;
  max-width: 100%;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-data__item-icon {
    width: 3rem;
    margin-top: 0.9375rem;
  }
}

.top-data__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 5px;
  gap: 0.3125rem;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #C1362F;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .top-data__item-text {
    font-size: 1.25rem;
    gap: 0;
    margin-top: 0.625rem;
  }
}
.top-data__item-text span {
  font-size: 88px;
  font-size: 5.5rem;
  letter-spacing: 0.06em;
  line-height: 1;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .top-data__item-text span {
    font-size: 3rem;
  }
}

.top-data__item-subtext {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-data__item-subtext {
    font-size: 0.625rem;
    margin-top: 0;
  }
}

.top-data__item-pie {
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
  height: 200px;
  height: 12.5rem;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-data__item-pie {
    width: 7.8125rem;
    height: 7.8125rem;
    margin-top: 0.625rem;
  }
}

.top-data__item-gender {
  /* 色 */
}
.top-data__item-gender #male {
  fill: #819F49;
}
.top-data__item-gender #female {
  fill: #C1362F;
}
.top-data__item-gender {
  /* ラベル */
}
.top-data__item-gender .label {
  position: absolute;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .top-data__item-gender .label {
    font-size: 0.75rem;
  }
}
.top-data__item-gender .label.is-show {
  opacity: 1;
}
.top-data__item-gender .label.female {
  left: 11%;
  top: 17%;
}
@media screen and (max-width: 767px) {
  .top-data__item-gender .label.female {
    left: 13%;
    top: 18%;
  }
}
.top-data__item-gender .label.male {
  right: 16%;
  bottom: 25%;
}
@media screen and (max-width: 767px) {
  .top-data__item-gender .label.male {
    right: 19%;
    bottom: 25%;
  }
}
.top-data__item-gender span {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-data__item-gender span {
    font-size: 0.5625rem;
  }
}
.top-data__item-gender span span {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top-data__item-gender span span {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .top-data__item-age {
    margin-top: 1.25rem;
  }
}
.top-data__item-age .slice {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.top-data__item-age .label {
  text-align: center;
  position: absolute;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .top-data__item-age .label {
    font-size: 0.5rem;
    line-height: 1.1;
  }
}
.top-data__item-age .label::before {
  position: absolute;
  content: "";
}
.top-data__item-age .label.age-10, .top-data__item-age .label.age-50, .top-data__item-age .label.age-60 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .top-data__item-age .label.age-10, .top-data__item-age .label.age-50, .top-data__item-age .label.age-60 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.top-data__item-age .label.age-10 > span, .top-data__item-age .label.age-50 > span, .top-data__item-age .label.age-60 > span {
  margin-top: -10px;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .top-data__item-age .label.age-10 > span, .top-data__item-age .label.age-50 > span, .top-data__item-age .label.age-60 > span {
    margin-top: 0;
  }
}
.top-data__item-age .label.age-20, .top-data__item-age .label.age-30, .top-data__item-age .label.age-40 {
  color: #fff;
}
.top-data__item-age .label.age-10 {
  top: -10%;
  right: -29%;
}
@media screen and (max-width: 767px) {
  .top-data__item-age .label.age-10 {
    top: -9%;
    right: -7%;
  }
}
.top-data__item-age .label.age-10::before {
  width: 66px;
  width: 4.125rem;
  height: 17px;
  height: 1.0625rem;
  left: -69px;
  left: -4.3125rem;
  top: 10px;
  top: 0.625rem;
  background: url(/recruit/assets/img/top/top-data-border02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-data__item-age .label.age-10::before {
    width: 2.4375rem;
    height: 0.625rem;
    left: -2.6875rem;
    top: 0.3125rem;
    background-image: url(/recruit/assets/img/top/top-data-border05.png);
  }
}
.top-data__item-age .label.age-20 {
  top: 23%;
  right: 8%;
}
@media screen and (max-width: 767px) {
  .top-data__item-age .label.age-20 {
    top: 21%;
    right: 12%;
  }
}
.top-data__item-age .label.age-30 {
  bottom: 15%;
  right: 25%;
}
@media screen and (max-width: 767px) {
  .top-data__item-age .label.age-30 {
    right: 27%;
  }
}
.top-data__item-age .label.age-40 {
  left: 6%;
  top: 38%;
}
.top-data__item-age .label.age-50 {
  left: -35%;
  top: 6%;
}
@media screen and (max-width: 767px) {
  .top-data__item-age .label.age-50 {
    left: -12%;
    top: -2%;
  }
}
.top-data__item-age .label.age-50::before {
  width: 31px;
  width: 1.9375rem;
  height: 1px;
  height: 0.0625rem;
  right: -36px;
  right: -2.25rem;
  top: 10px;
  top: 0.625rem;
  background: url(/recruit/assets/img/top/top-data-border03.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-data__item-age .label.age-50::before {
    width: 1.125rem;
    right: -1.3125rem;
    top: 0.9375rem;
    background-image: url(/recruit/assets/img/top/top-data-border06.png);
  }
}
.top-data__item-age .label.age-60 {
  left: -35%;
  top: -10%;
}
@media screen and (max-width: 767px) {
  .top-data__item-age .label.age-60 {
    left: -12%;
    top: -25%;
  }
}
.top-data__item-age .label.age-60::before {
  width: 64px;
  width: 4rem;
  height: 17px;
  height: 1.0625rem;
  right: -70px;
  right: -4.375rem;
  top: 10px;
  top: 0.625rem;
  background: url(/recruit/assets/img/top/top-data-border01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-data__item-age .label.age-60::before {
    width: 2.375rem;
    height: 0.625rem;
    top: 1.5625rem;
    right: -2.75rem;
    background-image: url(/recruit/assets/img/top/top-data-border04.png);
  }
}
.top-data__item-age .label.is-show {
  opacity: 1;
}
.top-data__item-age .label span {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .top-data__item-age .label span {
    font-size: 0.5625rem;
  }
}
.top-data__item-age .label span span {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .top-data__item-age .label span span {
    font-size: 0.9375rem;
  }
}

.top-data__item-chart {
  width: 310px;
  width: 19.375rem;
  max-width: 100%;
  margin: 35px auto 0;
  margin: 2.1875rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-data__item-chart {
    width: 8.75rem;
    margin-top: 0.625rem;
  }
}

.chart__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.chart__row + .chart__row {
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .chart__row + .chart__row {
    margin-top: 0.625rem;
  }
}
.chart__row:first-child .chart__num {
  right: 10%;
}
@media screen and (max-width: 767px) {
  .chart__row:first-child .chart__num {
    right: 8%;
  }
}
.chart__row:nth-child(2) .chart__num {
  right: 9%;
}
@media screen and (max-width: 767px) {
  .chart__row:nth-child(2) .chart__num {
    right: 7%;
  }
}
.chart__row:nth-child(3) .chart__num {
  right: 4%;
}
@media screen and (max-width: 767px) {
  .chart__row:nth-child(3) .chart__num {
    right: 3%;
  }
}
.chart__row:nth-child(4) .chart__num {
  right: 1%;
}
.chart__row:nth-child(5) .chart__num {
  right: 0;
}

.chart__year {
  min-width: 64px;
  min-width: 4rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .chart__year {
    min-width: 2.1875rem;
    font-size: 0.625rem;
  }
}

.chart__bar {
  width: 51%;
  height: 25px;
  height: 1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .chart__bar {
    width: 41%;
    height: 1.125rem;
  }
}

.chart__bar-fill {
  height: 100%;
  width: 0;
  background: #819F49;
  -webkit-transition: width 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: width 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.chart__num {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  color: #C1362F;
  font-weight: 700;
  letter-spacing: 0.06em;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
@media screen and (max-width: 767px) {
  .chart__num {
    font-size: 0.625rem;
  }
}
.chart__num.is-show {
  opacity: 1;
}
.chart__num span {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  margin-right: 4px;
  margin-right: 0.25rem;
}
@media screen and (max-width: 767px) {
  .chart__num span {
    font-size: 0.9375rem;
    margin-right: 0;
  }
}

/* top-interview */
.top-interview {
  background: #FAFAFA;
  padding: 100px 0;
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .top-interview {
    padding: 2.5rem 0;
  }
}

.top-interview__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  gap: 3.75rem;
  padding: 0 80px;
  padding: 0 5rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-interview__cards {
    gap: 0.9375rem;
    padding: 0;
    margin-top: 1.875rem;
  }
}

.top-interview__card-inner {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, .08);
          box-shadow: 0px 0px 16px rgba(0, 0, 0, .08);
}
.top-interview__card-inner:hover {
  opacity: 1;
}
.top-interview__card-inner:hover .top-interview__card-img img:first-child {
  opacity: 0;
}
.top-interview__card-inner:hover .top-interview__card-img img:nth-child(2) {
  opacity: 1;
}

.top-interview__card-img {
  padding-top: 71.0204081633%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-interview__card-img {
    padding-top: 70.625%;
  }
}
.top-interview__card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-interview__card-img img:nth-child(2) {
  opacity: 0;
}

.top-interview__card-body {
  padding: 30px 30px;
  padding: 1.875rem 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-interview__card-body {
    padding: 0.625rem 0.625rem 2rem;
  }
}
.top-interview__card-body::after {
  position: absolute;
  content: "";
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  right: 30px;
  right: 1.875rem;
  bottom: 30px;
  bottom: 1.875rem;
  background: url(/recruit/assets/img/common/arrow-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-interview__card-body::after {
    width: 0.5rem;
    height: 0.5rem;
    right: 0.9375rem;
    bottom: 0.9375rem;
  }
}

.top-interview__card-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .top-interview__card-title {
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}

.top-interview__card-name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #819F49;
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .top-interview__card-name {
    font-size: 0.875rem;
    margin-top: 0.4375rem;
  }
}

.top-interview__card-year {
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .top-interview__card-year {
    font-size: 0.75rem;
    margin-top: 0;
  }
}

/* top-message */
.top-message {
  background: url(/recruit/assets/img/top/top-message-bg_pc.png) no-repeat top right/cover;
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .top-message {
    background-image: url(/recruit/assets/img/top/top-message-bg_sp.png);
    padding: 2.5rem 0;
  }
}

.top-message__text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  line-height: 2.67;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-message__text {
    font-size: 0.875rem;
    line-height: 2;
    margin-top: 1.5625rem;
  }
}

.top-message__name {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-message__name {
    font-size: 0.875rem;
    margin-top: 1.5625rem;
  }
}

/* top-mv */
.top-mv {
  padding: 360px 0 40px;
  padding: 22.5rem 0 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-mv {
    padding: 6.25rem 0 6.875rem;
  }
}
.top-mv .l-inner {
  max-width: 1350px;
  max-width: 84.375rem;
}

.top-mv__imgs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}
.top-mv__imgs.slick-initialized {
  display: block;
}
.top-mv__imgs .slick-list {
  height: 100%;
}
.top-mv__imgs .slick-track {
  height: 100%;
}
.top-mv__imgs .slider-dot {
  position: absolute;
  bottom: 20px;
  bottom: 1.25rem;
  right: 20px;
  right: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-mv__imgs .slider-dot {
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 4.375rem;
  }
}
.top-mv__imgs .slider-dot li {
  display: inline-block;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-radius: 50%;
  cursor: pointer;
}
.top-mv__imgs .slider-dot li button {
  text-indent: -9999px;
}
.top-mv__imgs .slider-dot li:not(:first-child) {
  position: relative;
}
.top-mv__imgs .slider-dot li:not(:first-child)::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -10px;
  left: -0.625rem;
  width: 10px;
  width: 0.625rem;
  height: 1px;
  height: 0.0625rem;
  background: #fff;
}
.top-mv__imgs .slider-dot li.slick-active {
  border-color: #76AA16;
  background: #76AA16;
}

.top-mv__img {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.top-mv__img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 20s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 20s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 20s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 20s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 20s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .top-mv__img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.slick-current.anim-up img {
  -webkit-transform: scale(1.2) translateY(-100px);
          transform: scale(1.2) translateY(-100px);
}
@media screen and (max-width: 767px) {
  .slick-current.anim-up img {
    -webkit-transform: scale(1.2) translateY(-50px);
            transform: scale(1.2) translateY(-50px);
  }
}

.slick-current.anim-zoom img {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.slick-current.anim-left img {
  -webkit-transform: scale(1.2) translateX(-100px);
          transform: scale(1.2) translateX(-100px);
}
@media screen and (max-width: 767px) {
  .slick-current.anim-left img {
    -webkit-transform: scale(1.2) translateX(-50px);
            transform: scale(1.2) translateX(-50px);
  }
}

.slick-current.anim-zoom2 img {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.top-mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 160px;
  gap: 10rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1350px) {
  .top-mv__inner {
    gap: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__inner {
    display: block;
  }
}

.top-mv__body {
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-mv__body {
    padding-bottom: 0;
  }
}

.top-mv__title span {
  display: inline-block;
  color: #fff;
  background: #C1362F;
  font-weight: 700;
  padding: 4px 13px;
  padding: 0.25rem 0.8125rem;
}
@media screen and (max-width: 767px) {
  .top-mv__title span {
    padding: 0.125rem 0.4375rem;
  }
}
.top-mv__title span:first-of-type {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .top-mv__title span:first-of-type {
    font-size: 0.75rem;
  }
}
.top-mv__title span:nth-of-type(2) {
  font-size: 32px;
  font-size: 2rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .top-mv__title span:nth-of-type(2) {
    font-size: 1.25rem;
  }
}

.top-mv__text {
  width: 700px;
  width: 43.75rem;
  max-width: 100%;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 1350px) {
  .top-mv__text {
    width: 37.5rem;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__text {
    width: 20.9375rem;
    margin-top: 0.9375rem;
  }
}

.top-mv__box {
  display: block;
  background: #fff;
}
.top-mv__box:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .top-mv__box {
    width: 25rem;
    max-width: 100%;
    margin: 19.625rem auto 0;
  }
}

.top-mv__box-title {
  text-align: center;
  color: #fff;
  background: #C1362F;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
}
.top-mv__box-title span {
  font-size: 13px;
  font-size: 0.8125rem;
}

.top-mv__box-body {
  background: #fff;
  padding: 12px 15px 8px;
  padding: 0.75rem 0.9375rem 0.5rem;
}

.top-mv__box-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 30px;
  gap: 1.875rem;
}

.top-mv__box-item:first-child .top-mv__box-item-logo {
  width: 117px;
  width: 7.3125rem;
}
.top-mv__box-item:nth-child(2) .top-mv__box-item-logo {
  width: 133px;
  width: 8.3125rem;
}

.top-mv__box-item-logo {
  max-width: 100%;
  margin: 0 auto;
}

.top-mv__box-item-text {
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  margin-top: 12px;
  margin-top: 0.75rem;
}

/* top-news */
.top-news {
  padding: 120px 0 140px;
  padding: 7.5rem 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding: 2.5rem 0;
  }
}

.top-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-news__inner {
    display: block;
  }
}

.top-news__title-wrapper {
  width: 16%;
  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: 767px) {
  .top-news__title-wrapper {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

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

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

/* top-requirements */
.top-requirements {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .top-requirements {
    padding: 2.5rem 0;
  }
}

.top-requirements__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-requirements__tab {
    margin-top: 1.875rem;
  }
}

.top-requirements__tab-item.current button {
  color: #fff;
  background: #C1362F;
}
.top-requirements__tab-item.current button::after {
  background-image: url(/recruit/assets/img/common/anchor-icon01.png);
}
.top-requirements__tab-item button {
  text-align: center;
  display: block;
  width: 320px;
  width: 20rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  background: #fff;
  color: #000;
  letter-spacing: 0.06em;
  padding: 26px;
  padding: 1.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-requirements__tab-item button {
    width: 9.375rem;
    font-size: 0.875rem;
    padding: 0.625rem;
  }
}
.top-requirements__tab-item button::after {
  position: absolute;
  content: "";
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  background: url(/recruit/assets/img/common/anchor-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-requirements__tab-item button::after {
    width: 0.5rem;
    height: 0.5rem;
    right: 0.9375rem;
  }
}
.top-requirements__tab-item button:hover {
  opacity: 1;
}

.top-requirements__contents {
  background: #FAFAFA;
  padding: 80px 80px;
  padding: 5rem 5rem;
  margin-top: -40px;
  margin-top: -2.5rem;
}
@media screen and (max-width: 767px) {
  .top-requirements__contents {
    padding: 2.5rem 1.25rem;
    margin-top: -1.25rem;
  }
}

.top-requirements__content {
  display: none;
}
.top-requirements__content.active {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.top-requirements__subtitle {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-left: 10px;
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-requirements__subtitle {
    font-size: 1.25rem;
    padding-left: 0;
  }
}

.top-requirements__list {
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  border-bottom: 0.0625rem solid rgba(0, 0, 0, .2);
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-requirements__list {
    margin-top: 1.25rem;
  }
}

.top-requirements__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.63;
  border-top: 1px solid rgba(0, 0, 0, .2);
  border-top: 0.0625rem solid rgba(0, 0, 0, .2);
  padding: 18px 0 18px 20px;
  padding: 1.125rem 0 1.125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-requirements__list-item {
    display: block;
    font-size: 0.875rem;
    line-height: 1.29;
    padding: 0.9375rem 0;
  }
}

.top-requirements__list-title {
  font-weight: 700;
  letter-spacing: 0.06em;
  min-width: 140px;
  min-width: 8.75rem;
}

.top-requirements__list-text {
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .top-requirements__list-text {
    margin-top: 0.3125rem;
  }
}
/*# sourceMappingURL=style.css.map */
