@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 などのクラスで利用
*/
/*--------------------- 
  DEPARTMENTS PAGE
-----------------------*/
.p-departments {
  /*--------------------- 
    本文
  -----------------------*/
}
.p-departments__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-departments__body {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-departments__body {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-departments__body {
    font-size: 18px;
  }
}
.p-departments__body {
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.p-departments {
  /*--------------------- 
    リード文
  -----------------------*/
}
.p-departments__lead {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-departments__lead {
    margin-bottom: 40px;
  }
}
.p-departments__lead-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-departments__lead-text {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-departments__lead-text {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-departments__lead-text {
    font-size: 18px;
  }
}
.p-departments__lead-text {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 0;
}
.p-departments {
  /*--------------------- 
    ページ内ナビゲーション
  -----------------------*/
}
.p-departments__nav {
  background: rgba(44, 44, 44, 0.03);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-departments__nav {
    padding: 20px;
    margin-bottom: 40px;
  }
}
.p-departments__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .p-departments__nav-list {
    gap: 8px;
  }
}
.p-departments__nav-item {
  margin: 0;
}
.p-departments__nav-link {
  font-style: normal;
  font-weight: 400;
  font-size: calc(16 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-departments__nav-link {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-departments__nav-link {
    font-size: calc(0.4166666667vw + 12.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-departments__nav-link {
    font-size: 14px;
  }
}
.p-departments__nav-link {
  color: #2c2c2c;
  text-decoration: none;
}
.p-departments__nav-link:visited, .p-departments__nav-link:hover, .p-departments__nav-link:active, .p-departments__nav-link:focus {
  color: #2c2c2c;
  text-decoration: none;
}
.p-departments__nav-link:visited, .p-departments__nav-link:hover, .p-departments__nav-link:active {
  text-decoration: none;
}
.p-departments__nav-link {
  display: inline-block;
  padding: 8px 20px;
  background: #ffffff;
  border: 1px solid rgba(44, 44, 44, 0.2);
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-departments__nav-link:hover {
  background: rgba(33, 66, 135, 0.1);
  border-color: #214287;
  color: #214287;
}
@media screen and (max-width: 768px) {
  .p-departments__nav-link {
    padding: 6px 16px;
  }
}
.p-departments {
  /*--------------------- 
    部門セクション
  -----------------------*/
}
.p-departments__section {
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-departments__section {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
}
.p-departments {
  /*--------------------- 
    セクションヘッダー（タイトルとリード文：1カラム）
  -----------------------*/
}
.p-departments__section-header {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-departments__section-header {
    margin-bottom: 30px;
  }
}
.p-departments__section-title {
  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-departments__section-title {
    font-size: 28px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-departments__section-title {
    font-size: calc(0.8333333333vw + 21.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-departments__section-title {
    font-size: 24px;
  }
}
.p-departments__section-title {
  letter-spacing: 0.1em;
  margin: 0 0 30px 0;
  color: #2c2c2c;
}
.p-departments__section-description p {
  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-departments__section-description p {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-departments__section-description p {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-departments__section-description p {
    font-size: 18px;
  }
}
.p-departments__section-description p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 0 0 20px 0;
}
.p-departments__section-description p:last-child {
  margin-bottom: 0;
}
.p-departments__section-lead {
  font-style: normal;
  font-weight: 700;
  font-size: calc(20 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-departments__section-lead {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-departments__section-lead {
    font-size: calc(0.4166666667vw + 16.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-departments__section-lead {
    font-size: 18px;
  }
}
.p-departments__section-lead {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 0 0 20px 0;
}
.p-departments__section-lead strong {
  font-weight: 700;
}
.p-departments {
  /*--------------------- 
    セクションボディ（画像と担当業務：2カラム、画像30%、担当業務70%）
  -----------------------*/
}
.p-departments__section-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30% 40px 70%;
  grid-template-columns: 30% 70%;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 768px) {
  .p-departments__section-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.p-departments__section-image {
  width: 100%;
}
.p-departments__section-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  .p-departments__section-image img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-departments__section-tasks {
  margin: 0;
}
.p-departments__tasks-title {
  font-style: normal;
  font-weight: 700;
  font-size: calc(16 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-departments__tasks-title {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-departments__tasks-title {
    font-size: calc(0.4166666667vw + 12.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-departments__tasks-title {
    font-size: 14px;
  }
}
.p-departments__tasks-title {
  letter-spacing: 0.1em;
  margin: 0 0 20px 0;
  color: #2c2c2c;
}
.p-departments__tasks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.p-departments__tasks-item {
  font-style: normal;
  font-weight: 400;
  font-size: calc(16 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media (min-width: 800px) {
  .p-departments__tasks-item {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-departments__tasks-item {
    font-size: calc(0.4166666667vw + 12.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-departments__tasks-item {
    font-size: 14px;
  }
}
.p-departments__tasks-item {
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}
.p-departments__tasks-item::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #2c2c2c;
}