@charset "UTF-8";
/*
index
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*
i-functions
-----------------------------------------------------*/
/*
i-mixin
-----------------------------------------------------*/
/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
recruit
-----------------------------------------------------*/
.p-recruit .-information .-img {
  margin-bottom: clamp(50px, 1.07vw + 46.6px, 64px);
}
.p-recruit .-information .-img img {
  border-radius: 10px;
}
.p-recruit .-information .-txt h3 {
  font-size: clamp(26px, 0.76vw + 23.6px, 36px);
  margin-bottom: 1em;
}
.p-recruit .-message .-staff {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: clamp(92px, -1.68vw + 119.4px, 114px);
}
@media screen and (min-width: 768px) {
  .p-recruit .-message .-staff {
    flex-direction: row;
    gap: 5%;
  }
}
.p-recruit .-message .-img {
  margin-bottom: clamp(0px, -3.05vw + 49.7px, 40px);
}
.p-recruit .-message .-img img {
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-recruit .-message .-txt {
    width: 55%;
  }
}
.p-recruit .-message .-txt dl dt {
  font-size: clamp(26px, 0vw + 26px, 26px);
  margin-bottom: 1em;
  padding-left: 2em;
  position: relative;
}
.p-recruit .-message .-txt dl dt:before {
  content: "Q.";
  position: absolute;
  width: 2em;
  height: 1em;
  left: 0;
  color: #f8591e;
  font-size: clamp(30px, 0vw + 30px, 30px);
}
.p-recruit .-guideline dl {
  line-height: 1.6;
  border-top: 1px solid #dbdbdb;
}
.p-recruit .-guideline dl div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5em 0;
  border-bottom: 1px solid #dbdbdb;
}
@media screen and (min-width: 768px) {
  .p-recruit .-guideline dl div {
    flex-direction: row;
  }
}
.p-recruit .-guideline dl div dt {
  color: #038c3e;
}
@media screen and (min-width: 768px) {
  .p-recruit .-guideline dl div dt {
    width: 10em;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit .-guideline dl div dd {
    width: calc(100% - 10em);
  }
}/*# sourceMappingURL=recruit.css.map */