@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700&display=swap");
.display-mini {
  display: none;
}
@media screen and (max-width: 600px) {
  .display-mini {
    display: block;
  }
}

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

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

.display-lg {
  display: none;
}
@media screen and (min-width: 1024px) {
  .display-lg {
    display: block;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  color: #353535;
}

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

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-padding-top: 100px;
}
@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: 7.2222222222vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 70px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

/* ページ共通 パンくずリストで使用するクラス */
.c-breadcrumb__layout {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .c-breadcrumb__layout {
    margin-top: 2.7777777778vw;
  }
}
.c-breadcrumb__layout span {
  display: block;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .c-breadcrumb__layout span {
    font-size: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__layout span {
    font-size: 16px;
  }
}

.c-breadcrumb__hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.c-breadcrumb__hover span {
  text-decoration: underline;
  color: #BCA44F;
}
.c-breadcrumb__hover:hover {
  opacity: 0.7;
}

.c-breadcrumb__connection {
  margin-left: 10px;
  margin-right: 10px;
}
@media screen and (min-width: 1024px) {
  .c-breadcrumb__connection {
    margin-left: 0.6944444444vw;
    margin-right: 0.6944444444vw;
  }
}

/* ページ共通 ボタンで使用するクラス */
.c-button {
  width: 18.0555555556vw;
  height: 5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9722222222vw;
}
@media screen and (max-width: 767px) {
  .c-button {
    width: 200px;
    height: 50px;
    gap: 10px;
  }
}
.c-button p {
  font-size: 1.3888888889vw;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-button p {
    font-size: 16px;
  }
}

.c-button--form {
  cursor: pointer;
  margin: 1.9444444444vw auto 0;
  background-color: #BCA44F;
  max-width: 25vw;
  width: 100%;
  height: 4.1666666667vw;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button--form {
    margin-top: 40px;
    max-width: 280px;
    height: 50px;
  }
}
.c-button--form:hover {
  opacity: 0.7;
}
.c-button--form p {
  color: #fff;
}
.c-button--form img {
  aspect-ratio: 27/18;
  max-width: 1.875vw;
  max-height: 1.25vw;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .c-button--form img {
    max-width: 27px;
    max-height: 18px;
  }
}

.c-button--news {
  margin: 2.7777777778vw auto 0;
}
@media screen and (max-width: 767px) {
  .c-button--news {
    margin-top: 30px;
  }
}
.c-button--news a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.4722222222vw;
  width: 100%;
  height: 100%;
  background-color: #24B654;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button--news a {
    gap: 12px;
  }
}
.c-button--news a:hover {
  opacity: 0.7;
}
.c-button--news p {
  color: #fff;
}
.c-button--news .button__arrow {
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-button--news .button__arrow {
    width: 10px;
    height: 10px;
  }
}

.c-button--contact {
  cursor: pointer;
  margin: 1.9444444444vw auto 0;
}
@media screen and (max-width: 767px) {
  .c-button--contact {
    margin-top: 20px;
  }
}
.c-button--contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5555555556vw;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button--contact a {
    gap: 4px;
  }
}
.c-button--contact a:hover {
  opacity: 0.7;
}
.c-button--contact p {
  color: #24B654;
}
.c-button--contact img {
  aspect-ratio: 27/18;
  max-width: 1.875vw;
  max-height: 1.25vw;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .c-button--contact img {
    max-width: 27px;
    max-height: 18px;
  }
}

.c-button--recruit {
  margin: 2.7777777778vw auto 0 0;
}
@media screen and (max-width: 767px) {
  .c-button--recruit {
    margin-top: 30px;
  }
}
.c-button--recruit a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.4722222222vw;
  width: 100%;
  height: 100%;
  background-color: #196532;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button--recruit a {
    gap: 12px;
  }
}
.c-button--recruit a:hover {
  opacity: 0.7;
}
.c-button--recruit p {
  color: #fff;
}
.c-button--recruit .button__arrow {
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-button--recruit .button__arrow {
    width: 10px;
    height: 10px;
  }
}

/* ページ共通 パンくずリストで使用するクラス */
.heading__mt {
  margin-top: 48px;
}
@media screen and (min-width: 1024px) {
  .heading__mt {
    margin-top: 3.8194444444vw;
  }
}
@media screen and (max-width: 767px) {
  .heading__mt {
    margin-top: 40px;
  }
}

.heading__mt-40 {
  margin-top: 36px;
}
@media screen and (min-width: 1024px) {
  .heading__mt-40 {
    margin-top: 2.7777777778vw;
  }
}
@media screen and (max-width: 767px) {
  .heading__mt-40 {
    margin-top: 32px;
  }
}

.heading__ja-02 {
  font-size: 20px;
  letter-spacing: 0.04em;
  font-weight: 500;
  background-image: url(../images/common/common-heading-background.png);
  background-size: cover;
  background-position: center right;
  color: #fff;
  padding: 12px 20px;
}
@media screen and (min-width: 1024px) {
  .heading__ja-02 {
    font-size: 1.9444444444vw;
    padding: 0.8333333333vw 2.0833333333vw 1.0416666667vw;
  }
}
@media screen and (max-width: 767px) {
  .heading__ja-02 {
    padding: 8px 12px;
    font-size: 20px;
  }
}

.heading__ja-03 {
  position: relative;
  letter-spacing: 0.02em;
  font-size: 18px;
  padding-left: 10px;
  line-height: 1.2;
  font-weight: 500;
  color: #816500;
}
@media screen and (min-width: 1024px) {
  .heading__ja-03 {
    padding-left: 0.8333333333vw;
    font-size: 1.3888888889vw;
  }
}
.heading__ja-03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #816500;
}
@media screen and (min-width: 1024px) {
  .heading__ja-03::before {
    width: 0.4166666667vw;
  }
}
@media screen and (max-width: 767px) {
  .heading__ja-03::before {
    width: 4px;
  }
}
.heading__ja-03::after {
  content: "";
  position: absolute;
  bottom: -6px;
  height: 1px;
  left: 0;
  width: 100%;
  background-color: #816500;
}
@media screen and (min-width: 1024px) {
  .heading__ja-03::after {
    bottom: -0.4861111111vw;
    height: 0.0694444444vw;
  }
}

.heading__en {
  font-size: 1.3888888889vw;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .heading__en {
    font-size: 14px;
  }
}

.heading__ja {
  font-size: 2.7777777778vw;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #24B654;
}
@media screen and (max-width: 767px) {
  .heading__ja {
    font-size: 24px;
  }
}

.heading__bar {
  margin-top: 0.5555555556vw;
  width: 100%;
  height: 0.3472222222vw;
  background: -webkit-gradient(linear, left top, right top, from(#AFE6BB), to(#24B654));
  background: linear-gradient(to right, #AFE6BB, #24B654);
}
@media screen and (max-width: 767px) {
  .heading__bar {
    margin-top: 6px;
    height: 3px;
  }
}

.heading__bar--white {
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#24B654));
  background: linear-gradient(to right, #fff, #24B654);
}

.c-heading--white .heading__en {
  color: #fff;
}
.c-heading--white .heading__ja {
  color: #fff;
}

/* 下層ページで使用する採用情報とお問い合わせのクラス */
.link__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .link__layout {
    margin-top: 8.3333333333vw;
    gap: 3.6111111111vw;
  }
}
@media screen and (max-width: 767px) {
  .link__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 550px;
    margin: 80px auto 0;
    gap: 40px;
  }
}

.link__recurit,
.link__contact {
  width: calc(50% - 1.80556vw);
  aspect-ratio: 536/453;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 1024px) {
  .link__recurit,
  .link__contact {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .link__recurit,
  .link__contact {
    width: 100%;
  }
}
.link__recurit a,
.link__contact a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.link__recurit a::before,
.link__contact a::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid #fff;
}
@media screen and (min-width: 1024px) {
  .link__recurit a::before,
  .link__contact a::before {
    top: 0.6944444444vw;
    right: 0.6944444444vw;
    bottom: 0.6944444444vw;
    left: 0.6944444444vw;
    width: calc(100% - 1.38889vw);
    height: calc(100% - 1.38889vw);
  }
}
.link__recurit a::after,
.link__contact a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.link__recurit a:hover::after,
.link__contact a:hover::after {
  background-color: rgba(255, 255, 255, .3);
}

.link__recurit {
  background-image: url(../images/common/common-recurit-background.png);
  margin-bottom: 8.3333333333vw;
}
@media screen and (max-width: 767px) {
  .link__recurit {
    margin-bottom: 0;
  }
}

.link__contact {
  margin-top: 8.3333333333vw;
  background-image: url(../images/common/common-contact-background.png);
}
@media screen and (max-width: 767px) {
  .link__contact {
    margin-top: 0;
  }
}

.link__title-en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .link__title-en {
    gap: 1.0416666667vw;
  }
}
.link__title-en p {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .link__title-en p {
    font-size: 0.9722222222vw;
  }
}

.link__title-bar {
  width: 150px;
  height: 1px;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .link__title-bar {
    width: 12.8472222222vw;
    height: 0.0694444444vw;
  }
}
@media screen and (max-width: 767px) {
  .link__title-bar {
    width: 120px;
    height: 1px;
  }
}

.link__title-ja {
  margin-top: 15px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #fff;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .link__title-ja {
    margin-top: 1.0416666667vw;
    font-size: 4.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .link__title-ja {
    margin-top: 12px;
  }
}

.link__button {
  position: relative;
  margin-top: 50px;
  width: 220px;
  height: 56px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .link__button {
    margin-top: 4.1666666667vw;
    width: 16.6666666667vw;
    height: 4.4444444444vw;
    border: 0.0694444444vw solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .link__button {
    margin-top: 40px;
    width: 200px;
    height: 50px;
  }
}
.link__button p {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .link__button p {
    font-size: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .link__button p {
    font-size: 16px;
  }
}
.link__button img {
  position: absolute;
  top: 22px;
  left: calc(100% - 20px);
  width: 60px;
}
@media screen and (min-width: 1024px) {
  .link__button img {
    top: 1.7361111111vw;
    left: calc(100% - 3.125vw);
    width: 6.25vw;
  }
}

.top-company__link .link__title-en p {
  color: rgba(0, 0, 0, .5);
}
.top-company__link .link__title-bar {
  background-color: rgba(0, 0, 0, .5);
}
.top-company__link .link__title-ja {
  color: #000;
}
.top-company__link .link__button {
  border: 1px solid #BCA44F;
  background-color: #fff;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .top-company__link .link__button {
    border: 0.0694444444vw solid #BCA44F;
  }
}
.top-company__link .link__button:not(:first-child) {
  margin-top: 1.6666666667vw;
}
@media screen and (min-width: 1024px) {
  .top-company__link .link__button:not(:first-child) {
    margin-top: 1.9444444444vw;
  }
}
@media screen and (max-width: 767px) {
  .top-company__link .link__button:not(:first-child) {
    margin-top: 0;
  }
}
.top-company__link .link__button p {
  color: #BCA44F;
}
.top-company__link .link__button:hover {
  background-color: #BCA44F;
}
.top-company__link .link__button:hover p {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .top-company__link--button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px 60px;
    width: 100%;
    padding-right: 40px;
    padding-left: 30px;
  }
  .top-company__link--button .link__button {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 600px) {
  .top-company__link--button {
    padding-left: 20px;
  }
}

.works-archive__link .link__title-bar {
  background-color: #000;
}
.works-archive__link .link__button {
  border: 0.0694444444vw solid #BCA44F;
  background-color: #fff;
  margin-right: auto;
  margin-left: auto;
}
.works-archive__link .link__button p {
  color: #BCA44F;
}
.works-archive__link .link__button:hover {
  background-color: #BCA44F;
}
.works-archive__link .link__button:hover p {
  color: #fff;
}
.works-archive__link .link__title-en,
.works-archive__link .link__title-ja {
  color: #000;
}
.works-archive__link .link__title-en p,
.works-archive__link .link__title-ja p {
  color: #000;
}

.top-business__link .link__title-bar {
  width: 100px;
}
@media screen and (min-width: 1024px) {
  .top-business__link .link__title-bar {
    width: 12.8472222222vw;
  }
}
.top-business__link .link__button:hover {
  background-color: rgba(255, 255, 255, .5);
}

.top-news__link .link__title-en p {
  color: rgba(0, 0, 0, .5);
}
.top-news__link .link__title-bar {
  background-color: rgba(0, 0, 0, .5);
}
.top-news__link .link__title-ja {
  color: #000;
}
.top-news__link .link__button {
  border: 0.0694444444vw solid #BCA44F;
  background-color: #fff;
}
.top-news__link .link__button p {
  color: #BCA44F;
}
.top-news__link .link__button:hover {
  background-color: #BCA44F;
}
.top-news__link .link__button:hover p {
  color: #fff;
}

.top-news__head .top-news__link .link__button {
  display: none;
}
@media screen and (min-width: 1024px) {
  .top-news__head .top-news__link .link__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.top-news__button .top-news__link .link__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .top-news__button .top-news__link .link__button {
    display: none;
  }
}

/* 下層ページ共通 メインビジュアルで使用するクラス */
.mainvisual__background {
  position: relative;
  width: 100%;
  height: 375px;
  background-image: url(../images/common/common-under-mainvisual.png);
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .mainvisual__background {
    height: 26.0416666667vw;
    padding-bottom: 4.6527777778vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__background {
    height: 375px;
  }
}
.mainvisual__background .mainvisual__title-en {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 1024px) {
  .mainvisual__background .mainvisual__title-en {
    font-size: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__background .mainvisual__title-en {
    font-size: 12px;
  }
}
.mainvisual__background h1 {
  width: 100%;
  height: 100%;
  margin-top: 6px;
  font-size: 52px;
  letter-spacing: 0.16em;
}
@media screen and (min-width: 1024px) {
  .mainvisual__background h1 {
    margin-top: 0.5555555556vw;
    font-size: 4.4444444444vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__background h1 {
    margin-top: 6px;
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .mainvisual__background h1 {
    margin-top: 4px;
    font-size: 32px;
  }
}

.mainvisual__title-en {
  font-size: 0.9722222222vw;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-right: auto;
}

.mainvisual__title-ja {
  margin-top: 0.5555555556vw;
  font-size: 3.3333333333vw;
  line-height: 1;
  letter-spacing: 0.06em;
}

.mainvisual__logo {
  position: absolute;
  right: 3.3%;
  bottom: 8%;
  max-width: 197px;
  max-height: 40px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .mainvisual__logo {
    aspect-ratio: 197/40;
    max-width: 13.6805555556vw;
    max-height: 2.7777777778vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__logo {
    bottom: 3%;
    max-width: 170px;
  }
}

/* ページ共通で使用するページネーションのクラス */
.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media screen and (min-width: 1024px) {
  .c-pagination {
    gap: 1.3888888889vw;
  }
}
@media screen and (max-width: 600px) {
  .c-pagination {
    gap: 16px;
  }
}
.c-pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000;
  background-color: #fff;
  font-size: 16px;
  width: 32px;
  height: 32px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .c-pagination .page-numbers {
    font-size: 1.25vw;
    width: 2.2222222222vw;
    height: 2.2222222222vw;
  }
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers {
    font-size: 14px;
  }
}
.c-pagination .page-numbers:hover {
  color: #fff;
  background-color: #BCA44F;
}
.c-pagination .prev,
.c-pagination .next {
  position: relative;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 1024px) {
  .c-pagination .prev,
  .c-pagination .next {
    width: 2.2222222222vw;
    height: 2.2222222222vw;
  }
}
.c-pagination .prev::before,
.c-pagination .next::before {
  content: "";
  position: absolute;
  background-color: #000;
  top: calc(50% - 3px);
  height: 1px;
  width: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .c-pagination .prev::before,
  .c-pagination .next::before {
    top: calc(50% - 0.20833vw);
    height: 0.0694444444vw;
    width: 0.5555555556vw;
  }
}
.c-pagination .prev::after,
.c-pagination .next::after {
  content: "";
  position: absolute;
  bottom: calc(50% - 3px);
  height: 1px;
  width: 8px;
  background-color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .c-pagination .prev::after,
  .c-pagination .next::after {
    bottom: calc(50% - 0.20833vw);
    height: 0.0694444444vw;
    width: 0.5555555556vw;
  }
}
.c-pagination .prev::before {
  left: calc(50% - 5px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  .c-pagination .prev::before {
    left: calc(50% - 0.34722vw);
  }
}
.c-pagination .prev::after {
  left: calc(50% - 5px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 1024px) {
  .c-pagination .prev::after {
    left: calc(50% - 0.34722vw);
  }
}
.c-pagination .next::before {
  right: calc(50% - 5px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 1024px) {
  .c-pagination .next::before {
    right: calc(50% - 0.34722vw);
  }
}
.c-pagination .next::after {
  right: calc(50% - 5px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  .c-pagination .next::after {
    right: calc(50% - 0.34722vw);
  }
}
.c-pagination .current {
  color: #fff;
  background-color: #BCA44F;
}
.c-pagination .current:hover {
  opacity: 1;
}
.c-pagination .prev,
.c-pagination .next {
  background-color: #fff;
}
.c-pagination .prev:hover::before,
.c-pagination .next:hover::before {
  background-color: #fff;
}
.c-pagination .prev:hover::after,
.c-pagination .next:hover::after {
  background-color: #fff;
}

/* サイト共通でお問い合わせセクションで使用するクラス */
.common-contact__container {
  margin-top: 6.6666666667vw;
  background-color: rgba(36, 110, 211, .43);
  padding: 6.25vw 0;
}

.common-contact__container--under {
  margin-top: 12.1527777778vw;
}

.common-contact__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding: 3.6805555556vw 8.0357% 4.5138888889vw;
}
@media screen and (max-width: 767px) {
  .common-contact__body {
    display: block;
    padding: 50px 8.0357%;
  }
}

.common-contact__induction {
  width: calc(50% - 0.5px);
  padding-right: 5.7638888889vw;
}
@media screen and (max-width: 767px) {
  .common-contact__induction {
    width: 100%;
    padding-right: 0;
  }
}

.common-contact__heading {
  margin-top: 2.4305555556vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .common-contact__heading {
    margin-top: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.common-contact__heading h2 {
  font-size: 2.0138888889vw;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #2368EB;
  margin: 0 1.3888888889vw;
}
@media screen and (max-width: 767px) {
  .common-contact__heading h2 {
    font-size: 20px;
    margin: 0 10px;
  }
}

.common-contact__bar {
  height: 1px;
  width: 4.7222222222vw;
  background-color: #2368EB;
}
@media screen and (max-width: 767px) {
  .common-contact__bar {
    width: 50px;
  }
}

.common-contact__heading-en {
  margin-top: 1.3194444444vw;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.6666666667vw;
  line-height: 1;
  font-weight: bold;
  color: rgba(124, 124, 124, .2);
}
@media screen and (max-width: 767px) {
  .common-contact__heading-en {
    margin-top: 16px;
    font-size: 18px;
  }
}

.common-contact__text {
  margin-top: 2.6388888889vw;
  font-size: 1.5277777778vw;
  line-height: 1.8181818182;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .common-contact__text {
    margin-top: 24px;
    font-size: 16px;
  }
}

.common-contact__action {
  width: calc(50% - 0.5px);
  border-left: 1px solid #CBCBCB;
  padding-left: 5.5555555556vw;
}
@media screen and (max-width: 767px) {
  .common-contact__action {
    border: none;
    border-top: 1px solid #CBCBCB;
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
    padding-top: 30px;
  }
}

.common-contact__tel {
  margin-top: 0.6944444444vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .common-contact__tel {
    margin-top: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.common-contact__tel-icon {
  margin-right: 1.5277777778vw;
}
.common-contact__tel-icon img {
  width: 2.4305555556vw;
}
@media screen and (max-width: 767px) {
  .common-contact__tel-icon img {
    width: 22px;
  }
}

.common-contact__number {
  font-size: 3.4027777778vw;
  font-weight: bold;
  color: #2368EB;
}
@media screen and (max-width: 767px) {
  .common-contact__number {
    font-size: 30px;
  }
}

.common-contact__business-hours {
  margin-top: 0.6944444444vw;
  font-size: 1.6666666667vw;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .common-contact__business-hours {
    margin-top: 10px;
    font-size: 16px;
  }
}

/* フッターで使用するクラス */
.footer {
  /* position: relative; */
  background-color: #E0D9CD;
}

.footer__page-top {
  /* position: absolute; */
  position: fixed;

  top:auto;
  bottom:30px;
  right: 30px;
  width: 60px;
  height: 60px;
  padding:2px;
  background-color: #BCA44F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;

  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

}


@media screen and (min-width: 1024px) {
  .footer__page-top {
    /* top: -2.0833333333vw; */
    position: fixed;
    z-index: 100;
    /* top:auto;
    bottom:30px;
    right: 3.4722222222vw; */
    bottom:30px;
    right: 30px;
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
  .footer__page-top__text{
    font-size: 0.69vw !important;
    color: #000;


  font-family: "Noto Serif JP";

  font-style: normal;
  font-weight: 700;
  line-height: normal;
  }
}
@media screen and (max-width: 767px) {
  .footer__page-top {
    bottom:20px;
    right: 20px;

  }
  .footer__page-top__text{
    font-size: 10px;
    color: #000;


  font-family: "Noto Serif JP";

  font-style: normal;
  font-weight: 700;
  line-height: normal;
  }
}
.footer__page-top__text{
  font-size: 10px;
  color: #000;


font-family: "Noto Serif JP";

font-style: normal;
font-weight: 700;
line-height: normal;
}
.footer__page-top img {
  width: 40px;
  height: 40px;
}

@media screen and (min-width: 1024px) {
  .footer__page-top img {
    /* width: 4.0277777778vw;
    height: 3.5416666667vw; */
    width: 3.1944444vw;
    height:  3.1944444vw;
  }
}
.footer__page-top:hover {
  opacity: 0.7;
}

.footer__layout {
  max-width: 1112px;
  margin: 0 auto;
  padding: 50px;
}
@media screen and (min-width: 1024px) {
  .footer__layout {
    max-width: 77.2222222222vw;
    padding: 4.1666666667vw 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__layout {
    gap: 20px;
    max-width: 100%;
    padding: 40px 20px;
  }
}

.footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .footer__head {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.4722222222vw;
  }
}

.footer__layout--mt-120 {
  margin-top: 100px;
}
@media screen and (min-width: 1024px) {
  .footer__layout--mt-120 {
    margin-top: 8.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__layout--mt-120 {
    margin-top: 60px;
  }
}

.footer__logo {
  width: 192px;
}
@media screen and (min-width: 1024px) {
  .footer__logo {
    width: 13.3333333333vw;
  }
}

.footer__text {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .footer__text {
    font-size: 0.9722222222vw;
  }
}

.footer__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .footer__menus {
    gap: 2.2222222222vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__menus {
    gap: 16px;
  }
}

.footer__menu {
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #353535;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) {
  .footer__menu {
    font-size: 1.25vw;
  }
}
.footer__menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__menu a:hover {
  opacity: 0.7;
}

.footer__companies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .footer__companies {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.4444444444vw;
    margin-top: 2.7777777778vw;
  }
}

.footer__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .footer__company {
    gap: 0.8333333333vw;
  }
}
@media screen and (max-width: 550px) {
  .footer__company {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}

.footer__company-name {
  font-size: 16px;
  line-height: 25/16;
  font-weight: bold;
  width: 90px;
}
@media screen and (min-width: 1024px) {
  .footer__company-name {
    font-size: 1.1111111111vw;
    width: auto;
  }
}

/* ハンバーガーメニューで使用するクラス */
.hamburger__icon {
  position: relative;
  z-index: 100;
  width: 50px;
  height: 30px;
  cursor: pointer;
}
.hamburger__icon:hover .hamburger__bar {
  background-color: #BCA44F;
}

.hamburger__bar {
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: black;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hamburger__bar:nth-child(1) {
  left: 0;
  top: 0;
}
.hamburger__bar:nth-child(2) {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hamburger__bar:nth-child(3) {
  left: 0;
  bottom: 0;
}

.hamburger__background {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  right: -1px;
  width: 80vw;
  height: 100vh;
  background: -webkit-gradient(linear, left top, right top, from(#BCA44F), to(#FFEAA1));
  background: linear-gradient(to right, #BCA44F, #FFEAA1);
}

/* ヘッダーで使用するクラス */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  height: 100px;
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .header {
    height: 7.2222222222vw;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 70px;
  }
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 16px;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .header__container {
    padding: 0 2.7777777778vw;
    gap: 1.6666666667vw;
  }
}

.header__heading {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__heading a {
  display: block;
}

.header__logo {
  max-width: 180px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .header__logo {
    max-width: 18.0555555556vw;
    max-height: 3.6111111111vw;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 200px;
    max-height: none;
  }
}
.header__logo img {
  aspect-ratio: 260/52;
  width: 100%;
  height: 100%;
}

.header__logo--black {
  display: none;
}

@media screen and (min-width: 768px) {
  .header__menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    gap: 16px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .header__menus {
    height: 4.4444444444vw;
    gap: 3.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .header__menu {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.04em;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .header__menu {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 768px) {
  .header__menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 50px;
    color: #353535;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .header__menu a {
    height: 4.4444444444vw;
  }
}
@media screen and (min-width: 768px) {
  .header__menu a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .header__menu p {
    cursor: pointer;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header__menu p:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .header__menu--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .header__menu--flex {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header__menu--contact a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: -webkit-gradient(linear, left top, right top, from(#BCA44F), to(#FFEAA1));
    background: linear-gradient(to right, #BCA44F, #FFEAA1);
    color: #151515;
    padding: 0 10px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .header__menu--contact a {
    padding: 0 1.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .header__menu--contact .header__contact {
    font-size: 14px;
    letter-spacing: 0.04em;
    color: #fff;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .header__menu--contact .header__contact {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 768px) {
  .header__menus {
    right: -120%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.inner {
  max-width: 1220px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 50px;
  padding-left: 50px;
}
@media screen and (min-width: 1024px) {
  .inner {
    max-width: 84.7222222222vw;
    padding-right: 3.4722222222vw;
    padding-left: 3.4722222222vw;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: none;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 600px) {
  .inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .inner--recruit {
    max-width: 106.9444444444vw;
  }
}

.inner--top-company-works {
  padding-left: 0;
  background-image: url(../images/top/top-company-works-background.png);
  background-size: 100% 75%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .inner--top-company-works {
    max-width: 103.4722222222vw;
    background-size: contain;
  }
}

.inner--top-works-archive,
.inner--top-link {
  padding-right: 0;
  padding-left: 50px;
}
@media screen and (min-width: 1024px) {
  .inner--top-works-archive,
  .inner--top-link {
    padding-left: 3.4722222222vw;
    max-width: 81.25vw;
  }
}
@media screen and (max-width: 767px) {
  .inner--top-works-archive,
  .inner--top-link {
    padding-left: 30px;
  }
}
@media screen and (max-width: 600px) {
  .inner--top-works-archive,
  .inner--top-link {
    padding-left: 20px;
  }
}

/* jsで使用するクラス */
.js-fixed {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.header--opacity {
  background-color: transparent;
}
.header--opacity .header__logo {
  display: none;
}
.header--opacity .header__logo--black {
  display: block;
}
.header--opacity .header__menu a {
  color: #fff;
}
.header--opacity .hamburger__bar {
  background-color: #fff;
}

.header--under .header__menu a {
  color: #353535;
}

.js-hamburger .hamburger__bar {
  background-color: #fff;
}
.js-hamburger .hamburger__bar:nth-child(1) {
  top: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.js-hamburger .hamburger__bar:nth-child(2) {
  opacity: 0;
}
.js-hamburger .hamburger__bar:nth-child(3) {
  bottom: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.js-header__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  position: fixed;
  z-index: 100;
  top: 90px;
  right: 0;
  width: 80vw;
}
.js-header__menus .header__menu {
  border-top: 1px solid #fff;
  font-size: 18px;
  text-align: left;
}
.js-header__menus .header__menu a {
  display: block;
  padding: 16px;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-header__menus .header__menu a:hover {
  color: #000;
}

/* 「メインビジュアル」で使用するクラス */
.mainvisual__layout {
  width: 100%;
  height: 50vw;
  min-height: 550px;
}

.mainvisual__swiper {
  width: 100%;
  height: 100%;
}

.mainvisual__slide {
  position: relative;
  width: 100%;
  height: 100%;
  /* .mainvisual__heading--01 {
  	left: 2.8%;
  	top: 50%;
  	transform: translateY(-50%);

  	@include mq("lg") {
  		font-size: vw(40);
  	}
  }

  .mainvisual__heading--02 {
  	left: 50%;
  	transform: translateX(-50%);
  	width: 100%;
  	bottom: 18%;
  	text-align: center;
  }

  .mainvisual__heading--03 {
  	font-size: vw(40);
  	top: 50%;
  	transform: translateY(-50%);
  	left: 7%;

  	@include mq("sp") {
  		font-size: 32px;
  	}

  	@include mq("mini") {
  		font-size: 24px;
  	}
  }

  .mainvisual__heading--04 {
  	bottom: 12.5%;
  	right: 6.25%;
  	text-align: right;
  }

  .mainvisual__heading--05 {
  	top: 31.6%;
  	left: 4.2%;

  	@include mq("sp") {
  		font-size: 32px;
  	}

  	@include mq("mini") {
  		font-size: 24px;
  	}
  } */
}
.mainvisual__slide::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .15);
}
.mainvisual__slide img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mainvisual__slide .mainvisual__img-right {
  -o-object-position: center right;
     object-position: center right;
}
.mainvisual__slide .mainvisual__img-left {
  -o-object-position: bottom left;
     object-position: bottom left;
}
.mainvisual__slide .mainvisual__heading {
  position: absolute;
  z-index: 2;
  top: 31.6%;
  left: 4.2%;
  font-size: 40px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0px 4px 14px rgba(0, 0, 0, .36);
}
@media screen and (min-width: 1024px) {
  .mainvisual__slide .mainvisual__heading {
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__slide .mainvisual__heading {
    font-size: 36px;
  }
}
@media screen and (max-width: 600px) {
  .mainvisual__slide .mainvisual__heading {
    font-size: 24px;
  }
}
.mainvisual__slide .mainvisual__slide-logo {
  position: absolute;
  z-index: 2;
  bottom: 3%;
  right: 1%;
  max-width: 200px;
  max-height: 40px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .mainvisual__slide .mainvisual__slide-logo {
    max-width: 18.0555555556vw;
    max-height: 3.6111111111vw;
  }
}
.mainvisual__slide .mainvisual__slide-logo img {
  aspect-ratio: 260/52;
  width: 100%;
  height: 100%;
}

/* トップページの事業内容で使用するクラス */
.top-business {
  position: relative;
  background-image: url(../images/top/top-business-background.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 300px;
  margin-top: 100px;
  padding-right: 50px;
  padding-left: 50px;
}
@media screen and (min-width: 1024px) {
  .top-business {
    height: 28.3333333333vw;
    margin-top: 8.3333333333vw;
    padding-right: 3.4722222222vw;
    padding-left: 3.4722222222vw;
  }
}
@media screen and (max-width: 767px) {
  .top-business {
    max-width: none;
    margin-top: 80px;
    height: 350px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 600px) {
  .top-business {
    height: 300px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.top-business__layout {
  position: absolute;
  top: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 720px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 60px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(../images/top/top-business-picture.png);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 1024px) {
  .top-business__layout {
    top: 5.5555555556vw;
    max-width: 77.7777777778vw;
    padding: 5.5555555556vw 6.25vw 6.6666666667vw;
    gap: 15.625vw;
  }
}
@media screen and (max-width: 767px) {
  .top-business__layout {
    top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: calc(100% - 80px);
    height: auto;
    padding: 40px 30px;
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .top-business__layout {
    max-width: calc(100% - 100px);
  }
}
@media screen and (max-width: 550px) {
  .top-business__layout {
    max-width: calc(100% - 40px);
    padding: 32px 24px;
  }
}

.top-business__text {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .top-business__text {
    font-size: 0.9722222222vw;
  }
}

/* トップページの事業内容で使用するクラス */
.top-company__layout {
  padding-top: 90px;
}
@media screen and (min-width: 1024px) {
  .top-company__layout {
    padding-top: 8.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .top-company__layout {
    padding-top: 60px;
  }
}

.top-company__main {
  margin-top: 4.1666666667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .top-company__main {
    gap: 4.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .top-company__main {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-company__picture {
  max-width: calc(100% - 330px);
  min-height: 300px;
}
@media screen and (min-width: 1024px) {
  .top-company__picture {
    max-width: 61.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .top-company__picture {
    max-width: 100%;
    padding-left: 30px;
  }
}
@media screen and (max-width: 600px) {
  .top-company__picture {
    padding-left: 20px;
  }
}
.top-company__picture img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}
@media screen and (min-width: 1024px) {
  .top-company__picture img {
    aspect-ratio: 888/400;
  }
}

/* トップページの会社案内、事業内容で使用するクラス */
.top-links {
  overflow: hidden;
}

.top-links__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4.3055555556vw;
  max-width: 83.4722222222vw;
  width: 100%;
  margin: 6.9444444444vw auto 0;
  padding: 0 2.7777777778vw 5.3472222222vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-links__links {
    gap: 30px;
    max-width: 680px;
    margin-top: 50px;
    padding: 0 20px 50px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__links {
    gap: 18px;
  }
}

.top-links__background {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  margin: 0 calc(50% - 50vw);
}
.top-links__background img {
  width: 100%;
  height: 23.1944444444vw;
}
@media screen and (max-width: 767px) {
  .top-links__background img {
    height: 240px;
  }
}

.top-links__link {
  width: calc(50% - 2.15278vw);
}
@media screen and (max-width: 767px) {
  .top-links__link {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 600px) {
  .top-links__link {
    width: calc(50% - 9px);
  }
}
.top-links__link a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top-links__link a:hover {
  opacity: 0.9;
}
.top-links__link .top-links__picture {
  position: relative;
}
.top-links__link .top-links__picture img {
  aspect-ratio: 530/600;
  width: 100%;
  height: 100%;
}
.top-links__link .top-links__picture .top-links__heading {
  position: absolute;
  left: 1.9444444444vw;
  bottom: 2.0833333333vw;
}
@media screen and (max-width: 767px) {
  .top-links__link .top-links__picture .top-links__heading {
    left: 18px;
    bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-links__link .top-links__picture .top-links__heading {
    left: 10px;
    bottom: 10px;
  }
}
.top-links__link .top-links__picture .top-links__heading .top-links__heading-en {
  font-size: 1.3888888889vw;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-links__link .top-links__picture .top-links__heading .top-links__heading-en {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__link .top-links__picture .top-links__heading .top-links__heading-en {
    font-size: 12px;
  }
}
.top-links__link .top-links__picture .top-links__heading .top-links__heading-ja {
  font-size: 2.7777777778vw;
  letter-spacing: 0.04em;
  font-weight: 900;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-links__link .top-links__picture .top-links__heading .top-links__heading-ja {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__link .top-links__picture .top-links__heading .top-links__heading-ja {
    font-size: 16px;
  }
}

.top-links__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.1666666667vw;
  padding: 1.1111111111vw 2.0833333333vw;
}
@media screen and (max-width: 767px) {
  .top-links__foot {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    padding: 14px 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-links__foot {
    gap: 12px;
    padding: 10px;
  }
}

.top-links__text {
  font-size: 1.5277777778vw;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-links__text {
    width: calc(100% - 40px);
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__text {
    width: calc(100% - 30px);
    font-size: 14px;
  }
}

.top-links__arrow {
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .top-links__arrow {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__arrow {
    width: 10px;
    height: 10px;
  }
}

/* トップページのお知らせで使用するクラス */
.top-news__layout {
  margin-top: 90px;
  padding-top: 150px;
}
@media screen and (min-width: 1024px) {
  .top-news__layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 9.7222222222vw;
    margin-top: 6.25vw;
    padding-top: 8.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .top-news__layout {
    padding-top: 80px;
    margin-top: 120px;
  }
}
@media screen and (max-width: 600px) {
  .top-news__layout {
    margin-top: 90px;
    padding-top: 150px;
  }
}

.top-news__head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.top-news__items {
  margin-top: 40px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .top-news__items {
    margin-top: 4.1666666667vw;
    width: calc(100% - 28.47222vw);
  }
}
@media screen and (max-width: 767px) {
  .top-news__items {
    margin-top: 24px;
  }
}

.top-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 18px 20px 18px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, .6);
}
@media screen and (min-width: 1024px) {
  .top-news__item {
    gap: 2.2222222222vw;
    padding: 1.3888888889vw 1.3888888889vw 1.3888888889vw 0.6944444444vw;
    border-bottom: 0.0694444444vw solid rgba(0, 0, 0, .6);
  }
}
@media screen and (max-width: 767px) {
  .top-news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
  }
}

.top-news__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: calc(100% - 104px);
}
@media screen and (min-width: 1024px) {
  .top-news__main {
    gap: 1.3888888889vw;
    width: calc(100% - 7.77778vw);
  }
}
@media screen and (max-width: 767px) {
  .top-news__main {
    width: 100%;
  }
}

.top-news__date,
.top-news__text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, .6);
}
@media screen and (min-width: 1024px) {
  .top-news__date,
  .top-news__text {
    font-size: 0.9722222222vw;
  }
}

.top-news__date {
  width: 80px;
}
@media screen and (min-width: 1024px) {
  .top-news__date {
    width: 5.5555555556vw;
  }
}

.top-news__text {
  width: calc(100% - 60px);
}
@media screen and (min-width: 1024px) {
  .top-news__text {
    width: calc(100% - 4.16667vw);
  }
}

.top-news__arrow {
  width: 40px;
}
@media screen and (min-width: 1024px) {
  .top-news__arrow {
    width: 2.7777777778vw;
  }
}

/* トップページの採用情報で使用するクラス */
.top-recruit__layout {
  position: relative;
  margin-top: 6.9444444444vw;
  padding-bottom: 6.9444444444vw;
}
@media screen and (max-width: 767px) {
  .top-recruit__layout {
    margin-top: 70px;
    padding-bottom: 70px;
  }
}
.top-recruit__layout::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 72.9861111111vw;
  height: 34.5833333333vw;
  background-image: url(../images/top/recruit-background.png);
}
@media screen and (max-width: 767px) {
  .top-recruit__layout::before {
    width: 72.9861%;
    height: 80%;
  }
}
.top-recruit__layout::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 15.2777777778vw;
  background-color: #E2F0E5;
}
@media screen and (max-width: 767px) {
  .top-recruit__layout::after {
    height: 20%;
  }
}

.top-recruit__title {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
}
.top-recruit__title img {
  display: block;
  margin-left: auto;
  width: 57.6388888889vw;
}
@media screen and (max-width: 767px) {
  .top-recruit__title img {
    aspect-ratio: 375/60;
    padding-left: 20px;
    max-width: 395px;
    width: 100%;
    max-height: 60px;
    height: 100%;
  }
}

.top-recruit__flex {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 2.2222222222vw;
}
@media screen and (max-width: 767px) {
  .top-recruit__flex {
    display: block;
    padding-top: 24px;
  }
}

.top-recruit__picture {
  min-width: 55.5555555556vw;
}
@media screen and (max-width: 767px) {
  .top-recruit__picture {
    min-width: auto;
    width: 80%;
  }
}
.top-recruit__picture img {
  aspect-ratio: 800/530;
  min-width: 55.5555555556vw;
  height: 36.8055555556vw;
  margin-bottom: 2.7777777778vw;
}
@media screen and (max-width: 767px) {
  .top-recruit__picture img {
    min-width: 70%;
    height: auto;
  }
}

.top-recruit__main {
  position: relative;
  background-color: #fff;
  margin-left: -5.0694444444vw;
  margin-right: 10.625vw;
  padding: 4.1666666667vw 3.4722222222vw;
  min-width: 38.8888888889vw;
  height: 27.0833333333vw;
}
@media screen and (max-width: 767px) {
  .top-recruit__main {
    min-width: auto;
    width: 80%;
    height: auto;
    padding: 30px;
    margin: 0;
    margin-top: -50px;
    margin-left: auto;
  }
}

.top-recruit__heading-en {
  font-size: 1.3888888889vw;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  color: #24B654;
}
@media screen and (max-width: 767px) {
  .top-recruit__heading-en {
    font-size: 16px;
  }
}

.top-recruit__heading-ja {
  font-size: 2.7777777778vw;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #24B654;
}
@media screen and (max-width: 767px) {
  .top-recruit__heading-ja {
    font-size: 20px;
  }
}

.top-recruit__text {
  margin-top: 1.9444444444vw;
  font-size: 1.6666666667vw;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .top-recruit__text {
    margin-top: 16px;
    font-size: 14px;
  }
}

/* 下層ページのヘッド部分で使用するクラス */
.under-heading__background {
  margin-top: 6.9444444444vw;
  height: 11.1111111111vw;
  padding-top: 3.8888888889vw;
  background-image: url(../images/common/common-under-heading.png);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .under-heading__background {
    height: 100px;
    padding-top: 32px;
    margin-top: 70px;
  }
}
@media screen and (max-width: 600px) {
  .under-heading__background {
    background-position: 24% 50%;
  }
}

.under-heading__title {
  font-size: 2.7777777778vw;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.3em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .under-heading__title {
    font-size: 24px;
  }
}

.under-heading__title-en {
  margin-top: 0.9027777778vw;
  font-size: 1.3888888889vw;
  letter-spacing: 0.01em;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .under-heading__title-en {
    margin-top: 8px;
    font-size: 14px;
  }
}

/* 事業内容ページで使用するクラス */
.business {
  position: relative;
}
.business::before {
  content: "";
  position: absolute;
  bottom: -1.3888888889vw;
  right: 0;
  max-height: 65.625vw;
  aspect-ratio: 1266/945;
  height: 100%;
  background-image: url(../images/business/business-treat.png);
  background-size: cover;
}

.business__layout {
  margin-top: 65px;
}
@media screen and (min-width: 1024px) {
  .business__layout {
    margin-top: 5.5555555556vw;
  }
}
@media screen and (max-width: 767px) {
  .business__layout {
    margin-top: 50px;
  }
}
.business__layout:not(:first-child) {
  margin-top: 100px;
}
@media screen and (min-width: 1024px) {
  .business__layout:not(:first-child) {
    margin-top: 8.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .business__layout:not(:first-child) {
    margin-top: 80px;
  }
}

.business__content {
  position: relative;
  background-image: url(../images/business/business-content-background.jpg);
  background-size: cover;
  background-position: center bottom;
  padding: 46px 70px 46px 50px;
}
@media screen and (min-width: 1024px) {
  .business__content {
    padding: 4.1666666667vw 7.6388888889vw;
  }
}
@media screen and (max-width: 767px) {
  .business__content {
    padding: 32px 60px 32px 32px;
  }
}
.business__content .business__content-title {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: calc(100% - 80px);
}
@media screen and (min-width: 1024px) {
  .business__content .business__content-title {
    height: calc(100% - 1.38889vw);
  }
}
@media screen and (max-width: 767px) {
  .business__content .business__content-title {
    max-height: 356px;
    height: 100%;
  }
}
.business__content .business__content-title img {
  height: 100%;
}

.business__content-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 1024px) {
  .business__content-items {
    gap: 2.2222222222vw;
  }
}
@media screen and (max-width: 767px) {
  .business__content-items {
    gap: 24px;
  }
}

.business__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
@media screen and (min-width: 1024px) {
  .business__content-item {
    gap: 1.1111111111vw;
  }
}
@media screen and (max-width: 767px) {
  .business__content-item {
    gap: 12px;
  }
}

.business__content-number,
.business__content-text {
  font-size: 24px;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .business__content-number,
  .business__content-text {
    font-size: 1.9444444444vw;
  }
}
@media screen and (max-width: 767px) {
  .business__content-number,
  .business__content-text {
    font-size: 20px;
  }
}

.business__content-number {
  color: transparent;
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.business__content-text {
  width: calc(100% - 5vw);
  color: #fff;
}

.business__categories {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .business__categories {
    margin-top: 4.1666666667vw;
    gap: 2.7777777778vw 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .business__categories {
    margin-top: 40px;
    gap: 20px;
  }
}

.business__category {
  aspect-ratio: 360/320;
  width: calc(50% - 15px);
  height: 100%;
  background-image: url(../images/business/business-category-background.png);
  background-size: cover;
  background-position: left center;
  padding: 18px;
  padding-right: 0;
}
@media screen and (min-width: 1024px) {
  .business__category {
    width: calc(33.33333% - 0.92593vw);
    padding: 1.3888888889vw;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .business__category {
    width: calc(50% - 10px);
    padding: 16px;
    padding-right: 0;
  }
}
@media screen and (max-width: 550px) {
  .business__category {
    width: 100%;
  }
}

.business__picture {
  position: relative;
  background-color: gray;
  width: 100%;
  height: 100%;
}
.business__picture .business__category-name {
  position: absolute;
  top: 18px;
  right: 18px;
  background: -webkit-gradient(linear, left top, left bottom, from(#816500), to(#EED16D));
  background: linear-gradient(to bottom, #816500, #EED16D);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 38px;
  height: 140px;
  font-size: 20px;
  letter-spacing: 0.2em;
  padding-top: 0.2em;
  color: #fff;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
@media screen and (min-width: 1024px) {
  .business__picture .business__category-name {
    top: 1.3888888889vw;
    right: 1.3888888889vw;
    width: 2.9861111111vw;
    height: 10.4166666667vw;
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .business__picture .business__category-name {
    top: 16px;
    right: 16px;
    font-size: 16px;
    width: 32px;
    height: 130px;
    letter-spacing: 0.4em;
    padding-top: 0.4em;
  }
}
.business__picture img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.business__works-main {
  background-image: url(../images/business/business-works-background.jpg);
  padding: 54px 6px 65px;
}
@media screen and (min-width: 1024px) {
  .business__works-main {
    padding: 4.7222222222vw 0.2777777778vw 5.5555555556vw;
  }
}
@media screen and (max-width: 767px) {
  .business__works-main {
    padding: 40px 8px 50px;
  }
}

.business__works {
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px;
}
@media screen and (min-width: 1024px) {
  .business__works {
    margin-top: 2.0833333333vw;
    gap: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .business__works {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 24px;
  }
}

.business__work {
  position: relative;
  z-index: 1;
  width: calc(50% - 9px);
  min-height: 112px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#817200), color-stop(#CFB68D), to(#817200));
  background-image: linear-gradient(to top, #817200, #CFB68D, #817200);
  padding: 18px;
}
@media screen and (min-width: 1024px) {
  .business__work {
    width: calc(50% - 0.69444vw);
    min-height: 7.7777777778vw;
    padding: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .business__work {
    width: 100%;
    padding: 16px;
    min-height: auto;
  }
}
.business__work::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: #fff;
}

.business__work-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .business__work-head {
    padding-right: 1.1111111111vw;
  }
}

.business__work-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .business__work-right {
    gap: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .business__work-right {
    gap: 8px;
  }
}

.business__work-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  letter-spacing: 0.04em;
  font-weight: normal;
  width: 80px;
  height: 22px;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .business__work-category {
    width: 5.5555555556vw;
    height: 1.5277777778vw;
    font-size: 0.9722222222vw;
  }
}
@media screen and (max-width: 767px) {
  .business__work-category {
    width: 70px;
    height: 20px;
    font-size: 12px;
  }
}

.business__work-category--type-a {
  background-color: #BCA44F;
}

.business__work-category--type-b {
  background-color: #AB8500;
}

.business__work-category--type-c {
  background-color: #816500;
}

.business__work-name {
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #BCA44F;
}
@media screen and (min-width: 1024px) {
  .business__work-name {
    margin-top: 1.1111111111vw;
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .business__work-name {
    margin-top: 12px;
    font-size: 18px;
  }
}
.business__work-name span {
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .business__work-name span {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .business__work-name span {
    font-size: 12px;
  }
}

.business__work-name--mt-0 {
  margin-top: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.business__works-heading {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .business__works-heading {
    margin-top: 3.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .business__works-heading {
    margin-top: 30px;
  }
}

/* 会社案内ページで使用するクラス */
.company__layout {
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .company__layout {
    margin-top: 5.5555555556vw;
  }
}
@media screen and (max-width: 767px) {
  .company__layout {
    margin-top: 40px;
  }
}

.company__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 32px;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .company__items {
    margin-top: 4.4444444444vw;
    gap: 1.9444444444vw;
  }
}
@media screen and (max-width: 767px) {
  .company__items {
    gap: 20px;
  }
}

.company__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 0 24px 24px;
  border-bottom: 1px solid #DFDFDF;
}
@media screen and (min-width: 1024px) {
  .company__item {
    gap: 4.1666666667vw;
    padding-right: 2.0833333333vw;
    padding-left: 2.0833333333vw;
    padding-bottom: 1.9444444444vw;
  }
}
@media screen and (max-width: 767px) {
  .company__item {
    gap: 20px;
    padding: 0 16px 20px;
  }
}
@media screen and (max-width: 600px) {
  .company__item {
    gap: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.company__title,
.company__text {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) {
  .company__title,
  .company__text {
    font-size: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .company__title,
  .company__text {
    font-size: 16px;
  }
}

.company__title {
  width: 150px;
  color: #BCA44F;
}
@media screen and (min-width: 1024px) {
  .company__title {
    width: 11.8055555556vw;
  }
}
@media screen and (max-width: 767px) {
  .company__title {
    width: 110px;
  }
}
@media screen and (max-width: 600px) {
  .company__title {
    width: 100%;
  }
}

.company__texts {
  width: calc(100% - 190px);
}
@media screen and (min-width: 1024px) {
  .company__texts {
    width: calc(100% - 15.97222vw);
  }
}
@media screen and (max-width: 767px) {
  .company__texts {
    width: calc(100% - 140px);
  }
}
@media screen and (max-width: 600px) {
  .company__texts {
    width: 100%;
  }
}

.company__links {
  margin-top: 3.4722222222vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (min-width: 1024px) {
  .company__links {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3.4722222222vw 1.8055555556vw;
  }
}
@media screen and (max-width: 767px) {
  .company__links {
    margin-top: 30px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 550px) {
  .company__links {
    grid-template-columns: 1fr;
    max-width: 300px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.company__link img {
  max-height: 72px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .company__link img {
    max-height: 5vw;
    margin-bottom: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .company__link img {
    margin-bottom: 14px;
  }
}
.company__link p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 1024px) {
  .company__link p {
    font-size: 1.25vw;
  }
}
.company__link p a {
  text-decoration: underline;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .company__link p a {
    font-size: 0.9722222222vw;
  }
}

.company__access-texts {
  margin-top: 3.0555555556vw;
}
@media screen and (max-width: 767px) {
  .company__access-texts {
    margin-top: 24px;
  }
}
.company__access-texts p,
.company__access-texts h3 {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .company__access-texts p,
  .company__access-texts h3 {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .company__access-texts p,
  .company__access-texts h3 {
    font-size: 14px;
  }
}
.company__access-texts h3 {
  font-weight: bold;
  color: #816500;
}
.company__access-texts .company__access-mt {
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .company__access-texts .company__access-mt {
    margin-top: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .company__access-texts .company__access-mt {
    margin-top: 8px;
  }
}

/* アンカ */
.company__map--img1{
  background-color: transparent !important;
  background-image: url(../images/company/gaikan1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.company__map--img2{
  background-color: transparent !important;
  background-image: url(../images/company/gaikan2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.company__maps {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;

}
@media screen and (min-width: 1024px) {
  .company__maps {
    margin-top: 1.6666666667vw;
  }
}
@media screen and (max-width: 550px) {
  .company__maps {
    grid-template-columns: 1fr;
  }
}

.company__map {
  background-color: #C4C4C4;
}
.company__map iframe {
  aspect-ratio: 560/320;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.company__iso {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.1111111111vw;
}
@media screen and (max-width: 767px) {
  .company__iso {
    gap: 16px;
  }
}
@media screen and (max-width: 600px) {
  .company__iso {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.company__iso:not(:first-child) {
  margin-top: 1.9444444444vw;
}
@media screen and (max-width: 767px) {
  .company__iso:not(:first-child) {
    margin-top: 20px;
  }
}

.company__iso-picture img {
  width: 8.1944444444vw;
  height: auto;
}
@media screen and (max-width: 767px) {
  .company__iso-picture img {
    width: 118px;
  }
}

.company__iso-texts {
  width: calc(100% - 9.30556vw);
}
@media screen and (max-width: 767px) {
  .company__iso-texts {
    width: calc(100% - 134px);
  }
}

.company__iso-text {
  font-size: 1.3888888889vw;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .company__iso-text {
    font-size: 16px;
  }
}

/* お問い合わせページで使用するクラス */
.contact__layout {
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  .contact__layout {
    margin-top: 5.5555555556vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__layout {
    margin-top: 40px;
  }
}

.contact__texts {
  margin-top: 36px;
}
@media screen and (min-width: 1024px) {
  .contact__texts {
    margin-top: 2.7777777778vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__texts {
    margin-top: 30px;
  }
}
.contact__texts .contact__text {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 1024px) {
  .contact__texts .contact__text {
    font-size: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__texts .contact__text {
    font-size: 16px;
  }
}
.contact__texts span {
  color: #FF0000;
}

.contact__texts {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .contact__texts {
    margin-top: 1.9444444444vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__texts {
    margin-top: 18px;
  }
}

.contact__text {
  font-size: 16px;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .contact__text {
    font-size: 1.25vw;
  }
}
.contact__text span {
  color: #E84700;
}
.contact__text a {
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact__text a:hover {
  opacity: 0.7;
}

.contact__form {
  margin-top: 45px;
}
@media screen and (min-width: 1024px) {
  .contact__form {
    margin-top: 4.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-top: 30px;
  }
}

.contact__title {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #BCA44F;
}
@media screen and (min-width: 1024px) {
  .contact__title {
    font-size: 1.5277777778vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 16px;
    width: auto;
  }
}
.contact__title .red {
  color: #E84700;
}

.contact__row:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .contact__row:not(:first-child) {
    margin-top: 1.3888888889vw;
  }
}

input[type=text] {
  width: 100%;
  height: 54px;
  font-size: 18px;
  margin-top: 10px;
  padding: 0 18px;
  background-color: #efefef;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1024px) {
  input[type=text] {
    height: 4.4444444444vw;
    font-size: 1.3888888889vw;
    margin-top: 0.6944444444vw;
    padding: 0 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  input[type=text] {
    width: 100%;
    height: 48px;
    font-size: 16px;
    margin-top: 10px;
    padding: 0 16px;
  }
}
input[type=text]::-webkit-input-placeholder {
  color: rgba(0, 0, 0, .2);
  font-weight: bold;
  letter-spacing: 0.08em;
}
input[type=text]::-moz-placeholder {
  color: rgba(0, 0, 0, .2);
  font-weight: bold;
  letter-spacing: 0.08em;
}
input[type=text]::-ms-input-placeholder {
  color: rgba(0, 0, 0, .2);
  font-weight: bold;
  letter-spacing: 0.08em;
}
input[type=text]::placeholder {
  color: rgba(0, 0, 0, .2);
  font-weight: bold;
  letter-spacing: 0.08em;
}

input[type=checkbox] {
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #151515;
  cursor: pointer;
}
input[type=checkbox]:checked {
  background-color: #2368EB;
  cursor: default;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
@media screen and (min-width: 1024px) {
  input[type=checkbox] {
    width: 1.3888888889vw;
    height: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  input[type=checkbox] {
    width: 14px;
    height: 14px;
  }
}

textarea {
  width: 100%;
  height: 320px;
  background-color: #efefef;
  font-size: 18px;
  margin-top: 10px;
  padding: 18px;
  resize: none;
}
@media screen and (min-width: 1024px) {
  textarea {
    height: 27.7777777778vw;
    font-size: 1.3888888889vw;
    margin-top: 0.6944444444vw;
    padding: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  textarea {
    width: 100%;
    height: 240px;
    font-size: 16px;
    padding: 16px;
  }
}

.contact__checkbox {
  margin-top: 32px;
  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;
}
@media screen and (min-width: 1024px) {
  .contact__checkbox {
    margin-top: 2.7777777778vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__checkbox {
    margin-top: 24px;
  }
}
.contact__checkbox input[type=checkbox] {
  margin: 0;
  border: 1px solid #222222;
  background-color: #fff;
}
.contact__checkbox .contact__privacy {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin-left: 10px;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1024px) {
  .contact__checkbox .contact__privacy {
    font-size: 1.25vw;
    margin-left: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__checkbox .contact__privacy {
    font-size: 14px;
    margin-left: 8px;
  }
}
.contact__checkbox .contact__privacy a {
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact__checkbox .contact__privacy a:hover {
  opacity: 0.7;
}

.contact__policies {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
@media screen and (min-width: 1024px) {
  .contact__policies {
    margin-top: 2.7777777778vw;
    gap: 1.9444444444vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__policies {
    margin-top: 32px;
    gap: 24px;
  }
}

.contact__policy-text {
  margin-top: 20px;
  margin-left: 10px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) {
  .contact__policy-text {
    margin-top: 1.6666666667vw;
    margin-left: 0.6944444444vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__policy-text {
    margin-top: 16px;
  }
}

/* お知らせで使用するクラス */
.news__items {
  margin: 60px auto 0;
  max-width: 550px;
  width: 100%;
  min-width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .news__items {
    margin: 5.5555555556vw auto 0;
    max-width: 38.1944444444vw;
    min-width: 550px;
    gap: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .news__items {
    margin-top: 24px;
  }
}

.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  padding-bottom: 20px;
  padding-left: 8px;
  border-bottom: 1px solid rgba(53, 53, 53, .2);
}
@media screen and (min-width: 1024px) {
  .news__item {
    gap: 2.0833333333vw;
    padding-left: 0.6944444444vw;
    padding-bottom: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .news__item {
    display: block;
  }
}

.news__date {
  font-size: 14px;
  width: 80px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .news__date {
    font-size: 0.9722222222vw;
    width: 5.9027777778vw;
  }
}

.news__text {
  font-size: 14px;
  width: calc(100% - 110px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .news__text {
    font-size: 0.9722222222vw;
    width: calc(100% - 7.98611vw);
  }
}
@media screen and (max-width: 767px) {
  .news__text {
    margin-top: 12px;
    width: 100%;
  }
}

/* プライバシーポリシーで使用するクラス */
.privacy__layout {
  margin-top: 1.9444444444vw;
}
@media screen and (max-width: 767px) {
  .privacy__layout {
    margin-top: 20px;
  }
}

.privacy__text {
  font-size: 1.1111111111vw;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .privacy__text {
    font-size: 16px;
  }
}

.privacy__text--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5555555556vw;
  font-weight: bold;
  color: #24B654;
}
@media screen and (max-width: 767px) {
  .privacy__text--title {
    gap: 8px;
  }
}

.privacy__text--mt-16 {
  margin-top: 1.1111111111vw;
}
@media screen and (max-width: 767px) {
  .privacy__text--mt-16 {
    margin-top: 16px;
  }
}

.privacy__text--mt-8 {
  margin-top: 0.5555555556vw;
}
@media screen and (max-width: 767px) {
  .privacy__text--mt-8 {
    margin-top: 8px;
  }
}

.privacy__items {
  margin-top: 2.7777777778vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.3888888889vw;
}
@media screen and (max-width: 767px) {
  .privacy__items {
    margin-top: 32px;
    gap: 20px;
  }
}

/* 採用情報で使用するクラス */
.recruit {
  position: relative;
}
.recruit::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  max-height: 57.6388888889vw;
  height: 100%;
  width: 100%;
  background-image: url(../images/recruit/recruit-treat.png);
  background-size: cover;
}

.recruit__layout {
  margin-top: 60px;
  padding-bottom: 75px;
}
@media screen and (min-width: 1024px) {
  .recruit__layout {
    margin-top: 5.5555555556vw;
    padding-bottom: 6.9444444444vw;
  }
}
@media screen and (max-width: 767px) {
  .recruit__layout {
    margin-top: 40px;
    padding-bottom: 50px;
  }
}

.recruit__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 24px;
  padding-bottom: 57px;
  gap: 24px;
  background-image: url(../images/recruit/recruit-background.png);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 1024px) {
  .recruit__items {
    padding-top: 1.9444444444vw;
    padding-bottom: 4.4444444444vw;
    gap: 1.9444444444vw;
  }
}
@media screen and (max-width: 767px) {
  .recruit__items {
    padding-top: 20px;
    padding-bottom: 40px;
    gap: 20px;
  }
}

.recruit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 0 24px 24px;
  border-bottom: 1px solid #DFDFDF;
}
@media screen and (min-width: 1024px) {
  .recruit__item {
    gap: 4.1666666667vw;
    padding: 0 2.0833333333vw 1.9444444444vw;
  }
}
@media screen and (max-width: 767px) {
  .recruit__item {
    gap: 20px;
    padding: 0 16px 20px;
  }
}

.recruit__title,
.recruit__text {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) {
  .recruit__title,
  .recruit__text {
    font-size: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .recruit__title,
  .recruit__text {
    font-size: 16px;
  }
}

.recruit__title {
  width: 120px;
  color: #BCA44F;
}
@media screen and (min-width: 1024px) {
  .recruit__title {
    width: 11.8055555556vw;
  }
}
@media screen and (max-width: 767px) {
  .recruit__title {
    width: 110px;
  }
}

.recruit__texts {
  width: calc(100% - 160px);
}
@media screen and (min-width: 1024px) {
  .recruit__texts {
    width: calc(100% - 15.97222vw);
  }
}
@media screen and (max-width: 767px) {
  .recruit__texts {
    width: calc(100% - 140px);
  }
}

/* 施工事例の archive.php で使用するクラス */
.works-archive__layout {
  margin-top: 54px;
}
@media screen and (min-width: 1024px) {
  .works-archive__layout {
    margin-top: 4.7222222222vw;
  }
}
@media screen and (max-width: 767px) {
  .works-archive__layout {
    margin-top: 40px;
  }
}

.works-archive__layout-top {
  margin-top: 120px;
}
@media screen and (min-width: 1024px) {
  .works-archive__layout-top {
    margin-top: 11.8055555556vw;
  }
}
@media screen and (max-width: 767px) {
  .works-archive__layout-top {
    margin-top: 90px;
  }
}

.works-archive__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .works-archive__categories {
    gap: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .works-archive__categories {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.works-archive__category {
  border: 1px solid #BCA44F;
}
.works-archive__category a {
  display: block;
  padding: 7px 9px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .works-archive__category a {
    padding: 0.5555555556vw 0.6944444444vw;
    font-size: 0.9722222222vw;
  }
}
@media screen and (max-width: 767px) {
  .works-archive__category a {
    padding: 6px 8px;
  }
}
.works-archive__category a:hover {
  background-color: #BCA44F;
  color: #fff;
}

.works-archive__category--active a {
  background-color: #BCA44F;
  color: #fff;
  cursor: default;
}

.works-archive__articles {
  margin-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .works-archive__articles {
    margin-top: 5.5555555556vw;
    gap: 2.7777777778vw;
  }
}
@media screen and (max-width: 767px) {
  .works-archive__articles {
    margin-top: 50px;
    gap: 24px;
  }
}

.works-archive__articles--top {
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .works-archive__articles--top {
    margin-top: 4.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .works-archive__articles--top {
    margin-top: 40px;
  }
}

.works-archive__article {
  width: calc(50% - 16px);
}
@media screen and (min-width: 1024px) {
  .works-archive__article {
    width: calc(33.33333% - 1.85185vw);
  }
}
@media screen and (max-width: 767px) {
  .works-archive__article {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 550px) {
  .works-archive__article {
    width: 100%;
  }
}
.works-archive__article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}
.works-archive__article .works-archive__category {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
  background-color: #BCA44F;
  color: #fff;
  padding: 7px 9px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .works-archive__article .works-archive__category {
    margin-top: 0.5555555556vw;
    font-size: 0.9722222222vw;
    padding: 0.5555555556vw 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  .works-archive__article .works-archive__category {
    padding: 6px 8px;
  }
}

.works-archive__picture {
  background-color: black;
}
.works-archive__picture img {
  aspect-ratio: 346/240;
  width: 100%;
  height: 100%;
}

.works-archive__the-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6px;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 1024px) {
  .works-archive__the-title {
    font-size: 1.25vw;
    margin-top: 0.4166666667vw;
  }
}
@media screen and (max-width: 767px) {
  .works-archive__the-title {
    font-size: 16px;
  }
}

.works-archive__pagination {
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  .works-archive__pagination {
    margin-top: 5.5555555556vw;
  }
}
@media screen and (max-width: 767px) {
  .works-archive__pagination {
    margin-top: 40px;
  }
}

/* 施工事例の single.php で使用するクラス */
.works-single__layout,
.works-single__the-content {
  margin-top: 60px;
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .works-single__layout,
  .works-single__the-content {
    margin-top: 5.5555555556vw;
    gap: 2.7777777778vw;
  }
}
@media screen and (max-width: 767px) {
  .works-single__layout,
  .works-single__the-content {
    margin-top: 40px;
    gap: 24px;
  }
}

.works-single__the-content p {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .works-single__the-content p {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .works-single__the-content p {
    font-size: 14px;
  }
}

.works-single__item {
  max-width: calc(50% - 15px);
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .works-single__item {
    max-width: calc(50% - 1.38889vw);
  }
}
.works-single__item img {
  display: block;
  aspect-ratio: 1/1;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.works-single__transition {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .works-single__transition {
    margin-top: 8.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .works-single__transition {
    margin-top: 70px;
  }
}
.works-single__transition .works-single__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .works-single__transition .works-single__link {
    font-size: 1.1111111111vw;
  }
}
.works-single__transition .works-single__link:hover {
  opacity: 0.7;
}
.works-single__transition .works-single__link--prev {
  position: relative;
  padding-left: 16px;
}
@media screen and (min-width: 1024px) {
  .works-single__transition .works-single__link--prev {
    padding-left: 1.25vw;
  }
}
.works-single__transition .works-single__link--prev::before {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
  background-color: #000;
  width: 10px;
  height: 1px;
  border-radius: 0 1px 1px 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  .works-single__transition .works-single__link--prev::before {
    top: calc(50% - 0.20833vw);
    width: 0.6944444444vw;
  }
}
.works-single__transition .works-single__link--prev::after {
  content: "";
  position: absolute;
  bottom: calc(50% - 4px);
  left: 0;
  background-color: #000;
  width: 10px;
  height: 1px;
  border-radius: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 1024px) {
  .works-single__transition .works-single__link--prev::after {
    bottom: calc(50% - 0.27778vw);
    width: 0.6944444444vw;
  }
}
.works-single__transition .works-single__link--next {
  position: relative;
  padding-right: 16px;
}
@media screen and (min-width: 1024px) {
  .works-single__transition .works-single__link--next {
    padding-right: 1.25vw;
  }
}
.works-single__transition .works-single__link--next::before {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 0;
  background-color: #000;
  width: 10px;
  height: 1px;
  border-radius: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 1024px) {
  .works-single__transition .works-single__link--next::before {
    top: calc(50% - 0.20833vw);
    width: 0.6944444444vw;
  }
}
.works-single__transition .works-single__link--next::after {
  content: "";
  position: absolute;
  bottom: calc(50% - 4px);
  right: 0;
  background-color: #000;
  width: 10px;
  height: 1px;
  border-radius: 0 1px 1px 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  .works-single__transition .works-single__link--next::after {
    bottom: calc(50% - 0.27778vw);
    width: 0.6944444444vw;
  }
}
.works-single__transition .works-single__button {
  padding: 0 0.2083333333vw 0.6944444444vw;
  border-bottom: 0.0694444444vw solid #000;
}

