@charset "UTF-8";
/*---------------------
変数
-----------------------*/
/*---------------------
ヘッダー用変数
-----------------------*/
/**************************

  カラーパレット

**************************/
/*-- mixinフォルダの中の_index.scss --*/
/*------------------------------------
SP特化サイト用メディアクエリ MIXIN
---------------------------------*/
/*---------------------
 ★ 文字関連一括指定
-----------------------*/
/*---------------------
//Fontサイズ vw可変指定（SP特化サイト用）
----------------------*/
/* @include font-vw(font-size, 440px, 16px, 12px);
SP特化サイトの最大幅440pxのとき16pxの文字sizeをvw変換し、
幅を狭めるごとに比率で縮めるが、そのまま適用すると早々に小さくなりすぎるので、
最小値12pxを指定。最小値になる幅sizeを割り出し、メディアクエリにmin指定することで
16pxの比率のまま縮め、12px以下には縮まないという指定にしている。
*/
/*---------------------
 ★ リンク文字色 一括指定
-----------------------*/
/*---------------------
 ★ リンク下線復活
-----------------------*/
/*-------------------------------------
 ★ リンク下線消去 一括指定//フォーカスのみ下線
---------------------------------------*/
/*-------------------------------------
 ★ floatのあとは自動 clear: both;
 @include clearfix;
 float: left;
 のように使用する
---------------------------------------*/
/*-------------------------------------
 ★セレクトのプロパティをサイズ指定して変更
---------------------------------------*/
/*-------------------------------------

   レイアウト汎用

---------------------------------------*/
/*-----------------------------------

 上部余白

-----------------------------------*/
/*-----------------------------------

 改行制御

-----------------------------------*/
/*-----------------------------------

 中央寄せと左寄せ制御

-----------------------------------*/
/*--------------------------------------------
//文字数を指定行数で丸めて…で省略・複数行対応mixin
----------------------------------------------*/
/*-----------------------------------

 文章段落

-----------------------------------*/
/*------------------------------------
コンテナ MIXIN
---------------------------------*/
/*
使い方例：

// 最大幅1200px、パディング20px（パディングを指定する場合）
@include l-container(1200px, 20px);  

// 最大幅1000px、パディング25px（デフォルト設定値なので省略可能）
@include l-container(1000px); 

// 最大幅800px、パディングなし
@include l-container-full(800px);

関連ファイル：
- assets/scss/layout/_l-container.scss で実際のクラス定義に使用
- .l-container-1200, .l-container-1000 などのクラスで利用
*/
/*--------------------- 
  STAFF VOICES PAGE
-----------------------*/
.p-staff-voices {
  /*--------------------- 
    本文
  -----------------------*/
}
.p-staff-voices__body {
  font-style: normal;
  font-weight: 400;
  font-size: calc(20 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-staff-voices__body {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-staff-voices__body {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-staff-voices__body {
    font-size: 18px;
  }
}
.p-staff-voices__body {
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.p-staff-voices__body h2 {
  font-style: normal;
  font-weight: 400;
  font-size: calc(28 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-staff-voices__body h2 {
    font-size: 28px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-staff-voices__body h2 {
    font-size: calc(0.8333333333vw + 21.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-staff-voices__body h2 {
    font-size: 24px;
  }
}
.p-staff-voices__body h2 {
  letter-spacing: 0.1em;
  margin: 80px 0 40px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(44, 44, 44, 0.15);
  color: #2c2c2c;
}
.p-staff-voices__body h2:first-of-type {
  margin-top: 0;
}
.p-staff-voices {
  /*--------------------- 
    セクション
  -----------------------*/
}
.p-staff-voices__section {
  margin: 80px 0;
}
.p-staff-voices__section:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-staff-voices__section {
    margin: 60px 0;
  }
}
.p-staff-voices {
  /*--------------------- 
    タイトル（職種名）
  -----------------------*/
}
.p-staff-voices__title {
  font-style: normal;
  font-weight: 700;
  font-size: calc(24 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-staff-voices__title {
    font-size: 24px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-staff-voices__title {
    font-size: calc(0.8333333333vw + 17.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-staff-voices__title {
    font-size: 20px;
  }
}
.p-staff-voices__title {
  letter-spacing: 0.1em;
  margin: 0 0 24px 0;
  color: #2c2c2c;
}
.p-staff-voices {
  /*--------------------- 
    テキスト
  -----------------------*/
}
.p-staff-voices__text {
  font-style: normal;
  font-weight: 400;
  font-size: calc(20 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-staff-voices__text {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-staff-voices__text {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-staff-voices__text {
    font-size: 18px;
  }
}
.p-staff-voices__text {
  letter-spacing: 0.05em;
  line-height: 2;
}
.p-staff-voices__text p {
  margin-bottom: 24px;
}
.p-staff-voices__text p:last-child {
  margin-bottom: 0;
}