@charset "UTF-8";
/*-- foundationフォルダの中の_index.scss --*/
/*---------------------------------

 reset

---------------------------------*/
/*** The new CSS Reset - version 1.2.0 (last updated 23.7.2021) ***/
/* ブラウザのUAスタイルシートのすべてのスタイルを削除します、displayは除く */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

/* box-sizingの優先値 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  リストのスタイル（箇条書き・番号）を削除します
  normalize.cssで使用する場合
*/
ol,
ul {
  list-style: none;
}

/* 画像がコンテナを超えないようにするため */
img {
  max-width: 100%;
  vertical-align: top;
}

/* テーブルのセル間のスペースを削除します */
table {
  border-collapse: collapse;
}

/* Safariのtextarea要素のwhite-spaceプロパティを元に戻します */
textarea {
  white-space: revert;
}

/*** The new CSS Reset ***/
/*-- globalフォルダの中の_index.scss --*/
:root {
  /* カラー */
  --color-main: #003A5B;
  --color-accent: #2D9CDB;
  --color-green: #208031;
  --color-text: #333;
  --color-white: #ffffff;
  --btn-main: linear-gradient(90deg,
          #208031,
          #2D9CDB);
  /* フォント */
  --font-base: "ff-din-paneuropean", sans-serif;
  --font-serif: serif;
  /* コンテンツ幅 */
  --content-width: 1200px;
  --content-padding: 40px;
  /* ヘッダー */
  --header-height: 72px;
  /* アニメーション */
  --transition: 0.3s ease;
}

body {
  background-color: #fff;
  color: var(--main-TextColor);
  font-family: "ff-din-paneuropean", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}

input,
textarea,
button,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
dl, dt, dd {
  font-family: "ff-din-paneuropean", sans-serif;
  margin-top: 0;
  color: var(--color-text);
}

h1 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
}

h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--main-TextColor);
}

.container {
  width: 90%;
  max-width: 1000px;
  margin-inline: auto;
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .container {
    width: calc(100% - 40px);
  }
  h1,
  h2 {
    font-size: 1.5rem;
  }
}
/*-- layoutフォルダの中の_index.scss --*/
.top {
  background-image: url("../../img/line-wave.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.about {
  padding: 100px 0;
  background-color: #fff;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr 1.4fr;
  gap: 24px;
  align-items: start;
}
.about__title {
  grid-column: 2;
  grid-row: 1;
  font-size: 26px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: var(--color-main);
}
.about__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__image--large {
  grid-column: 1;
  grid-row: 1/span 2;
  height: 360px;
}
.about__message {
  grid-column: 2;
  grid-row: 2;
}
.about__message img {
  width: 100%;
  height: 195px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__right {
  grid-column: 3;
  grid-row: 1/span 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about__top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 15px;
}
.about__top img {
  width: 100%;
  height: 155px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__bottom {
  display: grid;
  grid-template-columns: 1fr 105px;
  gap: 22px;
  align-items: start;
}
.about__bottom p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
}
.about__bottom img {
  width: 100%;
  height: 165px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .about {
    padding: 50px 0;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about__title, .about__image--large, .about__message, .about__right {
    grid-column: auto;
    grid-row: auto;
  }
  .about__title {
    margin: 0;
    font-size: 22px;
    line-height: 1.7;
    letter-spacing: 0.06em;
  }
  .about__image--large {
    width: 100%;
    height: 230px;
  }
  .about__message img {
    width: 100%;
    height: 190px;
  }
  .about__right {
    gap: 15px;
  }
  .about__top {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .about__top img {
    height: 140px;
  }
  .about__bottom {
    grid-template-columns: 1fr 90px;
    gap: 15px;
  }
  .about__bottom p {
    margin: 0;
    font-size: 13px;
    line-height: 1.9;
  }
  .about__bottom img {
    height: 150px;
  }
}
.business {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.business-wrap {
  width: 80%;
  margin: 0 auto;
}
.business__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.business__list > a {
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.business__list > a > img {
  display: block;
  width: 100%;
  aspect-ratio: 1.7/1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.business__list > a > div {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
}
.business__list > a > div img {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
.business__list > a > div span {
  font-size: 18px;
  font-weight: 500;
}
.business__list > a > div p {
  margin: 3px 0 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
}
.business__list > a:hover > img {
  transform: scale(1.05);
}

@media screen and (min-width: 768px) and (max-width: 1600px) {
  .business__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .business {
    padding: 50px 0;
  }
  .business-wrap {
    width: calc(100% - 30px);
  }
  .business__list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .business__list > a > img {
    aspect-ratio: 1.7/1;
  }
  .business__list > a > div img {
    width: 42px;
    height: 42px;
    margin-bottom: 6px;
  }
  .business__list > a > div span {
    font-size: 16px;
  }
  .business__list > a > div p {
    font-size: 13px;
  }
}
.company-recruit {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.company-recruit__company, .company-recruit__recruit {
  padding: 60px 0;
}
.company-recruit__company {
  background-color: #f7f7f7;
}
.company-recruit__company .company-recruit__inner {
  margin-left: 15%;
  margin-right: 7.5%;
}
.company-recruit__recruit {
  background-color: #edf8fd;
}
.company-recruit__recruit .company-recruit__inner {
  margin-left: 7.5%;
  margin-right: 15%;
}
.company-recruit__inner {
  width: auto;
}
.company-recruit__content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 24px;
}
.company-recruit__content > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-recruit__content > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.company-recruit__content > div h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-main);
}
.company-recruit__content > div p {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.8;
}
.company-recruit__content > div .button {
  margin-top: auto;
}

@media screen and (max-width: 1600px) {
  .company-recruit__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .company-recruit__content > img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .company-recruit__content > div {
    height: auto;
  }
  .company-recruit__content > div .button {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .company-recruit {
    grid-template-columns: 1fr;
  }
  .company-recruit__company, .company-recruit__recruit {
    padding: 50px 0;
  }
  .company-recruit__company .company-recruit__inner, .company-recruit__recruit .company-recruit__inner {
    width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
  }
  .company-recruit__content {
    grid-template-columns: 1fr;
  }
  .company-recruit__content > img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .company-recruit__company, .company-recruit__recruit {
    padding: 40px 0;
  }
  .company-recruit__company .company-recruit__inner, .company-recruit__recruit .company-recruit__inner {
    width: calc(100% - 30px);
  }
  .company-recruit__content {
    gap: 18px;
  }
  .company-recruit__content > div h3 {
    font-size: 18px;
    line-height: 1.6;
  }
  .company-recruit__content > div p {
    margin: 12px 0 20px;
    font-size: 14px;
    line-height: 1.8;
  }
  .company-recruit__content > div .button {
    margin-top: 0;
  }
}
.workstyle {
  padding: 22px 0;
  background-color: var(--color-green);
}
.workstyle__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
.workstyle__title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.workstyle__title img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.workstyle__title h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
}
.workstyle__logos {
  display: flex;
  align-items: center;
  gap: 15px;
}
.workstyle__logos img {
  width: auto;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 767px) {
  .workstyle {
    padding: 20px 0;
  }
  .workstyle__content {
    flex-direction: column;
    gap: 15px;
  }
  .workstyle__title {
    gap: 8px;
  }
  .workstyle__title img {
    width: 24px;
    height: 24px;
  }
  .workstyle__title h2 {
    font-size: 15px;
    text-align: center;
  }
  .workstyle__logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .workstyle__logos img {
    height: 45px;
  }
}
.news-instagram {
  padding: 70px 0;
  background-color: #edf8fd;
}
.news-instagram__content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}
.news-instagram__news, .news-instagram__instagram {
  display: flex;
  flex-direction: column;
}
.news-instagram__news > h3, .news-instagram__instagram > h3 {
  margin: 0 0 15px;
  font-size: 18px;
  text-align: center;
  color: var(--color-main);
}
.news-instagram__news > .button, .news-instagram__instagram > .button {
  display: flex;
  width: 200px;
  min-width: 0;
  min-height: 45px;
  margin: auto auto 0;
  margin-top: auto;
  font-size: 13px;
  transform: translateY(20px);
}
.news-instagram__news ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-instagram__news li {
  border-top: 1px solid var(--color-green);
}
.news-instagram__news li:last-child {
  border-bottom: 1px solid var(--color-green);
}
.news-instagram__news li > a {
  display: grid;
  grid-template-columns: 85px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 10px 0;
}
.news-instagram__news li > a > img {
  width: 85px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-instagram__news li > a > div span {
  display: inline-block;
  margin-bottom: 3px;
  padding: 1px 6px;
  background-color: #eee;
  font-size: 10px;
}
.news-instagram__news li > a > div time {
  display: block;
  font-size: 11px;
}
.news-instagram__news li > a > div p {
  margin: 2px 0 0;
  font-size: 12px;
}
.news-instagram__news li > a > span {
  padding: 4px 12px;
  border-radius: 20px;
  background-color: var(--color-green);
  color: #fff;
  font-size: 10px;
}
.news-instagram__instagram > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.news-instagram__instagram > div img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .news-instagram {
    padding: 50px 0;
  }
  .news-instagram__content {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 25px;
  }
  .news-instagram__news > h3, .news-instagram__instagram > h3 {
    margin-bottom: 12px;
    font-size: 17px;
  }
  .news-instagram__news > .button, .news-instagram__instagram > .button {
    width: 180px;
    min-height: 42px;
    margin: 20px auto 0;
    font-size: 12px;
    transform: none;
  }
  .news-instagram__news li > a {
    grid-template-columns: 75px 1fr;
    gap: 12px;
    padding: 10px 0;
  }
  .news-instagram__news li > a > img {
    width: 75px;
    height: 55px;
  }
  .news-instagram__news li > a > div span {
    font-size: 9px;
  }
  .news-instagram__news li > a > div time {
    font-size: 10px;
  }
  .news-instagram__news li > a > div p {
    font-size: 11px;
    line-height: 1.5;
  }
  .news-instagram__news li > a > span {
    display: none;
  }
  .news-instagram__instagram > div {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}
.access {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.access__content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: stretch;
}
.access__info .section-heading--access {
  margin-bottom: 15px;
  text-align: left;
}
.access__info .section-heading--access > .section-heading {
  text-align: left;
}
.access__info .section-heading--access > p {
  margin: 2px 0 0;
  font-size: 18px;
}
.access__info address {
  margin-top: 12px;
  color: var(--color-text);
}
.access__info dl {
  margin: 10px 0 0;
}
.access__info dl > div {
  display: flex;
  line-height: 1.8;
}
.access__info dl dt,
.access__info dl dd {
  margin: 0;
}
.access__company {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.access__map {
  min-height: 200px;
}
.access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 767px) {
  .access {
    padding: 50px 0;
  }
  .access__content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .access__info .section-heading--access {
    margin-bottom: 15px;
    text-align: left;
  }
  .access__info .section-heading--access > div h2 {
    font-size: 20px;
  }
  .access__info .section-heading--access > p {
    font-size: 14px;
  }
  .access__info address {
    margin-top: 12px;
    line-height: 1.8;
  }
  .access__info dl {
    margin-top: 10px;
  }
  .access__info dl > div {
    line-height: 1.9;
  }
  .access__map {
    width: 100%;
    height: 250px;
  }
  .access__map iframe {
    width: 100%;
    height: 100%;
  }
}
/*-- componentフォルダの中の_index.scss --*/
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 300px;
  min-height: 54px;
  padding: 12px 28px;
  border: none;
  background: linear-gradient(90deg, #09844a 0%, #159fc0 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}
.button:hover {
  animation: anima-button 1s;
}
.button::after {
  width: 6px;
  height: 6px;
  margin-left: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  transform: rotate(45deg);
}
.button--hero {
  margin-top: 30px;
}
.button--works {
  width: 400px;
  height: 80px;
  margin-top: 45px;
}
.button--business {
  width: 400px;
  height: 80px;
  margin: 45px auto 0;
  display: flex;
}
.button--recruit {
  margin-top: 25px;
}
.button--company {
  width: 100%;
  min-width: 0;
  height: 55px;
  margin-top: 25px;
}
.button--recruit {
  width: 100%;
  margin-top: 25px;
  background: var(--color-main);
}
.button--works-card {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: auto;
  padding: 10px;
  border-radius: 3px;
  font-size: 13px;
}
.button--works-card::after {
  display: none;
}

@keyframes anima-button {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 159, 192, 0.45);
  }
  100% {
    box-shadow: 0 0 0 1.2em rgba(21, 159, 192, 0);
  }
}
@media screen and (max-width: 767px) {
  .button {
    min-width: 220px;
    min-height: 48px;
    padding: 10px 20px;
    font-size: 13px;
  }
  .button::after {
    width: 5px;
    height: 5px;
    margin-left: 10px;
  }
  .button--hero {
    margin-top: 24px;
  }
  .button--works {
    width: 280px;
    height: 60px;
    margin-top: 30px;
  }
  .button--business {
    width: 280px;
    height: 60px;
    margin: 30px auto 0;
  }
}
.section-heading {
  text-align: center;
  margin-bottom: 30px;
}
.section-heading > div {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.section-heading > div img {
  position: absolute;
  left: -20px;
  width: 40px;
  height: 40px;
  opacity: 0.3;
  z-index: 0;
}
.section-heading > div h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.15rem;
}
.section-heading > p {
  font-size: 14px;
  background: linear-gradient(90deg, #09844a 0%, #159fc0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .section-heading > div h2 {
    font-size: 20px;
  }
}

.section-heading--left {
  align-items: flex-start;
  text-align: left;
  margin-bottom: 10px;
}
.section-heading--left > div {
  justify-content: flex-start;
}

.breadcrumb {
  display: flex;
  gap: 0 22px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  font-size: 0.9em;
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li:first-child::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V11L1 11L11.3273 1.6115C11.7087 1.26475 12.2913 1.26475 12.6727 1.6115L23 11L20 11V20ZM11 13V19H13V13H11Z' fill='%23333333'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: "";
}
.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  transform: rotate(45deg);
  width: 0.3em;
  height: 0.3em;
  margin-left: 10px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  content: "";
}
.breadcrumb a {
  color: #666;
  text-decoration: none;
}

.slide-in {
  opacity: 0;
  transform: translateX(-30px);
  filter: blur(4px);
  transition: opacity 1.2s ease, transform 1.2s ease, filter 1.2s ease;
}
.slide-in.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.slide-in-1 {
  transition-delay: 0s;
}
.slide-in-2 {
  transition-delay: 0.4s;
}
.slide-in-3 {
  transition-delay: 0.8s;
}
.slide-in-4 {
  transition-delay: 1.2s;
}
.slide-in-5 {
  transition-delay: 1.8s;
}
.slide-in-6 {
  transition-delay: 2.2s;
}

/*-- projectフォルダの中の_index.scss --*/
.footer {
  background-color: #03466a;
  color: var(--color-white);
}
.footer a {
  color: var(--color-white);
}
.footer__content {
  display: grid;
  grid-template-columns: 210px 1fr 170px;
  gap: 25px;
  padding: 45px 0;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__logo img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__logo p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
}
.footer__iso {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  padding: 6px;
  border: 1px solid #fff;
}
.footer__iso > img {
  width: 42px;
}
.footer__iso span {
  font-size: 14px;
}
.footer__iso p {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--color-white);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.footer__nav h3 {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--color-white);
  font-weight: 600;
}
.footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__nav li {
  margin-bottom: 5px;
}
.footer__nav a {
  font-size: 13px;
  font-weight: 400;
}
.footer__nav a:hover {
  opacity: 0.7;
}
.footer__contact-title {
  margin-top: 18px !important;
}
.footer__contact {
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}
.footer__contact h3 {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--color-white);
}
.footer__tel {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 15px;
  letter-spacing: 0.15em;
}
.footer__tel img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 10px 20px;
  border: 1px solid #fff;
  font-size: 13px;
  white-space: nowrap;
  width: 200px;
}
.footer__instagram {
  display: inline-block;
  margin-top: 15px;
}
.footer__instagram img {
  width: 20px;
  height: 20px;
}
.footer__copy {
  padding: 18px 0;
  background-color: var(--color-green);
  text-align: center;
}
.footer__copy small {
  font-size: 14px;
}

@media screen and (max-width: 990px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 35px 0;
  }
  .footer__company {
    text-align: center;
  }
  .footer__logo {
    justify-content: center;
    gap: 8px;
  }
  .footer__logo img {
    width: 30px;
    height: 30px;
  }
  .footer__logo p {
    font-size: 17px;
  }
  .footer__iso {
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto 0;
    padding: 6px 10px;
  }
  .footer__iso > img {
    width: 40px;
  }
  .footer__iso span {
    font-size: 12px;
  }
  .footer__iso p {
    font-size: 11px;
  }
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 20px;
  }
  .footer__nav h3 {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .footer__nav li {
    margin-bottom: 4px;
  }
  .footer__nav a {
    font-size: 12px;
    line-height: 1.7;
  }
  .footer__contact-title {
    margin-top: 15px !important;
  }
  .footer__contact {
    padding: 25px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
  }
  .footer__contact h3 {
    font-size: 14px;
  }
  .footer__tel {
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  .footer__tel img {
    width: 20px;
    height: 20px;
  }
  .footer__button {
    width: 220px;
    min-height: 42px;
    margin: 0 auto;
    font-size: 12px;
  }
  .footer__instagram {
    margin-top: 18px;
  }
  .footer__instagram img {
    width: 22px;
    height: 22px;
  }
  .footer__copy {
    padding: 15px 0;
  }
  .footer__copy small {
    font-size: 11px;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 40px);
  height: 72px;
  margin-inline: auto;
  max-width: 1250px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header__logo img {
  width: 42px;
  height: auto;
}
.header__logo span {
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--color-main);
}
.header nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header nav a,
.header nav .mega-trigger {
  display: block;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  color: var(--color-main);
  font-weight: 600;
}
.header nav a:hover,
.header nav .mega-trigger:hover {
  color: var(--color-white);
  transition: 0.5s;
}
.header__instagram {
  display: flex;
  align-items: center;
}
.header__instagram img {
  width: 24px;
  height: 24px;
}
.header__menu {
  display: none;
}
.header .has-mega {
  position: static;
}
.header .mega-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 5px;
}
.header .mega-link > a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-main);
  white-space: nowrap;
}
.header .mega-trigger {
  position: relative;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-main);
  cursor: pointer;
}
.header .mega-trigger::after {
  position: absolute;
  top: 4px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.header .mega-trigger[aria-expanded=true]::after {
  top: 7px;
  transform: rotate(225deg);
}
.header .mega-menu {
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  padding: 40px 0;
  background-color: var(--color-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.header .mega-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.header .mega-menu__wrapper {
  display: flex;
  gap: 70px;
  width: calc(100% - 40px);
  max-width: 1250px;
  margin-inline: auto;
}
.header .mega-menu__wrapper p {
  margin: 0;
  min-width: 180px;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
}
.header .mega-menu__wrapper p:hover {
  color: var(--color-main);
  transition: 0.5s;
}
.header .mega-menu__wrapper > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 40px;
  flex: 1;
  padding: 0;
}
.header .mega-menu__wrapper > ul li {
  border-bottom: 1px solid #ddd;
}
.header .mega-menu__wrapper > ul a {
  padding: 14px 5px;
  transition: opacity 0.3s ease;
  color: #fff;
}
.header .mega-menu__wrapper > ul a:hover {
  color: var(--color-main);
  transition: 0.5s;
}

@media screen and (max-width: 990px) {
  .header {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .header__wrapper {
    position: relative;
    z-index: 2;
    width: calc(100% - 30px);
    height: 64px;
  }
  .header__logo {
    gap: 8px;
  }
  .header__logo img {
    width: 34px;
  }
  .header__logo span {
    font-size: 17px;
  }
  .header nav {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    background-color: #fff;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .header nav.is-open {
    max-height: calc(100vh - 64px);
    visibility: visible;
    opacity: 1;
  }
  .header nav > ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 10px 25px 30px;
  }
  .header nav > ul > li {
    width: 100%;
    border-bottom: 1px solid #ddd;
  }
  .header nav > ul > li > a,
  .header nav .mega-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    padding: 0 5px;
    text-align: left;
    color: var(--color-main);
  }
  .header nav > ul > li > a,
  .header nav .mega-trigger {
    color: var(--color-main);
  }
  .header nav > ul > li > a:hover,
  .header nav .mega-trigger:hover {
    color: var(--color-main);
  }
  .header__instagram {
    justify-content: flex-start;
  }
  .header__instagram img {
    width: 26px;
    height: 26px;
  }
  .header__menu {
    display: block;
    width: 40px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .header__menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .header__menu span + span {
    margin-top: 6px;
  }
  .header__menu.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header__menu.is-open span:nth-child(2) {
    opacity: 0;
  }
  .header__menu.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header .mega-trigger::after {
    top: 27px;
  }
  .header .mega-trigger[aria-expanded=true]::after {
    top: 25px;
    transform: rotate(225deg);
  }
  .header .mega-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    visibility: hidden;
    box-shadow: none;
    opacity: 0;
    transform: none;
    transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .header .mega-menu.is-open {
    max-height: 300px;
    visibility: visible;
    opacity: 1;
  }
  .header .mega-menu__wrapper {
    display: block;
    width: 100%;
    margin: 0;
  }
  .header .mega-menu__wrapper p {
    display: none;
  }
  .header .mega-menu__wrapper > ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 5px 0;
  }
  .header .mega-menu__wrapper > ul li {
    width: 100%;
    border-bottom: 0;
  }
  .header .mega-menu__wrapper > ul a {
    display: block;
    width: 100%;
    padding: 6px 20px;
    font-size: 14px;
    font-weight: 500;
  }
}
.subpage .header {
  border-bottom: 1px solid transparent;
  -o-border-image: linear-gradient(90deg, #09844a 0%, #159fc0 100%) 1;
     border-image: linear-gradient(90deg, #09844a 0%, #159fc0 100%) 1;
}
.subpage .header nav a:hover,
.subpage .header nav .mega-trigger:hover {
  color: var(--color-accent);
}

.p-Nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.p-Nav__link {
  position: relative;
  display: block;
  padding-block: 24px;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  color: var(--color-main);
  font-weight: 600;
}
.p-Nav__link::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  width: 0;
  height: 1px;
  margin-inline: auto;
  background: #003c5d;
  content: "";
  transition: width 0.3s ease;
}
.p-Nav__link:hover::after {
  width: 100%;
}
.p-Nav__instagram {
  display: grid;
  place-items: center;
  transition: opacity 0.3s ease;
}
.p-Nav__instagram img {
  width: 26px;
  height: 26px;
}
.p-Nav__instagram:hover {
  opacity: 0.7;
}

.hero {
  position: relative;
  height: 700px;
  overflow: hidden;
}
.hero__slider {
  position: absolute;
  inset: 0;
}
.hero__slider::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(60deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 24%, rgba(255, 255, 255, 0.25) 50%, transparent 72%);
  content: "";
}
.hero__slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slider img.is-active {
  opacity: 1;
}
.hero__wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(100% - 80px, 1250px);
  height: 100%;
  margin-inline: auto;
  padding-top: 65px;
}
.hero__content h1 {
  margin: 0;
  font-size: 50px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: var(--color-main);
}
.hero__content p {
  margin: 24px 0 0;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-main);
}
.hero__content a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 52px;
  margin-top: 26px;
  color: #fff;
  text-decoration: none;
  background: var(--btn-main);
  transition: opacity 0.3s ease;
}
.hero__content span {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  font-size: 8rem;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0.03em;
  color: rgba(39, 169, 223, 0.12);
  white-space: nowrap;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .hero {
    height: 620px;
  }
  .hero__slider::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 20%, rgba(255, 255, 255, 0.65) 55%, rgba(255, 255, 255, 0.95) 100%);
  }
  .hero__slider img {
    -o-object-position: 65% center;
       object-position: 65% center;
  }
  .hero__wrapper {
    align-items: flex-end;
    width: calc(100% - 40px);
    padding: 0 0 50px;
  }
  .hero__content h1 {
    font-size: 34px;
    line-height: 1.45;
    letter-spacing: 0.06em;
  }
  .hero__content p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.8;
  }
  .hero__content a {
    width: 190px;
    height: 48px;
    margin-top: 22px;
    font-size: 14px;
  }
}
.message {
  padding: 70px 0;
  background-color: #f7f7f7;
}
.message .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}
.message__text {
  min-width: 0;
}
.message__body {
  margin-top: 20px;
}
.message__body p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #444;
}
.message__body p + p {
  margin-top: 8px;
}
.message__image img {
  display: block;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .message {
    padding: 50px 0;
  }
  .message .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .message__body {
    margin-top: 15px;
  }
  .message__body p {
    font-size: 14px;
    line-height: 1.9;
  }
  .message__body p + p {
    margin-top: 10px;
  }
  .message__image img {
    width: 85%;
    max-width: none;
    margin: 0 auto;
  }
}
.company-info {
  padding: 70px 0;
}
.company-info__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  margin-top: 30px;
}
.company-info__images img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1.25;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-info__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  margin-top: 35px;
}
.company-info__overview h3, .company-info__history h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
}
.company-info__overview dl, .company-info__history dl {
  margin: 0;
}
.company-info__overview dl > div, .company-info__history dl > div {
  position: relative;
  padding: 7px 0;
}
.company-info__overview dl > div::after, .company-info__history dl > div::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #09844a 0%, #159fc0 100%);
}
.company-info__overview dt,
.company-info__overview dd, .company-info__history dt,
.company-info__history dd {
  margin: 0;
  font-size: 14.3px;
  line-height: 1.7;
}
.company-info__overview dt, .company-info__history dt {
  font-weight: 500;
}
.company-info__history dl > div {
  grid-template-columns: 110px 1fr;
}

@media screen and (max-width: 767px) {
  .company-info {
    padding: 50px 0;
  }
  .company-info__images {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px;
  }
  .company-info__images img {
    aspect-ratio: 1/1.2;
  }
  .company-info__content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
  }
  .company-info__overview h3, .company-info__history h3 {
    margin-bottom: 8px;
    font-size: 15px;
  }
  .company-info__overview dl > div, .company-info__history dl > div {
    grid-template-columns: 80px 1fr;
    gap: 8px;
    padding: 7px 0;
  }
  .company-info__overview dt,
  .company-info__overview dd, .company-info__history dt,
  .company-info__history dd {
    font-size: 12px;
    line-height: 1.7;
  }
  .company-info__history dl > div {
    grid-template-columns: 95px 1fr;
  }
}
.plan {
  position: relative;
  padding: 70px 0;
  background-color: #edf8fd;
  z-index: 30;
  background-image: url("../../img/line-wave.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.plan__content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 55px;
  margin-top: 25px;
}
.plan__image {
  position: relative;
  width: 90%;
  margin-left: 20px;
}
.plan__image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.plan__text h3 {
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-main);
}
.plan__text p {
  margin: 0;
  font-size: 14px;
  line-height: 2.1;
  color: #444;
}
.plan__text .button {
  width: 100%;
  max-width: 360px;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .plan {
    padding: 50px 0;
  }
  .plan__content {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 20px;
  }
  .plan__image {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  .plan__image::before {
    left: -10px;
    bottom: -10px;
    width: 85%;
    height: 80%;
  }
  .plan__image img {
    width: 100%;
    max-width: 450px;
  }
  .plan__text h3 {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.6;
  }
  .plan__text p {
    font-size: 14px;
    line-height: 1.9;
  }
  .plan__text p br {
    display: none;
  }
  .plan__text .button {
    width: 100%;
    max-width: none;
    margin-top: 25px;
  }
}
.safety {
  padding: 70px 0 140px;
}
.safety__list {
  margin-top: 30px;
}
.safety__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.safety__item--reverse .safety__text {
  order: 2;
}
.safety__item--reverse .safety__image {
  order: 1;
}
.safety__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 45px;
}
.safety__text > p {
  font-weight: 400;
  color: #555;
}
.safety__number {
  display: block;
  margin-bottom: 3px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-green);
}
.safety h3 {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-main);
}
.safety__pdf {
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 18px;
  padding: 8px 18px;
  border: 1px solid var(--color-green);
  color: var(--color-green);
  font-size: 12px;
  text-decoration: none;
  transition: 0.3s;
}
.safety__pdf::after {
  content: "→";
  margin-left: 10px;
}
.safety__pdf:hover {
  background-color: var(--color-green);
  color: #fff;
}
.safety__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  padding: 30px;
  background-color: #edf8fd;
}
.safety__image img {
  display: block;
  width: auto;
  max-width: 75%;
  max-height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 767px) {
  .safety {
    padding: 50px 0;
  }
  .safety__list {
    margin-top: 20px;
  }
  .safety__item {
    grid-template-columns: 1fr;
    margin-bottom: 35px;
  }
  .safety__item--reverse .safety__text,
  .safety__item--reverse .safety__image {
    order: initial;
  }
  .safety__text {
    padding: 20px 0;
  }
  .safety__text > p {
    font-size: 13px;
    line-height: 1.9;
  }
  .safety__number {
    font-size: 22px;
  }
  .safety h3 {
    padding-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
  }
  .safety__pdf {
    margin-top: 15px;
    padding: 8px 14px;
    font-size: 11px;
  }
  .safety__image {
    min-height: 180px;
    padding: 25px 20px;
  }
  .safety__image img {
    max-width: 70%;
    max-height: 130px;
  }
}
.page-head {
  padding: 20px 0 35px;
  padding-top: 90px;
}
.page-head__inner {
  width: 80%;
  margin: 0 auto;
  max-width: 1100px;
}

.page-title {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 38px;
}
.page-title h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-main);
}
.page-title p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(90deg, #09844a 0%, #159fc0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}
.page-nav a {
  position: relative;
  padding: 11px 10px;
  background-color: #999;
  color: #fff;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}
.page-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 4px;
  background-color: #ccc;
  transition: 0.3s;
}
.page-nav a:hover, .page-nav a.is-active {
  background: linear-gradient(90deg, #168843, #27a9df);
}
.page-nav a:hover::after, .page-nav a.is-active::after {
  background: linear-gradient(90deg, #168843, #27a9df);
}

@media screen and (max-width: 767px) {
  .page-head {
    padding: 75px 0 30px;
  }
  .page-head__inner {
    width: calc(100% - 30px);
    max-width: none;
  }
  .page-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 28px;
  }
  .page-title h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  .page-title p {
    font-size: 13px;
  }
  .page-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 8px;
  }
  .page-nav a {
    padding: 10px 6px;
    font-size: 12px;
  }
  .page-nav a::after {
    bottom: -8px;
    height: 3px;
  }
}
.works {
  padding: 70px 0;
  background-color: #edf8fd;
}
.works__layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 50px;
  align-items: start;
}
.works__side {
  position: sticky;
  top: 120px;
  align-self: start;
  border-right: 2px solid #09844a;
}
.works__side-inner {
  position: static;
}
.works__number {
  display: block;
  font-size: 100px;
  font-weight: 900;
  color: rgba(39, 169, 223, 0.5);
  line-height: 1;
}
.works__side h2 {
  margin: 5px 0 0;
  font-size: 25px;
  color: var(--color-main);
}
.works__side p {
  margin: 3px 0 0;
  font-size: 16px;
  background: linear-gradient(90deg, #09844a 0%, #159fc0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.works__group {
  display: grid;
  gap: 20px;
  margin-bottom: 150px;
}
.works__card {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(9, 116, 57, 0.1);
}
.works__card img {
  display: block;
  width: 100%;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.works__card h3 {
  margin: 20px 0;
  font-size: 16px;
}

.equipment {
  padding: 70px 0;
}
.equipment__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 55%;
  margin-top: 30px;
}
.equipment__summary-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
  padding: 20px;
  border: 1px solid #27a9df;
  background-color: #fff;
}
.equipment__summary-card img {
  grid-row: 1/3;
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}
.equipment__summary-card strong {
  font-size: 50px;
  line-height: 1;
  color: var(--color-accent);
  font-weight: 900;
}
.equipment__summary-card span {
  font-size: 9px;
  color: #777;
}
.equipment__content {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr;
  gap: 35px;
  align-items: start;
  margin-top: 25px;
}
.equipment__tables {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr;
  gap: 20px;
}
.equipment__table {
  padding: 15px;
  background-color: #edf8fd;
}
.equipment__table h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--color-main);
}
.equipment__table h3 img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.equipment__table table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.equipment__table td {
  padding: 6px 7px;
  border: 1px solid #ddd;
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text);
}
.equipment__table td:last-child {
  width: 45px;
  text-align: center;
  white-space: nowrap;
}
.equipment__image {
  height: 100%;
}
.equipment__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .works {
    padding: 50px 0;
  }
  .works__layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .works__side {
    display: none;
    position: static;
    border-right: 0;
  }
  .works__group {
    gap: 15px;
    margin-bottom: 60px;
  }
  .works__group::before {
    content: attr(data-number) "  " attr(data-title);
    display: block;
    margin-bottom: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #b7dcea;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-main);
  }
  .works__card {
    padding: 15px;
    border-radius: 8px;
  }
  .works__card img {
    aspect-ratio: 1.7/1;
    border-radius: 6px;
  }
  .works__card h3 {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.6;
  }
  .works__card a {
    padding: 8px;
    font-size: 12px;
  }
  .equipment {
    padding: 50px 0;
  }
  .equipment__summary {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: 100%;
    margin-top: 20px;
  }
  .equipment__summary-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 12px 5px;
    text-align: center;
  }
  .equipment__summary-card img {
    width: 28px;
    height: 28px;
  }
  .equipment__summary-card strong {
    font-size: 34px;
  }
  .equipment__summary-card span {
    font-size: 7px;
  }
  .equipment__content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 20px;
  }
  .equipment__image {
    order: -1;
    height: auto;
  }
  .equipment__image img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.4/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .equipment__tables {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .equipment__table {
    padding: 12px;
  }
  .equipment__table h3 {
    gap: 8px;
    margin-bottom: 10px;
    font-size: 15px;
  }
  .equipment__table h3 img {
    width: 22px;
    height: 22px;
  }
  .equipment__table td {
    padding: 6px 5px;
    font-size: 11px;
    line-height: 1.5;
  }
  .equipment__table td:last-child {
    width: 38px;
  }
}
.licenses {
  padding: 70px 0 140px;
}
.licenses__content {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 35px;
  align-items: stretch;
  margin-top: 30px;
}
.licenses__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.licenses__box {
  padding: 20px;
  background-color: #edf8fd;
}
.licenses__box h3 {
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
}
.licenses__tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.licenses__tables table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.licenses__tables td {
  padding: 6px 8px;
  border: 1px solid #ddd;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text);
}
.licenses__tables td:last-child {
  width: 45px;
  text-align: center;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .licenses {
    padding: 50px 0;
  }
  .licenses__content {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  .licenses__image img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.4/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .licenses__box {
    padding: 15px;
  }
  .licenses__box h3 {
    margin-bottom: 12px;
    font-size: 15px;
  }
  .licenses__tables {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .licenses__tables table {
    width: 100%;
  }
  .licenses__tables table + table {
    margin-top: -1px;
  }
  .licenses__tables td {
    padding: 7px 6px;
    font-size: 11px;
    line-height: 1.5;
  }
  .licenses__tables td:last-child {
    width: 40px;
  }
}
.works-detail {
  padding: 70px 0;
  background-color: #edf8fd;
}
.works-detail__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}
.works-detail__info {
  padding: 30px 20px;
  background-color: #fff;
}
.works-detail__number {
  display: block;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: rgba(39, 169, 223, 0.35);
}
.works-detail h1 {
  margin: 15px 0 0;
  font-size: 22px;
  color: var(--color-main);
}
.works-detail__en {
  margin: 3px 0 0;
  font-size: 13px;
  background: linear-gradient(90deg, #09844a, #159fc0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.works-detail__name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 12px;
  border: 1px solid #159fc0;
  border-radius: 10px;
}
.works-detail__name img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.works-detail__name p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-main);
}
.works-detail__map {
  margin-top: 20px;
  height: 170px;
}
.works-detail__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.works-detail__main img {
  display: block;
  width: 100%;
  aspect-ratio: 1.7/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-detail__thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.works-detail__thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1.7/1;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .works-detail {
    padding: 40px 0;
  }
  .works-detail__layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .works-detail__info {
    padding: 25px 18px;
  }
  .works-detail__number {
    font-size: 42px;
  }
  .works-detail h1 {
    margin-top: 10px;
    font-size: 20px;
  }
  .works-detail__en {
    font-size: 12px;
  }
  .works-detail__name {
    gap: 8px;
    margin-top: 20px;
    padding: 10px;
  }
  .works-detail__name img {
    width: 28px;
    height: 28px;
  }
  .works-detail__name p {
    font-size: 12px;
  }
  .works-detail__map {
    height: 200px;
    margin-top: 18px;
  }
  .works-detail__main img {
    aspect-ratio: 1.4/1;
  }
  .works-detail__thumbs {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 8px;
  }
  .works-detail__thumbs img {
    aspect-ratio: 1.4/1;
  }
}
.news-list {
  padding: 70px 0 140px;
}
.news-list__layout {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 30px;
  align-items: start;
}
.news-list__main {
  padding: 25px;
  background-color: #edf8fd;
}
.news-list__main > h2 {
  margin: 0 0 20px;
  font-size: 16px;
  color: var(--color-main);
}
.news-list__items {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-list__items li {
  border-top: 1px solid var(--color-green);
}
.news-list__items li:last-child {
  border-bottom: 1px solid var(--color-green);
}
.news-list__items li > a {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px 0;
  color: var(--color-text);
  text-decoration: none;
}
.news-list__items img {
  display: block;
  width: 100px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-list__text > span {
  display: inline-block;
  margin-bottom: 5px;
  padding: 2px 7px;
  border: 1px solid #159fc0;
  font-size: 10px;
  color: var(--color-main);
}
.news-list__text p {
  margin: 0;
  font-size: 13px;
}
.news-list__text time {
  margin-right: 10px;
  font-size: 11px;
}
.news-list__more {
  min-width: 85px;
  padding: 5px 12px;
  border-radius: 20px;
  background: linear-gradient(90deg, #09844a, #159fc0);
  color: #fff;
  font-size: 10px;
  text-align: center;
}
.news-list__archive {
  padding: 18px 20px;
  background-color: #edf8fd;
}
.news-list__archive h3 {
  margin: 0 0 15px;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-green);
}
.news-list__archive ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-list__archive li {
  margin-bottom: 10px;
}
.news-list__archive a {
  font-size: 12px;
  color: var(--color-text);
  text-decoration: none;
}
.news-list__archive a::before {
  content: "−";
  margin-right: 8px;
  color: var(--color-main);
}

.pagination {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 20px;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid #aaa;
  background-color: #fff;
  color: #555;
  font-size: 11px;
  text-decoration: none;
}
.pagination a.is-current {
  border-color: transparent;
  background: linear-gradient(90deg, #09844a, #159fc0);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .news-list {
    padding: 0px 0 70px;
  }
  .news-list__layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .news-list__main {
    padding: 15px;
  }
  .news-list__items li > a {
    grid-template-columns: 75px 1fr;
    gap: 12px;
  }
  .news-list__items img {
    width: 75px;
    height: 55px;
  }
  .news-list__text p {
    font-size: 12px;
    line-height: 1.6;
  }
  .news-list__text time {
    display: block;
    margin: 0 0 3px;
    font-size: 10px;
  }
  .news-list__more {
    display: none;
  }
  .news-list__archive {
    padding: 15px 20px;
  }
  .news-list__archive ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .news-list__archive li {
    margin: 0;
  }
  .pagination {
    justify-content: center;
  }
}
.news-detail {
  padding: 0px 0 80px;
}
.news-detail__head time {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-main);
}
.news-detail__head h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-main);
}
.news-detail__body {
  margin-top: 30px;
}
.news-detail__body p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #444;
}
.news-detail__body p + p {
  margin-top: 5px;
}
.news-detail__image {
  width: 320px;
  margin: 45px auto 0;
}
.news-detail__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact {
  padding: 70px 0 140px;
}
.contact__tel-area, .contact__form-area {
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.contact__tel-area h2 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-main);
}
.contact__tel-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
  padding: 25px 30px;
  box-sizing: border-box;
  border: 1px solid #159fc0;
  background-color: #edf8fd;
}
.contact__tel-box p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  white-space: nowrap;
}
.contact__tel-box span {
  font-size: 14px;
  color: #666;
}
.contact__tel-box a,
.contact__tel-box strong {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-main);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
}
.contact__tel-box img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact__form-area {
  margin-top: 60px;
}
.contact__form-title {
  position: relative;
  margin-bottom: 45px;
  text-align: center;
}
.contact__form-title > span {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: rgba(39, 169, 223, 0.15);
}
.contact__form-title h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-main);
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.contact__row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  width: 100%;
}
.contact__row label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 16px;
  color: #333;
}
.contact__row label span {
  flex-shrink: 0;
  padding: 2px 5px;
  background-color: var(--color-main);
  color: #fff;
  font-size: 9px;
}
.contact__row input,
.contact__row select,
.contact__row textarea {
  display: block;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border: 1px solid #ddd;
  background-color: #fff;
  font-size: 14px;
  outline: none;
}
.contact__row input:focus,
.contact__row select:focus,
.contact__row textarea:focus {
  border-color: #159fc0;
}
.contact__row input,
.contact__row select {
  height: 38px;
  padding: 0 12px;
}
.contact__row textarea {
  height: 150px;
  padding: 12px;
  resize: vertical;
}
.contact__row--textarea {
  align-items: start;
}
.contact__row--textarea label {
  padding-top: 10px;
}
.contact__submit {
  width: 100%;
  max-width: 360px;
  min-height: 45px;
  margin: 15px auto 0;
  padding: 10px 20px;
  box-sizing: border-box;
  text-align: center;
  border: 0;
  background: linear-gradient(90deg, #09844a 0%, #159fc0 100%);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5em;
  cursor: pointer;
  transition: 0.3s;
}
.contact__submit:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .contact {
    padding: 0;
  }
  .contact__tel-area, .contact__form-area {
    width: 100%;
    max-width: none;
  }
  .contact__tel-area h2 {
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
  }
  .contact__tel-box {
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
  }
  .contact__tel-box p {
    justify-content: center;
    width: 100%;
  }
  .contact__tel-box span {
    font-size: 12px;
  }
  .contact__tel-box a,
  .contact__tel-box strong {
    font-size: 18px;
    letter-spacing: 0.05em;
  }
  .contact__tel-box img {
    width: 20px;
    height: 20px;
  }
  .contact__form-area {
    margin: 55px 0 55px;
  }
  .contact__form-title {
    margin-bottom: 35px;
  }
  .contact__form-title > span {
    top: -18px;
    font-size: 38px;
  }
  .contact__form-title h2 {
    font-size: 18px;
  }
  .contact__form {
    gap: 20px;
  }
  .contact__row {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .contact__row label {
    justify-content: flex-start;
    gap: 8px;
    font-size: 14px;
  }
  .contact__row label span {
    font-size: 9px;
  }
  .contact__row input,
  .contact__row select {
    height: 42px;
    font-size: 14px;
  }
  .contact__row textarea {
    height: 140px;
    font-size: 14px;
  }
  .contact__row--textarea label {
    padding-top: 0;
  }
  .contact__submit {
    width: 100%;
    max-width: none;
    min-height: 45px;
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 14px;
  }
}
.contact__website {
  position: absolute;
  left: -9999px;
}

.thanks {
  padding: 70px 0;
  background-color: #edf8fd;
}
.thanks__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 70px 40px;
  background-color: #fff;
  text-align: center;
}
.thanks__title > span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #09844a, #159fc0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.thanks__title h2 {
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.6;
  color: var(--color-main);
}
.thanks__text {
  margin-top: 30px;
  font-size: 15px;
  line-height: 2;
}
.thanks__note {
  margin: 15px 0 35px;
  font-size: 13px;
  line-height: 1.8;
  color: #777;
}
.thanks .button {
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .thanks {
    padding: 45px 0;
  }
  .thanks__inner {
    padding: 45px 20px;
  }
  .thanks__title > span {
    font-size: 12px;
  }
  .thanks__title h2 {
    font-size: 21px;
  }
  .thanks__text {
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.9;
  }
  .thanks__note {
    margin: 15px 0 30px;
    font-size: 12px;
  }
}
.recruit-visual__bottom {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 300px;
  margin: 80px 0;
}
.recruit-visual__message {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.recruit-visual__message-inner {
  position: relative;
  z-index: 1;
  width: 65%;
  margin-left: auto;
  margin-right: 35px;
  padding-top: 80px;
}
.recruit-visual__message-inner > span {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-main);
}
.recruit-visual__message-inner > span::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: var(--color-main);
}
.recruit-visual__message-inner h2 {
  margin: 28px 0 20px;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-green);
  background: linear-gradient(90deg, #09844a 0%, #159fc0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.recruit-visual__message-inner p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}
.recruit-visual__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 0.95fr;
  max-height: 430px;
  overflow: hidden;
  margin: 80px 0;
}
.recruit-visual__gallery-main img, .recruit-visual__gallery-center img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.recruit-visual__gallery-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.recruit-visual__gallery-right img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 768px) {
  .recruit-visual__bottom {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .recruit-visual__message-inner {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 50px;
  }
  .recruit-visual__message-inner > span {
    gap: 10px;
    font-size: 14px;
  }
  .recruit-visual__message-inner > span::after {
    width: 30px;
  }
  .recruit-visual__message-inner h2 {
    margin: 20px 0 15px;
    font-size: 30px;
    line-height: 1.5;
  }
  .recruit-visual__message-inner p {
    font-size: 14px;
    line-height: 1.8;
  }
  .recruit-visual__gallery {
    grid-template-columns: 1fr 1fr;
    max-height: 320px;
    margin: 50px 0;
  }
  .recruit-visual__gallery-main img {
    width: 100%;
    height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .recruit-visual__gallery-center {
    display: none;
  }
  .recruit-visual__gallery-right {
    grid-template-rows: 1fr 1fr;
    height: 320px;
  }
  .recruit-visual__gallery-right img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.interview {
  padding: 70px 0;
  background-color: #edf8fd;
  background-image: url("../../img/line-wave.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.interview__schedule {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 35px;
  margin: 35px 0 45px;
}
.interview__schedule > div {
  position: relative;
  text-align: center;
}
.interview__schedule > div:not(:last-child)::after {
  position: absolute;
  top: 45px;
  left: 100%;
  width: 35px;
  height: 1px;
  background-color: var(--color-main);
  content: "";
}
.interview__schedule > div span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: var(--color-main);
  color: #fff;
  font-size: 14px;
}
.interview__schedule > div p {
  margin: 8px 0 0;
  font-size: 14px;
  color: #444;
}
.interview__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.interview__item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding: 20px;
  border: 1px solid #c5dce7;
  border-radius: 8px;
  background-color: #fff;
}
.interview__profile > img {
  display: block;
  width: 100%;
  aspect-ratio: 1.3/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview__profile > span {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 12px;
  border-radius: 20px;
  background-color: var(--color-main);
  color: #fff;
  font-size: 12px;
}
.interview__profile > p {
  margin: 7px 0 0;
  font-size: 14px;
}
.interview__questions details {
  border-bottom: 1px solid #b8c9d3;
}
.interview__questions details:first-child {
  border-top: 1px solid #b8c9d3;
}
.interview__questions details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 14px 35px 14px 30px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
  cursor: pointer;
  list-style: none;
}
.interview__questions details summary::-webkit-details-marker {
  display: none;
}
.interview__questions details summary::before {
  position: absolute;
  left: 5px;
  content: "Q.";
  font-size: 16px;
  font-weight: 700;
  color: var(--color-main);
}
.interview__questions details summary::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  content: "";
  transform: translateY(-3px) rotate(45deg);
  transition: transform 0.4s ease;
}
.interview__questions details[open] summary::after {
  transform: translateY(3px) rotate(225deg);
}
.interview__questions details > p {
  position: relative;
  margin: 0;
  padding: 0 20px 16px 30px;
  font-size: 14px;
  line-height: 1.8;
}
.interview__questions details > p::before {
  position: absolute;
  left: 5px;
  content: "A.";
  font-size: 15px;
  font-weight: 700;
  color: #e36c4f;
}

@media screen and (max-width: 767px) {
  .interview {
    padding: 50px 0;
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
  }
  .interview__schedule {
    gap: 8px;
    margin: 25px 0 35px;
  }
  .interview__schedule > div {
    flex: 1;
  }
  .interview__schedule > div:not(:last-child)::after {
    top: 28px;
    width: 8px;
  }
  .interview__schedule > div span {
    width: 52px;
    height: 52px;
    font-size: 10px;
  }
  .interview__schedule > div p {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.5;
  }
  .interview__list {
    gap: 20px;
    align-items: center;
  }
  .interview__item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px;
  }
  .interview__profile {
    justify-content: center;
  }
  .interview__profile > img {
    width: 100%;
    aspect-ratio: 1.5/1;
    max-width: 400px;
  }
  .interview__profile > span {
    margin-top: 8px;
    padding: 3px 10px;
    font-size: 11px;
  }
  .interview__profile > p {
    margin-top: 5px;
    font-size: 13px;
  }
  .interview__questions details summary {
    padding: 12px 30px 12px 27px;
    font-size: 14px;
    line-height: 1.6;
  }
  .interview__questions details summary::before {
    left: 3px;
    font-size: 14px;
  }
  .interview__questions details summary::after {
    width: 6px;
    height: 6px;
  }
  .interview__questions details > p {
    padding: 0 10px 14px 27px;
    font-size: 13px;
    line-height: 1.8;
  }
  .interview__questions details > p::before {
    left: 3px;
    font-size: 14px;
  }
}
.benefits {
  padding: 70px 0;
  background-color: #fff;
}
.benefits__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.benefits__item {
  min-height: 190px;
  padding: 20px 15px;
  border: 1px solid;
  -o-border-image: linear-gradient(90deg, #09844a 0%, #159fc0 100%) 1;
     border-image: linear-gradient(90deg, #09844a 0%, #159fc0 100%) 1;
  text-align: center;
  box-shadow: 0 4px 15px rgba(9, 82, 116, 0.1);
}
.benefits__item > img {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.benefits__item > h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-main);
}
.benefits__item > p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .benefits {
    padding: 50px 0;
  }
  .benefits__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 25px;
  }
  .benefits__item {
    min-height: 165px;
    padding: 15px 10px;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #09844a 0%, #159fc0 100%) border-box;
  }
  .benefits__item > img {
    width: 34px;
    height: 34px;
    margin: 0 auto 8px;
  }
  .benefits__item > h3 {
    font-size: 16px;
    line-height: 1.5;
  }
  .benefits__item > p {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.6;
  }
}
.recruitment {
  padding: 70px 0 140px;
  background-color: #edf8fd;
}
.recruitment__tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 850px;
  margin: 30px auto 50px;
}
.recruitment__tabs a {
  padding: 15px 10px;
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #09844a 0%, #159fc0 100%) border-box;
  font-size: 13px;
  text-align: center;
}
.recruitment .recruit-flow__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.recruitment .recruit-flow__list > div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 15px 10px;
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #09844a 0%, #159fc0 100%) border-box;
  text-align: center;
  margin-bottom: 50px;
}
.recruitment .recruit-flow__list > div:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -24px;
  width: 20px;
  height: 20px;
  background: url("../../img/arrow05.png") center/contain no-repeat;
  content: "";
  transform: translateY(-50%);
}
.recruitment .recruit-flow__list > div span {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #888;
}
.recruitment .recruit-flow__list > div p {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
}
.recruitment__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 55px;
}
.recruitment__item h3 {
  margin: 0 0 15px;
  font-size: 18px;
  color: var(--color-main);
}
.recruitment__item dl {
  margin: 0;
}
.recruitment__item dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 10px 0;
  border-bottom: 1px solid #b8c9d3;
}
.recruitment__item dl dt {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
}
.recruitment__item dl dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .recruitment {
    padding: 50px 0;
  }
  .recruitment .recruit-flow__list {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 85%;
    margin: 25px auto 40px;
  }
  .recruitment .recruit-flow__list > div {
    min-height: 90px;
    margin-bottom: 0;
    padding: 12px 10px;
  }
  .recruitment .recruit-flow__list > div:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -22px;
    width: 20px;
    height: 20px;
    content: "";
    transform: translateX(50%) rotate(90deg);
  }
  .recruitment .recruit-flow__list > div p {
    margin-top: 4px;
    font-size: 14px;
  }
  .recruitment__list {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 30px;
  }
  .recruitment__item h3 {
    margin-bottom: 10px;
    font-size: 17px;
  }
  .recruitment__item dl > div {
    grid-template-columns: 90px 1fr;
    gap: 10px;
    padding: 9px 0;
  }
  .recruitment__item dl dt {
    font-size: 13px;
    line-height: 1.6;
  }
  .recruitment__item dl dd {
    font-size: 12px;
    line-height: 1.7;
  }
}/*# sourceMappingURL=style.css.map */