@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,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 Sans JP", serif;
  color: #353535;
  font-weight: 500;
}

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

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

html {
  scroll-padding-top: 6.6666666667vw;
}
@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: auto;
}

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

/* 「会社紹介」ページの「アクセス」で使用するクラス */
.access__layout {
  padding: 5.5555555556vw 0;
}
@media screen and (max-width: 767px) {
  .access__layout {
    padding: 65px 0;
  }
}
@media screen and (max-width: 600px) {
  .access__layout {
    padding: 50px 0;
  }
}

.access__texts {
  margin-top: 2.7777777778vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .access__texts {
    margin-top: 36px;
  }
}
@media screen and (max-width: 600px) {
  .access__texts {
    margin-top: 32px;
  }
}

.access__text {
  font-size: 1.1111111111vw;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .access__text {
    font-size: 16px;
  }
}

.access__map {
  margin-top: 1.3888888889vw;
}
@media screen and (max-width: 767px) {
  .access__map {
    margin-top: 20px;
  }
}
.access__map iframe {
  display: block;
  aspect-ratio: 750/280;
  max-width: 52.0833333333vw;
  max-height: 19.4444444444vw;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .access__map iframe {
    max-width: 600px;
    max-height: none;
    min-height: 240px;
  }
}

/* ページ共通 パンくずリストで使用するクラス */
.c-breadcrumb__layout {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  margin-top: 2.7777777778vw;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__layout {
    margin-top: 30px;
  }
}
@media screen and (max-width: 600px) {
  .c-breadcrumb__layout {
    margin-top: 20px;
  }
}
.c-breadcrumb__layout span {
  display: block;
  font-size: 1.1111111111vw;
  color: rgba(34, 34, 34, .5);
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__layout span {
    font-size: 16px;
  }
}
.c-breadcrumb__layout .c-breadcrumb__connection {
  margin-left: 0.6944444444vw;
  margin-right: 0.6944444444vw;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__layout .c-breadcrumb__connection {
    margin-left: 8px;
    margin-right: 8px;
  }
}
.c-breadcrumb__layout .c-breadcrumb__hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.c-breadcrumb__layout .c-breadcrumb__hover span {
  text-decoration: underline;
  color: #222;
}
.c-breadcrumb__layout .c-breadcrumb__hover:hover {
  opacity: 0.7;
}

/* ページ共通 ボタンで使用するクラス */
.c-button {
  cursor: pointer;
  width: 34.7222222222vw;
  height: 6.25vw;
  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;
  margin: 2.7777777778vw auto 0;
  border: 1px solid #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button {
    width: 400px;
    height: 70px;
    margin-top: 36px;
  }
}
@media screen and (max-width: 600px) {
  .c-button {
    width: 250px;
    height: 45px;
    margin-top: 32px;
  }
}
.c-button:hover {
  opacity: 0.7;
}
.c-button p {
  font-size: 1.6666666667vw;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-button p {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-button p {
    font-size: 18px;
  }
}

/* ページ共通 h2で使用するクラス */
.c-heading--mt-45 {
  margin-top: 3.125vw;
}
@media screen and (max-width: 767px) {
  .c-heading--mt-45 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .c-heading--mt-45 {
    margin-top: 32px;
  }
}

.c-heading--mt-40 {
  margin-top: 2.7777777778vw;
}
@media screen and (max-width: 767px) {
  .c-heading--mt-40 {
    margin-top: 36px;
  }
}
@media screen and (max-width: 600px) {
  .c-heading--mt-40 {
    margin-top: 32px;
  }
}

.c-heading--mt-120 {
  margin-top: 8.3333333333vw;
}
@media screen and (max-width: 767px) {
  .c-heading--mt-120 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 600px) {
  .c-heading--mt-120 {
    margin-top: 80px;
  }
}

.c-heading-a .c-heading__ja {
  font-size: 3.3333333333vw;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: center;
  font-weight: 500;

}
@media screen and (max-width: 767px) {
  .c-heading-a .c-heading__ja {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-a .c-heading__ja {
    font-size: 32px;
  }
}
.c-heading-a .c-heading__en {
  font-size: 1.3888888889vw;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: "Crimson Text", serif;
  color: rgba(0, 0, 0, .5);
  font-weight: bold;
  margin-top: 1.1111111111vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-heading-a .c-heading__en {
    font-size: 18px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 600px) {
  .c-heading-a .c-heading__en {
    font-size: 16px;
    margin-top: 14px;
  }
}
.c-heading-a .c-heading__bar {
  height: 5.5555555556vw;
  width: 0.1388888889vw;
  margin: 1.1111111111vw auto 0;
  background-color: rgba(0, 0, 0, .5);
}
@media screen and (max-width: 767px) {
  .c-heading-a .c-heading__bar {
    width: 2px;
    height: 65px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 600px) {
  .c-heading-a .c-heading__bar {
    height: 50px;
    margin-top: 14px;
  }
}

.c-heading-b .c-heading__title {
  position: relative;
  font-size: 1.5277777778vw;
  line-height: 2;
  padding-left: 1.1111111111vw;
  border-bottom: 1px solid rgba(0, 0, 0, .5);
}
@media screen and (max-width: 767px) {
  .c-heading-b .c-heading__title {
    font-size: 20px;
    padding-left: 16px;
  }
}
@media screen and (max-width: 600px) {
  .c-heading-b .c-heading__title {
    font-size: 18px;
    padding-left: 14px;
  }
}
.c-heading-b .c-heading__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0.2777777778vw;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .c-heading-b .c-heading__title::before {
    width: 4px;
  }
}

/* 下層ページで使用する採用情報とお問い合わせのクラス */
.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;
  z-index: -1;
  width: 100%;
  margin-top: 6.6666666667vw;
  height: 16.6666666667vw;
  min-height: 240px;
  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;
}
@media screen and (max-width: 767px) {
  .mainvisual__background {
    margin-top: 70px;
  }
}

.mainvisual__background--news {
  background-image: url(/images/news/news-background.png);
}

.mainvisual__background--recruit,
.mainvisual__background--contact {
  background-image: url(/images/recruit/recruit-background.png);
}

.mainvisual__background--business {
  background-image: url(/images/business/business-background.png);
}

.mainvisual__background--works {
  background-image: url(/images/works/works-background.png);
}

.mainvisual__background--company {
  background-image: url(/images/company/company-mainvisual.png);
}

.mainvisual__background--service {
  background-image: url(/images/service/service-mainvisual.png);
}

.mainvisual__heading {
  padding: 0 11.1111111111vw;
  font-size: 2.2222222222vw;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #222;
}
@media screen and (max-width: 767px) {
  .mainvisual__heading {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .mainvisual__heading {
    font-size: 24px;
  }
}

.mainvisual__title {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -1.5277777778vw;
  font-size: 8.3333333333vw;
  font-weight: bold;
  line-height: 1;
  font-family: "Crimson Text", serif;
}
@media screen and (max-width: 767px) {
  .mainvisual__title {
    bottom: -14px;
    font-size: 80px;
  }
}
@media screen and (max-width: 600px) {
  .mainvisual__title {
    bottom: -10px;
    font-size: 60px;
  }
}

.mainvisual__title--news {
  color: rgba(0, 0, 0, .05);
}

.mainvisual__title--works,
.mainvisual__title--service {
  mix-blend-mode: overlay;
  color: rgba(0, 0, 0, .7);
}

.mainvisual__title--contact,
.mainvisual__title--recruit,
.mainvisual__title--business {
  mix-blend-mode: overlay;
  color: rgba(0, 0, 0, .1);
}

.mainvisual__title--company {
  mix-blend-mode: overlay;
  color: rgba(0, 0, 0, .2);
}

/* ページ共通で使用するページネーションのクラス */
.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 {
  background-image: url(/images/footer/footer-background.png);
  background-size: cover;
  background-position: center;
}

.footer__layout {
  max-width: 84.7222222222vw;
  padding: 2.7777777778vw 3.4722222222vw 1.3888888889vw;
  margin: 5.5555555556vw auto 0;
}
@media screen and (max-width: 767px) {
  .footer__layout {
    max-width: 100%;
    margin-top: 70px;
    padding: 30px 35px 20px;
  }
}
@media screen and (max-width: 600px) {
  .footer__layout {
    margin-top: 60px;
    padding: 20px 20px 20px;
  }
}

.footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 6.25vw;
}
@media screen and (max-width: 767px) {
  .footer__head {
    -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;
    gap: 30px;
  }
}

.footer__logo {
  max-width: 26.25vw;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 300px;
  }
}
.footer__logo img {
  aspect-ratio: 378/77;
  width: 100%;
  height: 100%;
}

.footer__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.3888888889vw 2.5vw;
  max-width: 36.1111111111vw;
}
@media screen and (max-width: 767px) {
  .footer__menus {
    max-width: 100%;
    gap: 16px;
  }
}

.footer__menu {
  font-size: 1.1111111111vw;
  line-height: 1;
  font-weight: 600;
  color: #413D3C;
}
@media screen and (max-width: 767px) {
  .footer__menu {
    font-size: 16px;
  }
}
.footer__menu a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__menu a:hover {
  opacity: 0.7;
}

.footer__company {
  margin-top: 1.3888888889vw;
}
@media screen and (max-width: 767px) {
  .footer__company {
    margin-top: 30px;
  }
}
.footer__company p {
  font-size: 0.9722222222vw;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .footer__company p {
    font-size: 14px;
  }
}

/* ハンバーガーメニューで使用するクラス */
@media screen and (max-width: 767px) {
  .header__hamburger {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hamburger__icon {
  position: relative;
  z-index: 100;
  width: 50px;
  height: 30px;
  cursor: pointer;
}

.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: 0;
  width: 80vw;
  height: 100vh;
  background-color: #008438;
}

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

.header__layout {
  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: 2.7777777778vw;
  padding-right: 3.4722222222vw;
  padding-left: 3.4722222222vw;
}
@media screen and (max-width: 767px) {
  .header__layout {
    padding: 0 20px;
  }
}

.header__nav {
  height: 100%;
}

.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: 18.4027777778vw;
  max-height: 3.75vw;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 180px;
    max-height: none;
  }
}
.header__logo img {
  aspect-ratio: 265/54;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .header__menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.7777777778vw;
    height: 100%;
  }
  .header__menu {
    font-size: 1.1111111111vw;
    font-weight: bold;
    height: 100%;
  }
  .header__menu:last-child {
    margin-left: 1.3888888889vw;
  }
  .header__menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #222;
    height: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header__menu a:hover {
    opacity: 0.7;
  }
  .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;
  }
  .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 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  .header__menu--contact a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #222;
    gap: 0.4166666667vw;
    height: 3.75vw;
    padding: 0 0.8333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .header__mail {
    width: 1.4583333333vw;
  }
  .header__mail img {
    aspect-ratio: 21/16;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .header__contact {
    font-size: 1.25vw;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .header__menus {
    right: -120%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.js-sub-menu {
  position: relative;
}
@media screen and (max-width: 767px) {
  .js-sub-menu {
    display: none;
  }
}
.js-sub-menu:hover .header__relative {
  opacity: 1;
}
.js-sub-menu:hover .header__relative::before {
  -webkit-transform: translateY(-10%) rotate(-135deg);
          transform: translateY(-10%) rotate(-135deg);
}
.js-sub-menu .header__relative {
  position: relative;
  padding-right: 0.8333333333vw;
  cursor: default;
}
.js-sub-menu .header__relative::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 0.4166666667vw;
  height: 0.4166666667vw;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__sub {
  position: absolute;
  top: calc(100% - 0.69444vw);
  left: -1.1111111111vw;
  padding: 2.2222222222vw 1.3888888889vw 1.3888888889vw;
  background-color: #000;
  height: auto !important;
  display: none;
}

.header__sub-menu--service {
  min-width: 54.1666666667vw;
}

.header__sub-menu--company {
  max-width: 33.3333333333vw;
  min-width: 33.3333333333vw;
}

.header__sub-menu-title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.1111111111vw;
}
.header__sub-menu-title p {
  font-size: 1.1111111111vw;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}
.header__sub-menu-title img {
  aspect-ratio: 21/5;
  max-width: 1.4583333333vw;
  max-height: 0.3472222222vw;
  width: 100%;
  height: 100%;
}

.header__sub-menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6944444444vw;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2.2222222222vw;
}

.header__sub-menu {
  max-width: 9.7222222222vw;
}
.header__sub-menu a {
  display: block;
}
.header__sub-menu .header__sub-menu-picture img {
  aspect-ratio: 140/105;
  max-width: 9.7222222222vw;
  max-height: 7.2916666667vw;
  width: 100%;
  height: 100%;
}
.header__sub-menu .header__sub-menu-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2777777778vw;
  background-color: #fff;
  height: 2.5vw;
  padding: 0 0.6944444444vw;
}
.header__sub-menu .header__sub-menu-foot p {
  font-size: 0.7638888889vw;
  line-height: 1.2;
  letter-spacing: 0.08em;
  width: calc(100% - 0.97222vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.header__sub-menu .header__sub-menu-foot img {
  aspect-ratio: 14/4;
  max-width: 0.6944444444vw;
  max-height: 0.2777777778vw;
  width: 100%;
}

/* 「会社紹介」ページの「沿革」で使用するクラス */
.history__layout {
  padding: 5.5555555556vw 0;
}
@media screen and (max-width: 767px) {
  .history__layout {
    padding: 65px 0;
  }
}
@media screen and (max-width: 600px) {
  .history__layout {
    padding: 50px 0;
  }
}

.inner {
  max-width: 84.7222222222vw;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  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;
  }
}

.inner--under {
  /* max-width: 59.0277777778vw; */
}
@media screen and (max-width: 767px) {
  .inner--under {
    max-width: 700px;
  }
}

/* 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 {
  opacity: 0.7;
}

/* 「会社紹介」ページの「代表挨拶」で使用するクラス */
.message__layout {
  padding: 5.5555555556vw 0 7.77777777vw;
}

.message-text{
  margin-top: 5.55555554vw;
  font-size: 1.3888888888889vw;
  color: #222;

font-family: "Noto Sans JP";

font-style: normal;
font-weight: 700;
line-height: 140%; /* 28px */
letter-spacing: 1.2px;

}

@media screen and (max-width: 767px){

  .message-text{
    margin-top: 32px;
    font-size: 16px;
  }


}

@media screen and (max-width: 767px) {
  .message__layout {
    padding: 65px 0;
  }
}
@media screen and (max-width: 600px) {
  .message__layout {
    padding: 50px 0;
  }
}

/* トップページの「お問い合わせ」で使用するクラス */
.top-contact__layout {
  width: 24.3055555556vw;
  height: 24.3055555556vw;
  background-image: url(/images/top/top-contact.png);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .top-contact__layout {
    width: 100%;
    height: 300px;
  }
}
.top-contact__layout 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%;
}
.top-contact__layout a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top-contact__layout a:hover::before {
  background-color: rgba(255, 255, 255, .5);
}

.top-contact__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.6666666667vw;
}
.top-contact__arrow img {
  aspect-ratio: 36/8;
  max-width: 2.5vw;
  max-height: 0.5555555556vw;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .top-contact__arrow img {
    max-width: 36px;
    max-height: 8px;
  }
}

.top-contact__icon {
  max-width: 2.7777777778vw;
  max-height: 2.1527777778vw;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-contact__icon {
    max-width: 40px;
    max-height: 31px;
  }
}
.top-contact__icon img {
  max-width: 100%;
  max-height: 100%;
}

.top-contact__title {
  margin-top: 0.8333333333vw;
  font-size: 1.9444444444vw;
  line-height: 1.55;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-contact__title {
    margin-top: 10px;
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .top-contact__title {
    margin-top: 8px;
    font-size: 20px;
  }
}

/* トップページの「下層ページのリンク」で使用するクラス */
.top-links__layout {
  margin-top: 5.5555555556vw;
}
@media screen and (max-width: 767px) {
  .top-links__layout {
    margin-top: 65px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__layout {
    margin-top: 50px;
  }
}

.top-links__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top-links__item {
  background-size: cover;
  background-position: center;
}
.top-links__item:nth-child(1) {
  width: 37.5%;
  height: 25vw;
  background-image: url(/images/top/link-picture-01.png);
}
@media screen and (max-width: 767px) {
  .top-links__item:nth-child(1) {
    width: 50%;
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__item:nth-child(1) {
    width: 100%;
    height: 250px;
  }
}
.top-links__item:nth-child(2) {
  width: 31.25%;
  height: 25vw;
  background-image: url(/images/top/link-picture-02.png);
}
@media screen and (max-width: 767px) {
  .top-links__item:nth-child(2) {
    width: 50%;
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__item:nth-child(2) {
    width: 100%;
    height: 250px;
  }
}
.top-links__item:nth-child(3) {
  width: 31.25%;
  height: 25vw;
  background-image: url(/images/top/link-picture-03.png);
}
@media screen and (max-width: 767px) {
  .top-links__item:nth-child(3) {
    width: 50%;
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__item:nth-child(3) {
    width: 100%;
    height: 250px;
  }
}
.top-links__item:nth-child(4) {
  width: 31.25%;
  height: 20.8333333333vw;
  background-image: url(/images/top/link-picture-04.png);
}
@media screen and (max-width: 767px) {
  .top-links__item:nth-child(4) {
    width: 50%;
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__item:nth-child(4) {
    width: 100%;
    height: 250px;
  }
}
.top-links__item:nth-child(5) {
  width: 37.5%;
  height: 20.8333333333vw;
  background-image: url(/images/top/link-picture-05.png);
}
@media screen and (max-width: 767px) {
  .top-links__item:nth-child(5) {
    width: 50%;
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__item:nth-child(5) {
    width: 100%;
    height: 250px;
  }
}
.top-links__item:nth-child(6) {
  width: 31.25%;
  height: 20.8333333333vw;
  background-image: url(/images/top/link-picture-06.png);
}
@media screen and (max-width: 767px) {
  .top-links__item:nth-child(6) {
    width: 50%;
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__item:nth-child(6) {
    width: 100%;
    height: 250px;
  }
}
.top-links__item:nth-child(7) {
  width: 37.5%;
  height: 19.4444444444vw;
  background-image: url(/images/top/link-picture-07.png);
}
@media screen and (max-width: 767px) {
  .top-links__item:nth-child(7) {
    width: 50%;
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__item:nth-child(7) {
    width: 100%;
    height: 250px;
  }
}
.top-links__item:nth-child(8) {
  width: 25%;
  height: 19.4444444444vw;
  background-image: url(/images/top/link-picture-08.png);
  background-position: bottom right;
}
@media screen and (max-width: 767px) {
  .top-links__item:nth-child(8) {
    width: 50%;
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__item:nth-child(8) {
    width: 100%;
    height: 250px;
  }
}
.top-links__item:nth-child(9) {
  width: 37.5%;
  height: 19.4444444444vw;
  background-image: url(/images/top/link-picture-09.png);
}
@media screen and (max-width: 767px) {
  .top-links__item:nth-child(9) {
    width: 100%;
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__item:nth-child(9) {
    height: 250px;
  }
}
.top-links__item a {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top-links__item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top-links__item a:hover::before {
  background-color: rgba(255, 255, 255, .5);
}
.top-links__item .top-links__flame::after {
  content: "";
  position: absolute;
  top: 1.0416666667vw;
  right: 1.0416666667vw;
  bottom: 1.0416666667vw;
  left: 1.0416666667vw;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .top-links__item .top-links__flame::after {
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}
.top-links__item .top-links__title {
  font-size: 1.6666666667vw;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-links__item .top-links__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .top-links__item .top-links__title {
    font-size: 20px;
  }
}
.top-links__item .top-links__title--background {
  background-color: rgba(34, 34, 34, .5);
}

.top-links__items--under {
  max-width: 84.7222222222vw;
  width: 100%;
  gap: 2.4305555556vw;
  margin: 0 auto;
  padding: 0 3.4722222222vw;
}
@media screen and (max-width: 767px) {
  .top-links__items--under {
    max-width: 660px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__items--under {
    gap: 30px;
    padding: 0 20px;
  }
}
.top-links__items--under .top-links__item {
  width: calc(33.33333% - 1.62037vw);
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .top-links__items--under .top-links__item {
    width: 100%;
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__items--under .top-links__item {
    height: 250px;
  }
}
.top-links__items--under .top-links__item:nth-child(1) {
  background-image: url(/images/top/top-comapny.png);
}
.top-links__items--under .top-links__item:nth-child(2) {
  background-image: url(/images/top/top-factory.png);
}
.top-links__items--under .top-links__item:nth-child(3) {
  background-image: url(/images/top/top-access.png);
}

.top-links__title-en {
  font-size: 2.7777777778vw;
  font-family: "Crimson Text", serif;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-links__title-en {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .top-links__title-en {
    font-size: 24px;
  }
}

.top-links__title-ja {
  margin-top: 0.2777777778vw;
  font-size: 0.9722222222vw;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, .8);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-links__title-ja {
    margin-top: 4px;
    font-size: 14px;
  }
}

.top-links__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.9444444444vw;
  padding: 0.8333333333vw;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .top-links__button {
    margin-top: 24px;
    padding: 12px;
  }
}
.top-links__button p {
  font-size: 1.1111111111vw;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 0 2.7777777778vw;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-links__button p {
    font-size: 16px;
    padding: 0 40px;
  }
}

.top-links__arrow {
  max-width: 1.8055555556vw;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-links__arrow {
    max-width: 28px;
  }
}
.top-links__arrow img {
  aspect-ratio: 26/7;
  max-width: 1.8055555556vw;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .top-links__arrow img {
    max-width: 28px;
  }
}

.top-recruit__main {
  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: 25vw;
  max-height: 100%;
}
@media screen and (max-width: 767px) {
  .top-recruit__main {
    width: 100%;
  }
}
.top-recruit__main .top-links__item {
  border: 1px solid #E4E4E4;
  border-left: none;
  background: #fff;
  width: 100%;
  height: 18.0555555556vw;
}
@media screen and (max-width: 767px) {
  .top-recruit__main .top-links__item {
    border: 1px solid #E4E4E4;
    border-top: none;
    height: auto;
  }
}
.top-recruit__main .top-links__item .top-links__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-left: 3.3333333333vw;
}
@media screen and (max-width: 767px) {
  .top-recruit__main .top-links__item .top-links__main {
    padding: 30px;
  }
}
@media screen and (max-width: 600px) {
  .top-recruit__main .top-links__item .top-links__main {
    padding: 20px;
  }
}
.top-recruit__main .top-links__title-en {
  color: #222222;
  text-align: left;
}
.top-recruit__main .top-links__title-ja {
  color: #A5A5A5;
  text-align: left;
}
.top-recruit__main .top-links__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-color: #222;
  margin-top: 3.4722222222vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top-recruit__main .top-links__button {
    margin-top: 36px;
  }
}
@media screen and (max-width: 767px) {
  .top-recruit__main .top-links__button {
    margin-top: 24px;
  }
}
.top-recruit__main .top-links__button p {
  color: #222;
}

/* トップページの「メインビジュアル」で使用するクラス */
.mainvisual__layout {
  position: relative;
  width: 100%;
  height: 44.4444444444vw;
  min-height: 640px;
  padding-top: 0.7638888889vw;
  background-size: cover;
  background-position: center;
  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;
}
@media screen and (max-width: 767px) {
  .mainvisual__layout {
    height: 600px;
    min-height: auto;
    padding: 0 20px;
  }
}
@media screen and (max-width: 600px) {
  .mainvisual__layout {
    height: 500px;
  }
}
.mainvisual__layout video {
  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__flame {
  border: 2px solid #fff;
  padding: 4.7222222222vw 1.3888888889vw 6.5972222222vw;
}
@media screen and (max-width: 767px) {
  .mainvisual__flame {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 600px) {
  .mainvisual__flame {
    padding: 30px 16px;
  }
}

.mainvisual__text {
  font-size: 2.7777777778vw;
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(34, 34, 34, .2);
}
@media screen and (max-width: 767px) {
  .mainvisual__text {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .mainvisual__text {
    font-size: 16px;
  }
}

/* トップページの「お知らせ」で使用するクラス */
.top-news-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4305555556vw;
  max-width: 84.7222222222vw;
  margin: 5.5555555556vw auto 0;
  padding: 0 3.4722222222vw;
}
@media screen and (max-width: 767px) {
  .top-news-contact {
    display: block;
    max-width: 660px;
    margin-top: 65px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 600px) {
  .top-news-contact {
    margin-top: 50px;
    padding: 0 20px;
  }
}

.top-news {
  width: calc(100% - 26.73611vw);
}
@media screen and (max-width: 767px) {
  .top-news {
    width: 100%;
  }
}

.top-news__layout {
  padding: 3.4722222222vw 2.7777777778vw 1.6666666667vw;
  background-image: url(/images/top/top-news-background.png);
}
@media screen and (max-width: 767px) {
  .top-news__layout {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 600px) {
  .top-news__layout {
    padding: 30px 20px;
  }
}

.top-news__title-en {
  font-size: 2.7777777778vw;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #222;
  font-family: "Crimson Text", serif;
}
@media screen and (max-width: 767px) {
  .top-news__title-en {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .top-news__title-en {
    font-size: 24px;
  }
}

.top-news__title-ja {
  margin-top: 0.2777777778vw;
  font-size: 0.9722222222vw;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #A5A5A5;
}
@media screen and (max-width: 767px) {
  .top-news__title-ja {
    margin-top: 4px;
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .top-news__title-ja {
    font-size: 12px;
  }
}

.top-news__items {
  margin-top: 2.7777777778vw;
}
@media screen and (max-width: 767px) {
  .top-news__items {
    margin-top: 32px;
  }
}
@media screen and (max-width: 600px) {
  .top-news__items {
    margin-top: 24px;
  }
}

.top-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.4722222222vw;
  padding-bottom: 1.1111111111vw;
  border-bottom: 1px solid #E4E4E4;
}
@media screen and (max-width: 767px) {
  .top-news__item {
    gap: 32px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 600px) {
  .top-news__item {
    gap: 24px;
  }
}
.top-news__item:not(:first-child) {
  margin-top: 1.1111111111vw;
}
@media screen and (max-width: 767px) {
  .top-news__item:not(:first-child) {
    margin-top: 16px;
  }
}

.top-news__date {
  width: 4.8611111111vw;
  font-size: 0.9722222222vw;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #222;
}
@media screen and (max-width: 767px) {
  .top-news__date {
    width: 80px;
    font-size: 14px;
  }
}

.top-news__text {
  width: calc(100% - 8.33333vw);
  font-size: 1.1111111111vw;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #222;
}
@media screen and (max-width: 767px) {
  .top-news__text {
    width: calc(100% - 112px);
    font-size: 14px;
    color: #000;
  }
}

.top-news__button {
  margin: 3.3333333333vw auto 0;
  border: 1px solid #222;
  background-color: #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;
  gap: 1.1111111111vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8333333333vw 0.8333333333vw 0.8333333333vw 1.3888888889vw;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .top-news__button {
    margin-top: 32px;
    padding: 12px 12px 12px 20px;
    gap: 16px;
  }
}
.top-news__button:hover {
  opacity: 0.7;
}
.top-news__button p {
  font-size: 1.1111111111vw;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #222;
}
@media screen and (max-width: 767px) {
  .top-news__button p {
    font-size: 16px;
  }
}
.top-news__button .top-news__arrow img {
  aspect-ratio: 26/7;
  max-width: 1.8055555556vw;
  max-height: 0.4861111111vw;
}
@media screen and (max-width: 767px) {
  .top-news__button .top-news__arrow img {
    max-width: 26px;
    max-height: 7px;
  }
}

/* トップページの「下層ページのリンク」で使用するクラス */
.top-recruit__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5.5555555556vw auto 0;
  max-width: 80.2083333333vw;
  max-height: 18.0555555556vw;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .top-recruit__layout {
    margin-top: 65px;
    display: block;
    max-height: none;
    max-width: 660px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 600px) {
  .top-recruit__layout {
    margin-top: 50px;
    padding: 0 20px;
  }
}

.top-recruit__picture {
  max-height: 100%;
  max-width: calc(100% - 25vw);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-recruit__picture {
    max-width: 100%;
  }
}
.top-recruit__picture img {
  aspect-ratio: 783/260;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-height: 100%;
  width: 100%;
  height: 100%;
}

/* 下層ページのヘッド部分で使用するクラス */
.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__contents {
  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: 2.7777777778vw;
  gap: 5.5555555556vw;
}
@media screen and (max-width: 767px) {
  .business__contents {
    margin-top: 36px;
    gap: 65px;
  }
}
@media screen and (max-width: 600px) {
  .business__contents {
    margin-top: 32px;
    gap: 50px;
  }
}

.business__main {
  margin-top: 1.3888888889vw;
  padding-left: 0.6944444444vw;
}
@media screen and (max-width: 767px) {
  .business__main {
    margin-top: 20px;
    padding-left: 10px;
  }
}

.business__text {
  font-size: 1.1111111111vw;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .business__text {
    font-size: 16px;
  }
}

.business__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: 1.3888888889vw;
  gap: 1.1111111111vw;
}
@media screen and (max-width: 767px) {
  .business__items {
    margin-top: 20px;
    gap: 16px;
  }
}

.business__title,
.business__data {
  font-size: 1.1111111111vw;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #222;
}
@media screen and (max-width: 767px) {
  .business__title,
  .business__data {
    font-size: 16px;
  }
}

.business__title {
  width: calc(74.32432% - 1.66667vw);
}

.business__data {
  width: 25.6756756757%;
}

.business__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.6666666667vw;
  padding-bottom: 1.1111111111vw;
  border-bottom: 1px solid #A8A8A8;
}
@media screen and (max-width: 767px) {
  .business__item {
    gap: 24px;
    padding-bottom: 16px;
  }
}
.business__item:first-child {
  border-width: 3px;
}
.business__item:first-child .business__title,
.business__item:first-child .business__data {
  color: rgba(34, 34, 34, .5);
}

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

.business__picture {
  width: calc(50% - 0.69444vw);
}
@media screen and (max-width: 767px) {
  .business__picture {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .business__picture {
    width: 100%;
    height: 200px;
  }
}
.business__picture img {
  aspect-ratio: 365/200;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* 「会社紹介」ページで使用するクラス */
.company__layout {
  background-image: url(/images/company/company-background.png);
  background-size: cover;
  background-position: center;
  padding: 5.5555555556vw 0;
}
@media screen and (max-width: 767px) {
  .company__layout {
    padding: 65px 0;
  }
}
@media screen and (max-width: 600px) {
  .company__layout {
    padding: 50px 0;
  }
}

.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;
  gap: 1.1111111111vw;
  margin-top: 2.7777777778vw;
}
@media screen and (max-width: 767px) {
  .company__items {
    margin-top: 36px;
    gap: 16px;
  }
}
@media screen and (max-width: 600px) {
  .company__items {
    margin-top: 32px;
  }
}

.company__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.0833333333vw;
  border-bottom: 1px solid #A8A8A8;
  padding-bottom: 1.1111111111vw;
}
@media screen and (max-width: 767px) {
  .company__item {
    gap: 24px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 600px) {
  .company__item {
    gap: 20px;
  }
}

.company__title,
.company__data {
  font-size: 1.1111111111vw;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .company__title,
  .company__data {
    font-size: 16px;
  }
}

.company__title {
  width: 13.1944444444vw;
}
@media screen and (max-width: 767px) {
  .company__title {
    width: 130px;
  }
}

.company__title--single {
  width: 100%;
}

.company__data {
  width: calc(100% - 15.27778vw);
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .company__data {
    width: calc(100% - 154px);
  }
}
@media screen and (max-width: 600px) {
  .company__data {
    width: calc(100% - 150px);
  }
}

/* お問い合わせページで使用するクラス */
.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: 2.7777777778vw;
}
@media screen and (max-width: 767px) {
  .contact__texts {
    margin-top: 36px;
  }
}
@media screen and (max-width: 600px) {
  .contact__texts {
    margin-top: 32px;
  }
}
.contact__texts .contact__text {
  font-size: 1.1111111111vw;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .contact__texts .contact__text {
    font-size: 16px;
  }
}
.contact__texts span {
  color: #FF0000;
}

.contact__form {
  margin-top: 2.7777777778vw;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-top: 36px;
  }
}
@media screen and (max-width: 600px) {
  .contact__form {
    margin-top: 32px;
  }
}

.contact__title {
  font-size: 1.3888888889vw;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, .5);
}
@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 18px;
  }
}
.contact__title .red {
  color: #E84700;
}

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

input[type=text] {
  width: 100%;
  height: 4.4444444444vw;
  font-size: 1.1111111111vw;
  margin-top: 0.6944444444vw;
  padding: 0 1.3888888889vw;
  background-color: #efefef;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  input[type=text] {
    height: 48px;
    font-size: 16px;
    margin-top: 10px;
    padding: 0 16px;
  }
}

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: 19.4444444444vw;
  font-size: 1.1111111111vw;
  margin-top: 0.6944444444vw;
  padding: 1.3888888889vw;
  background-color: #efefef;
  resize: none;
}
@media screen and (max-width: 767px) {
  textarea {
    height: 240px;
    font-size: 16px;
    margin-top: 10px;
    padding: 16px;
  }
}

.contact__checkbox {
  margin-top: 2.7777777778vw;
  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 (max-width: 767px) {
  .contact__checkbox {
    margin-top: 32px;
  }
}
@media screen and (max-width: 600px) {
  .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: 1.1111111111vw;
  line-height: 1.6;
  margin-left: 0.9722222222vw;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .contact__checkbox .contact__privacy {
    font-size: 14px;
    margin-left: 12px;
  }
}
.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: 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: 2.7777777778vw;
}
@media screen and (max-width: 767px) {
  .contact__policies {
    margin-top: 32px;
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .contact__policies {
    margin-top: 24px;
    gap: 24px;
  }
}

.contact__policy-text {
  margin-top: 1.3888888889vw;
  font-size: 1.1111111111vw;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .contact__policy-text {
    margin-top: 18px;
    font-size: 16px;
  }
}

/* お知らせで使用するクラス */
.news__items {
  margin: 2.7777777778vw auto 0;
  max-width: 52.0833333333vw;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.1111111111vw;
}
@media screen and (max-width: 767px) {
  .news__items {
    max-width: 700px;
    margin-top: 40px;
    gap: 16px;
  }
}

.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.4722222222vw;
  padding-bottom: 1.1111111111vw;
  border-bottom: 1px solid #E4E4E4;
}
@media screen and (max-width: 767px) {
  .news__item {
    gap: 32px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 600px) {
  .news__item {
    gap: 20px;
  }
}

.news__date {
  width: 4.8611111111vw;
  font-size: 0.9722222222vw;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #222;
}
@media screen and (max-width: 767px) {
  .news__date {
    width: 70px;
    font-size: 14px;
  }
}

.news__text {
  width: calc(100% - 8.33333vw);
  font-size: 1.1111111111vw;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #222;
}
@media screen and (max-width: 767px) {
  .news__text {
    width: calc(100% - 102px);
    font-size: 14px;
    color: #000;
  }
}
@media screen and (max-width: 600px) {
  .news__text {
    width: calc(100% - 90px);
  }
}

/* 採用情報ページ で使用するクラス */
.recruit__title {
  margin-top: 1.3888888889vw;
  font-size: 1.7361111111vw;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #222;
}
@media screen and (max-width: 767px) {
  .recruit__title {
    margin-top: 20px;
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .recruit__title {
    margin-top: 18px;
    font-size: 18px;
  }
}

.recruit__main {
  margin-top: 1.9444444444vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.0833333333vw;
}
@media screen and (max-width: 767px) {
  .recruit__main {
    margin-top: 24px;
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 600px) {
  .recruit__main {
    margin-top: 20px;
    gap: 20px;
  }
}

.recruit__texts {
  width: calc(100% - 27.08333vw);
}
@media screen and (max-width: 767px) {
  .recruit__texts {
    width: 100%;
  }
}

.recruit__text {
  font-size: 1.1111111111vw;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #222;
}
@media screen and (max-width: 767px) {
  .recruit__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .recruit__text {
    font-size: 14px;
  }
}

.recruit__picture {
  width: 25vw;
  height: 19.4444444444vw;
  background-color: #000;
  /* img {

  } */
}
@media screen and (max-width: 767px) {
  .recruit__picture {
    width: 100%;
    height: 200px;
  }
}

/* 「製品サービス」ページで使用するクラス */
.service__phrase {
  margin-top: 7.2916666667vw;
  font-size: 1.7361111111vw;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .service__phrase {
    margin-top: 80px;
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .service__phrase {
    margin-top: 60px;
    font-size: 18px;
  }
}

.service__title {
  font-size: 1.3888888889vw;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .service__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .service__title {
    font-size: 16px;
  }
}

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

.service__text {
  font-size: 1.1111111111vw;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .service__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .service__text {
    font-size: 14px;
  }
}

.service__text--mt {
  margin-top: 1.7777777778vw;
}

.service__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: 3.4722222222vw;
  margin-top: 1.9444444444vw;
}
@media screen and (max-width: 767px) {
  .service__items {
    margin-top: 50px;
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .service__items {
    margin-top: 40px;
    gap: 30px;
  }
}

.service__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #E4E4E4;
  min-height: 19.4444444444vw;
}
@media screen and (max-width: 767px) {
  .service__item {
    position: static;
    border: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.service__picture {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25.3472222222vw;
}
@media screen and (max-width: 767px) {
  .service__picture {
    position: static;
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}
.service__picture img {
  position: absolute;
  top: -0.7638888889vw;
  bottom: -0.7638888889vw;
  aspect-ratio: 365/303;
  max-width: 25.3472222222vw;
  max-height: 21.0416666667vw;
  width: 100%;
  height: calc(100% + 1.52778vw);
}
@media screen and (max-width: 767px) {
  .service__picture img {
    position: static;
    max-width: 100%;
    max-height: none;
    margin: 0 auto;
  }
}

.service__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% - 25.34722vw);
  padding: 1vw;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .service__main {
    width: 100%;
    padding: 0;
  }
}

.service__item--features {
  gap: 2.0833333333vw;
  border: none;
}
.service__item--features::before {
  content: "";
  display: none;
}
@media screen and (max-width: 767px) {
  .service__item--features {
    gap: 24px;
  }
}
.service__item--features .service__main {
  width: calc(100% - 27.08333vw);
  padding: 0;
}
@media screen and (max-width: 767px) {
  .service__item--features .service__main {
    width: 100%;
  }
}
.service__item--features .service__picture {
  position: static;
}
.service__item--features .service__picture img {
  position: static;
  aspect-ratio: 360/280;
  max-width: 25vw;
  max-height: 19.4444444444vw;
}
@media screen and (max-width: 767px) {
  .service__item--features .service__picture img {
    max-width: 100%;
    max-height: none;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
}

.service__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .service__item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.service__item--reverse .service__main {
  padding: 0.4vw;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .service__item--reverse .service__main {
    padding: 0;
  }
}

/* 会社案内ページで使用するクラス */
.works {
  position: relative;
}
.works .works__treat {
  position: absolute;
  z-index: -1;
}
.works .works__treat img {
  width: 100%;
  height: 100%;
}
.works .works__treat--01 {
  right: 0;
  /* top: -4.1666666667vw; */
  top:8vw;
}
.works .works__treat--01 img {
  aspect-ratio: 446/552;
  max-width: 30.9722222222vw;
  max-height: 38.3333333333vw;
}
.works .works__treat--02 {
  top: 20%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .works .works__treat--02 {
    top: 24%;
  }
}
.works .works__treat--02 img {
  aspect-ratio: 422/617;
  max-width: 29.3055555556vw;
  max-height: 42.8472222222vw;
}
.works .works__treat--03 {
  left: 0;
  /* bottom: 14%; */
  bottom: 10%;

}
@media screen and (max-width: 767px) {
  .works .works__treat--03 {
    bottom: 7%;
  }
}
.works .works__treat--03 img {
  aspect-ratio: 1527/952;
  max-width: 106.0416666667vw;
  max-height: 66.1111111111vw;
  width:100vw;
}
@media screen and (max-width: 767px) {
  .works .works__treat--03 img {
    max-width: 100%;
    max-height: 100%;
  }
}

.works__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.5555555556vw;
}
@media screen and (max-width: 767px) {
  .works__contents {
    gap: 65px;
  }
}
@media screen and (max-width: 600px) {
  .works__contents {
    gap: 50px;
  }
}

.works__texts--mt-20 {
  margin-top: 1.3888888889vw;
}
@media screen and (max-width: 767px) {
  .works__texts--mt-20 {
    margin-top: 20px;
  }
}

.works__text {
  font-size: 1.1111111111vw;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .works__text {
    font-size: 16px;
  }
}

.works__items {
  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;
  margin-top: 1.3888888889vw;
  gap: 1.0416666667vw;
}
@media screen and (max-width: 767px) {
  .works__items {
    margin-top: 20px;
    gap: 15px;
  }
}

.works__item {
  width: calc(33.33333% - 0.69444vw);
}
@media screen and (max-width: 767px) {
  .works__item {
    width: calc(50% - 7.5px);
  }
}

.works__name {
  margin-top: 0.5555555556vw;
  font-size: 1.1111111111vw;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .works__name {
    margin-top: 6px;
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .works__name {
    font-size: 14px;
  }
}

.works__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.0833333333vw;
  margin-top: 1.3888888889vw;
}
@media screen and (max-width: 767px) {
  .works__body {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.works__body .works__texts,
.works__body .works__picture,
.works__body .works__section {
  width: calc(50% - 1.04167vw);
}
@media screen and (max-width: 767px) {
  .works__body .works__texts,
  .works__body .works__picture,
  .works__body .works__section {
    width: 100%;
  }
}


/* ココから2024/08/21 追加 */
.works__body{
  justify-content: space-between;
}
.works__body .works__picture{
 max-width: calc((400 / 1440) * 100vw);
 margin-right: calc((20 / 1440) * 100vw) ;
}

.works__body .works__texts{
  width:80%;
}
/* ココまで2024/08/21 追加 */

.works__body .works__picture img {
/* ココから2024/08/21 追加 */
  aspect-ratio: 300/200;
/* ココまで2024/08/21 追加 */

  height: 100%;
  background-color: gray;
}

 /* ココから2024/08/21 追加 */
@media screen and (max-width: 767px){
  .works__body{
    justify-content: space-between;
  }
  .works__body .works__picture{
   max-width: none;
   margin-right: 0;
  }

  .works__body .works__texts{
    width:100%;
  }

  .works__body .works__picture img {
    aspect-ratio: 300/200;


    height: 100%;
    background-color: gray;
  }
}
 /* ココまで2024/08/21 追加 */


.works__body .works__section .works__texts {
  margin-top: 1.3888888889vw;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .works__body .works__section .works__texts {
    margin-top: 20px;
  }
}

.works__body--section {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .works__body--section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/*# sourceMappingURL=styles.css.map */
