/* しっぽり明朝 */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&family=Murecho:wght@100..900&family=New+Tegomin&family=Shippori+Mincho&family=Yuji+Syuku&display=swap");
/* 代表挨拶の名前用文字 */
@import url("https://fonts.googleapis.com/css2?family=Yuji+Mai&display=swap");
/* ページ全体をゴシック体に　　 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/* ===============================
    ↓↓↓ HTML全体の設定 ↓↓↓
================================ */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

/* ページ全体を固定幅でラップ */
#wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}



body {
  font-family: "Noto Sans JP", sans-serif;
  color: #272727;
  background-color: #f1f7fa;
}

/* ---------------------------
----------  [ヘッダー] ---------
--------------------------- */
/* ヘッダー固定 */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 84px;
  background-color: #fff;
  z-index: 1000;
}

#company {
  scroll-margin-top: 150px;
}

.pcHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 100%;
}

/* ナビ */
.pcNav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  /* 改行させない */
  margin: 0;
  padding: 0;
}

.pcNav ul li a {
  display: block;
  white-space: nowrap;
  text-decoration: none;
  color: #191e42;
  font-size: 14px;
  transition: color 0.3s;
}

@media (max-width: 900px) {
  .pcNav ul li a {
    font-size: 12px;
  }
}

.pcNav ul li a:hover {
  color: #414da8;
}

/* ハンバーガーメニュー非表示 */
.nav {
  display: none;
}

/* ---------------------------
----------  [ヘッダー] ---------
--------------------------- */
.heroWrapper {
  margin-top: 50px;
  width: 100%;
  height: 25vw;
  background-image: url("../image/kotei.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* 文字を中央に */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 文字をセンターに */
.hero {
  text-align: center;
  margin: 100px 0;
}

/* 文字の装飾 */
.heroMain {
  color: #ffffffd8;
  font-size: 79px;
  margin: 10px 0 0 0;
  /* 文字を横に引き延ばす */
  transform: scaleX(1.1);
}

.heroSub {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-top: 0px;
}

/* ---------------------------
----------  [CONTACT] ---------
--------------------------- */
/* CONTACT全体 */
.CONTACT {
  background-color: #191e42;
  padding-top: 5%;
  color: #fff;
  text-align: center;
  width: 100%;
}

/* 見出し */
.CONTACThead {
  font-size: 40px;
  margin: 0;
  font-weight: 400;
}

/* お仕事のご依頼 */
.CONTACTsub {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 2;
  opacity: 0.9;
}

/* ボタン全体 */
.CONTACTbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

/* 電話 */
.CONTACTtelpc {
  background: #191e42;
  text-decoration: none;
  /* ← ここでリンクの下線を消す */
  display: inline-block;
}

.CONTACTtelsp {
  display: none;
}

/* お問い合わせ */
.CONTACTlinkFormBtnPc {
  background: #191e42;
  text-decoration: none;
  /* ← ここでリンクの下線を消す */
  display: inline-block;
}

.CONTACTlinkFormBtnSp {
  display: none;
}

/* 採用情報 */
.CONTACTlinkRecruitBtnPc {
  background: #191e42;
  text-decoration: none;
  /* ← ここでリンクの下線を消す */
  display: inline-block;
}

.CONTACTlinkRecruitBtnSp {
  display: none;
}

/* 縦に並べる */
.CONTACTlinks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer {
  background-color: #191e42;
  color: #fff;
  text-align: center;
}

/* ---------------------------
---  [プライバシーポリシー] ---
--------------------------- */
.privacyPolicy {
  margin: 0;
  padding-top: 50px;
  padding-bottom: 5px;
}

/* 文字色 */
.privacyPolicy a {
  color: #fff;
  /* ホバーをなめらかに */
  transition: color 0.3s;
}

/* ホバーしたときの色 */
.privacyPolicy a:hover {
  color: #9db7ff;
}

/* コピーライト */
.copyright {
  font-size: 12px;
  margin: 0;
  padding-bottom: 30px;
}

/* ---------------------------
---  [プライバシーポリシー] ---
--------------------------- */
/* ---------------------------
--------  [スマホ] --------
--------------------------- */
@media (max-width: 750px) {

  /* ---------------------------
----------  [ヘッダー] ---------
--------------------------- */
  /* ヘッダー固定 */
  header {
    height: 10vh;
  }

  /* PCナビ非表示 */
  .pcNav {
    display: none;
  }

  #company {
    scroll-margin-top: clamp(0px, 6.67vw, 50px);
  }

  /* ハンバーガー表示 */
  .nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  /* チェックボックス非表示 */
  .drawerHidden {
    display: none;
  }

  /* ---------------------------
  メニュー本体
--------------------------- */
  .navContent {
    position: fixed;
    top: 0;
    right: -280px;
    /* 初期は画面外 */
    width: 280px;
    height: 100vh;
    background: #191e42;
    transition: right 0.4s ease;
    z-index: 90;
    padding: 80px 24px;
    box-sizing: border-box;
  }

  /* チェックで右からスライドイン */
  #drawerInput:checked~.navContent {
    right: 0;
  }

  /* ---------------------------
  メニュー中身
--------------------------- */
  .navList {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .navItem {
    margin-bottom: 24px;
  }

  .navItem a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 0.05em;
  }

  /* ---------------------------
  ハンバーガーアイコン
--------------------------- */
  .drawerOpen {
    position: fixed;
    top: 0;
    right: 0;
    width: 10vh;
    height: 10vh;
    cursor: pointer;
    z-index: 100;
    background: #191e42;
  }

  .drawerOpen span {
    position: absolute;
    top: 45%;
    right: 50%;
    width: 40px;
    height: 5px;
    background: #fff;
    border-radius: 999px;
    transform: translate(50%, -50%);
    transition: transform 0.4s ease;
  }

  .drawerOpen span::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 5px;
    background: #fff;
    border-radius: 999px;
    top: 10px;
    transition:
      transform 0.4s ease,
      top 0.4s ease;
  }

  /* X に変形 */
  #drawerInput:checked+.drawerOpen span {
    transform: translate(50%, -50%) rotate(45deg);
  }

  #drawerInput:checked+.drawerOpen span::before {
    top: 0;
    transform: rotate(-90deg);
  }

  /* ---------------------------
----------  [ヘッダー] ---------
--------------------------- */
  /* ---------------------------
----------  [CONTACT] ---------
--------------------------- */
  /* CONTACT全体 */
  .CONTACT {
    background-color: #191e42;
    padding-top: 5%;
    color: #fff;
    text-align: center;
    width: 100%;
  }

  .CONTACTwrap {
    margin: 0 5%;
  }

  /* 見出し */
  .CONTACThead {
    font-size: 10vw;
    margin: 0;
    font-weight: 400;
  }

  /* お仕事のご依頼 */
  .CONTACTsub {
    font-size: 4.2vw;
    margin: 2vh 3%;
    line-height: 2;
    opacity: 0.9;
  }

  /* ボタン全体 */
  .CONTACTbtn {
    display: flex;
    /* 縦にする */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7vw 0;
    gap: 3vh;
    width: 100%;
    height: auto;
  }

  /* 全てのボタン画像をレスポンシブに */
  .CONTACTbtn img,
  .CONTACTlinks img {
    width: 100%;
    /* 親リンクに合わせて幅を調整 */
    height: auto;
    /* 縦横比を保持 */
    display: block;
  }

  /* ----------  [ボタン達] --------- */
  /* 電話 */
  .CONTACTtelpc {
    display: none;
  }

  .CONTACTtelsp {
    background: #191e42;
    text-decoration: none;
    /* ← ここでリンクの下線を消す */
    display: inline-block;
  }

  /* お問い合わせ */
  .CONTACTlinkFormBtnPc {
    display: none;
  }

  .CONTACTlinkFormBtnSp {
    background: #191e42;
    text-decoration: none;
    /* ← ここでリンクの下線を消す */
    display: inline-block;
  }

  /* 採用情報 */
  .CONTACTlinkRecruitBtnPc {
    display: none;
  }

  .CONTACTlinkRecruitBtnSp {
    background: #191e42;
    text-decoration: none;
    /* ← ここでリンクの下線を消す */
    display: inline-block;
  }

  /* 縦に並べる */
  .CONTACTlinks {
    display: flex;
    flex-direction: column;
    gap: 3vh;
  }

  /* ---------------------------
---  [プライバシーポリシー] ---
--------------------------- */
  footer {
    padding: 3vh 0;
  }

  .privacyPolicy {
    font-size: 3vw;
    margin: 0;
    padding-top: 0px;
    padding-bottom: 5px;
  }

  /* 文字色 */
  .privacyPolicy a {
    color: #fff;
    /* ホバーをなめらかに */
    transition: color 0.3s;
  }

  /* ホバーしたときの色 */
  .privacyPolicy a:hover {
    color: #9db7ff;
  }

  /* コピーライト */
  .copyright {
    font-size: 3vw;
    margin: 0;
    padding-bottom: 0px;
  }

  /* ---------------------------
---  [プライバシーポリシー] ---
--------------------------- */

  /* ↓---------- ヒーロー（仮） ----------↓ */
  .heroWrapper {
    margin-top: 10vh;
    width: 100%;
    height: 20%;
    background-image: url("../image/PRIVACYhero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* 文字を中央に */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* 文字をセンターに */
  .hero {
    display: none;
  }

  /* 文字の装飾 */
  .heroMain {
    color: #ffffffd8;
    font-size: 48px;
    margin: 20px 0;
    /* 文字を横に引き延ばす */
    transform: scaleX(1.1);
  }

  .heroSub {
    color: #fff;
    font-size: 18px;
  }
}

/* ↑---------- ヒーロー ----------↑ */

/* ===============================
    ↑↑↑ HTML全体の設定 ↑↑↑
================================ */


/* ===============================
   ↓↓　　mメインここから　　↓↓
================================ */

/* 全体幅・中央寄せ */
.privacy {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  color: #1e2245;
}

/* メインタイトル */
.privacy-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* 冒頭文 */
.privacy-lead {
  line-height: 1.9;
  margin-bottom: 60px;
}

/* 各セクション */
.privacy-section {
  margin-bottom: 60px;
}

/* 見出し（左に縦線） */
.privacy-section h2 {
  font-size: 20px;
  font-weight: bold;
  padding-left: 15px;
  padding-top: 10px;
  /* ← 上を伸ばす／縮める */
  padding-bottom: 10px;
  /* ← 下を伸ばす／縮める */
  border-left: 4px solid #1e2245;
  margin-bottom: 20px;
}

/* 本文 */
.privacy-section p {
  line-height: 1.9;
}

/* 箇条書き */
.privacy-section ul {
  margin-top: 15px;
  padding-left: 20px;
}

.privacy-section li {
  line-height: 1.8;
}