/* 画面幅768px以上では左側固定のサイドバー表示 */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 10em;
  height: 100vh;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0px;
  z-index: 100;
  transition: transform 0.3s ease-in-out;
}

.sidebar .logo {
  font-size: 2rem;
  color: black;
  margin-bottom: 40px;
  font-weight: bold;
}

.sidebar .nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px; /* 少し狭くする */
  width: 90%;
}

.sidebar .nav-links li {
  width: 100%;
  text-align: center;
  transition: background-color 0.3s ease;
}


.sidebar .nav-links a {
  display: block;
  width: 100%;
  padding: 0.8em 0;
  text-decoration: none;
  color: orange;
  font-size: 0.95rem;
  font-weight: bold;
  text-align: center;
  background-color: transparent;
  border-radius: 0;  /* ← 四角ボタンにする */
  transition: background-color 0.3s, color 0.3s;
}

.sidebar .nav-links li:hover,
.sidebar .nav-links a:hover {
  background-color: black; /* 背景色変化 */
  color: white;
}

.hamburger {
  display: none;
}

.footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 1em;
  position: relative;  /* ← これ追加！ */
  z-index: 10;         /* ← これ追加！ */
}




#header-logo {
  display: none;
}

#sidebar-logo {
  display: block;
  text-align: center;
  padding: 0em;
}

#sidebar-logo .logo {
  height: 60px;
  max-width: 100%;
}

@media (min-width: 769px) {
  .sidebar {
    transform: none !important;
  }

  .sidebar.active {
    transform: none !important;
  }

  body {
    padding-left: 10em;
  }
}

/* 通常の .headline（デスクトップ用） */

.headline {
  display: block !important;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  animation: typewriter 3s steps(30) 1 normal both;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid black;
  position: relative;
  z-index: 1;
}

.headline-mobile {
  display: none !important;
}







@media (max-width: 768px) {
  #header-logo {
    display: block;


  }

  #header-logo .logo {
    height: 40px;
    align-items: center;
  }

  #sidebar-logo {
    display: none;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: white;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .hero,
  main {
    padding-top: 60px; /* ← 必要に応じて調整。headerの高さに合わせる */
  }

  .sidebar {
    top: 60px;
    height: calc(100vh - 60px);
  }



  /* ← これだけ残す（左寄せ＋小さく表示） */
  .hamburger {
    position: absolute;          /* header基準で配置 */
    left: 10px;                  /* 好みで 8〜16px */
    top: 38%;
    transform: translateY(-50%) scale(0.70); /* 小さく＆縦中央 */
    transform-origin: left center;
    width: 50px;                 /* btn07のサイズ基準 */
    height: 44px;
    cursor: pointer;
    z-index: 9999;
  }
  #hamburger-btn {
    position: absolute !important;      /* header内での絶対配置 */
    left: 10px !important;              /* 左端に寄せる */
    right: auto !important;             /* 右寄せを打ち消す保険 */
    top: 50% !important;
    transform: translateY(-50%) scale(0.70) !important;  /* 小さく＆縦中央 */
    transform-origin: left center !important;
    width: 50px;                         /* btn07のサイズ基準 */
    height: 44px;
    z-index: 9999;
  }

  /* ✓ 追加：初回ロードだけアニメを止める用 */
  #hamburger-btn.hamburger--no-boot-anim:not(.active) span {
    animation: none !important;
  }



  .hamburger i { display: none; } /* FAの≡は隠す（重複回避） */

  /* btn07のベース（線3本） */
  .btn-trigger { position: relative; width: 50px; height: 44px; }
  .btn-trigger, .btn-trigger span { display: inline-block; transition: all .5s; box-sizing: border-box; }
  .btn-trigger span {
    position: absolute; left: 0; width: 100%; height: 4px;
    background-color: #000;      /* ← ヘッダー背景が白なので黒に変更（元コードは #fff） */
    border-radius: 4px;
  }
  .btn-trigger span:nth-of-type(1){ top: 0; }
  .btn-trigger span:nth-of-type(2){ top: 20px; }
  .btn-trigger span:nth-of-type(3){ bottom: 0; }

  /* 初期状態の動き（線をスッと元位置へ） */
  #hamburger-btn span:nth-of-type(1){
    animation: btn07-bar01 .75s forwards;
  }
  #hamburger-btn span:nth-of-type(2){ transition: all .25s .25s; opacity: 1; }
  #hamburger-btn span:nth-of-type(3){
    animation: btn07-bar03 .75s forwards;
  }

  /* クリック後（.active付与時）＝ × に変形 */
  #hamburger-btn.active span:nth-of-type(1){
    animation: active-btn07-bar01 .75s forwards;
  }
  #hamburger-btn.active span:nth-of-type(2){ opacity: 0; }
  #hamburger-btn.active span:nth-of-type(3){
    animation: active-btn07-bar03 .75s forwards;
  }

  /* === keyframes（元コードをそのまま） === */
  @keyframes btn07-bar01{
    0%{ transform: translateY(20px) rotate(45deg); }
    50%{ transform: translateY(20px) rotate(0); }
    100%{ transform: translateY(0) rotate(0); }
  }
  @keyframes btn07-bar03{
    0%{ transform: translateY(-20px) rotate(-45deg); }
    50%{ transform: translateY(-20px) rotate(0); }
    100%{ transform: translateY(0) rotate(0); }
  }
  @keyframes active-btn07-bar01{
    0%{ transform: translateY(0) rotate(0); }
    50%{ transform: translateY(20px) rotate(0); }
    100%{ transform: translateY(20px) rotate(45deg); }
  }
  @keyframes active-btn07-bar03{
    0%{ transform: translateY(0) rotate(0); }
    50%{ transform: translateY(-20px) rotate(0); }
    100%{ transform: translateY(-20px) rotate(-45deg); }
  }

  .sidebar {
    position: fixed;
    top: 60px;
    height: calc(100vh - 60px);
    left: 0;
    width: 100%;
    padding-bottom: 0;                           /* 念のため余白ゼロ */
    height: auto;                                /* コンテンツの高さに合わせる */
    max-height: calc(100vh - 60px);              /* はみ出す時だけスクロール */
    overflow-y: auto;                            /* 長くなったら縦スクロール */
    background-color: rgba(255, 255, 255, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0em;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border: 0;
  }

  .sidebar .nav-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    gap: 0;           /* ← これを追加して上書き */

  }

  .sidebar .nav-links li {
    list-style: none;
    width: 100%;
    text-align: center;
  }

  .sidebar .nav-links a {
    display: block;
    width: 100%;
    padding: 0.5em 0;
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.3s;
    border-top: 1px solid black;
    

  }
  .sidebar .nav-links li:first-child a {
    border-top: none;              /* 先頭だけ線なし */
  }

  .sidebar .nav-links a:hover {
    background-color: rgba(254, 7, 7, 0.1);
    color: rgb(252, 230, 32);
  }

  .sidebar.active {
    transform: translateY(0);
  }

  body {
    padding-left: 0 !important;
  }
  
  .headline {
    display: none !important;
  }
  .headline-mobile {
    display: block !important;
    font-size: 2.8rem;
    color: white  !important;
    text-align: center;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    padding-bottom: 1em;
  }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.index-body{
  background-color: #F5F1ED;
}

body, html {
  height: 100%;
  font-family: 'Hiragino Sans';
  color: rgb(84, 84, 84);
  background-color:#F5F1ED;
}

body {
  padding-left: 10em;
}

#tsparticles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}


/* ヒーローセクション（トップ見出し部分）のスタイル */

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;

  background-image: url("images/21.jpg"); /* ← ここを変更 */
  background-size: cover;    /* 全体に拡大して表示 */
  background-position: center; /* 中央寄せ */
  background-repeat: no-repeat;
  color: white;  /* テキストを白にすると見やすくなる */

}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.2); /* ← 黒透明度50% */
  z-index: 0;
}


/* メイン見出しのアニメーション付きスタイル */
.headline {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  animation: typewriter 3s steps(30) 1 normal both;  /* タイプライター風アニメ */
  white-space: nowrap;  /* 折り返し防止 */
  overflow: hidden;  /* テキストをはみ出させない */
  border-right: 3px solid black;  /* タイプライターのカーソル風線 */
  position: relative;
  z-index: 1;
}

/* タイプライターアニメーションの定義 */
@keyframes typewriter {
  from { width: 0ch; }
  to { width: 25ch; }  /* 文字数に応じて調整 */
}


/* サブタイトルのスタイル */
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.8;  /* やや薄く表示 */
  position: relative;
  z-index: 1;
}

/* CTA（Call to Action）ボタンのスタイル */
.cta-button {
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  background: linear-gradient(90deg, #0ff, #8a2be2);  /* グラデーション背景 */
  color: black;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.4s;
  position: relative;
  z-index: 1;
}

/* CTAボタンにホバー時のアニメーション効果 */
.cta-button:hover {
  box-shadow: 0 0 15px black;
  transform: scale(1.05);
}

/* サービス紹介セクションのスタイル */
.services {
  background-color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* セクションタイトルのスタイル */
.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: black;
}

/* サービスカード全体の並び方設定 */
.service-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;  /* 複数行に折り返し */
  gap: 30px;  /* カード間のスペース */
  cursor: pointer;

}



/* 個々のサービスカードのスタイル */
.card {
  background-color: white;
  padding: 30px;
  border-radius: 16px;
  width: 280px;
  transition: 0.4s ease;
  box-shadow: 0 0 9px #00000019;
  border: 3px solid white;
}
.card-image {
  width: 90%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 8px; /* お好みで */
}


/* サービスカードのホバー効果 */
.card:hover {
  transform: translateY(-10px) scale(1.02);  /* 浮き上がるような動き */
  box-shadow: 0 0 15px white;
  border: 1px solid white;
}

/* カード内タイトルのスタイル */
.card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: black;
}

/* カード内説明文のスタイル */
.card p {
  font-size: 0.95rem;
  color: black;
}





/* 外国人材採用 */


/* ステップバッジに動きを追加（未使用の可能性あり） */
.foreign-personnel .step-badge {
  transition: transform 0.3s ease, background-color 0.3s ease;
  position: relative;
  z-index: 1;
}

.foreign-personnel .step-badge:hover {
  transform: scale(1.15) rotate(10deg);
  background-color: white
}

/* ページ読み込み時にフェードインさせる効果 */
.foreign-personnel {
  animation: fadein 1s ease forwards;
}
.foreign-personnel .head1 {
  background-color: white;
  color: black;
  font-size: 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1em;
  position: relative;
  z-index: 1;
}

.foreign-personnel .head2 {
  color: black;
  font-size: 1.1rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1em;
  position: relative;
  z-index: 1;
}


.foreign-personnel .foreign-intro {
    text-align: center;
    padding-bottom:1em;
    gap: 5em;
    font-size: 2em;
    position: relative;
  z-index: 1;

}

/* フェードインアニメーションの定義 */
@keyframes fadein {
  to {
    opacity: 1;
  }
}

.foreign-personnel .foreign-flow{
  margin-left: 100px;
  margin-right: 100px;
  position: relative;
  z-index: 1;

}
.foreign-personnel .foreign-flow .section-subheading{
  margin-top: 20px;
  margin-bottom: 20px;

}


/* 外国人材ページにおける各ステップカードのスタイル */
.foreign-personnel .step-card {
  display: flex; /* 子要素を横並び（flexbox） */
  align-items: center; /* 垂直方向に中央揃え */
  background-color: white; /* ダークグレーの背景色 */
  border-radius: 10px; /* 角を丸める */
  margin-left: 30px;
  margin-right:30px;
  padding-top: 1em; /* 内側の余白を上下左右に */
  padding-bottom: 3em;
  padding-left: 3em;
  padding-right: 3em;
  margin-bottom: 2em; /* 各カードの下に余白 */
  box-shadow: 0 4px 12px rgba(79, 117, 21, 0.257); /* 軽めの影で浮かせる効果 */
  gap: 3em; /* 子要素間のスペース */
  transition: transform 0.3s; /* ホバー時の変化をスムーズに */

}

/* ホバー時にカードが少し浮き上がる演出 */
.foreign-personnel .step-card:hover {
  transform: translateY(-5px); /* 上に5px移動（ふわっと浮く） */
}

.foreign-personnel .step-card h4 {
  margin-bottom: 0.3em;
  font-size: 1.5em;
    text-decoration: underline;
  text-decoration-color: #b0db06b7;
  text-decoration-thickness: 2px;
}

.foreign-personnel .step-card h5 {
  margin-bottom: 0em;
  font-size: 2.2em;
}

.foreign-personnel .step-card p {
  font-size: 1.2em;
}






/* About Us */

.about-body .about-content {
  position: relative;
  z-index: 1;
  max-width:1000px;
  margin: 0 auto;
  padding: 1em 5vw;
  text-align: left;
}




.about-body .about-content h2 {
  font-size: 2em;
  font-family: 'Franklin Gothic Medium';
  padding-top: 2em;
  padding-bottom: 2em;
}


.about-body .about-intro p,
.about-body .about-founder p {
  line-height: 2;  /* 行間を2倍に設定（おすすめ） */
}

.about-body .about-founder h3 {
  margin-top: 100px;
  margin-bottom: 9px;
  text-align: center;
  font-size: 1.6em;
  
}

.about-body .about-values {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5vw;
}

.about-body .about-values .MVPS {
  font-size: 2em;
  font-family: 'Franklin Gothic Medium';
  color: #000;
  margin-top: 2em;
  margin-bottom: 0.4em;
  border-bottom: 1px solid rgba(154, 229, 42, 0.36);

}

.about-body .about-values li {
  margin-left: 10%;
  color: #00796b;
  margin-bottom: 1em;
    font-weight: bold;
}

.about-body .about-card {
  background: white;
  margin-bottom: 2em;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  line-height: 1.9;
  transition: transform 0.3s;
}

.about-card:hover {
  transform: translateY(-3px);
}

.section-heading {
  font-size: 2rem;
  color: #2e7d32;
  text-align: center;
  margin-bottom: 1em;
}

.about-body .section-subheading {
  font-size: 1.4rem;
  color: #00796b;
  margin-top: 1.5em;
}

.about-body .about-list {
  list-style: none;
  padding-left: 1em;
}

.about-body .about-list li::before {
  content: "✓ ";
  color: #2e7d32;
  font-weight: bold;
  margin-right: 0.5em;
}

.about-body .corporate-info table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2em;
  font-size: 0.95rem;
}

.about-body .corporate-info th,
.about-body .corporate-info td {
  padding: 1em;
  border: 1px solid #ccc;
  vertical-align: top;
}

.about-body .corporate-info th {
  background-color: #f5f5f5;
  text-align: left;
  width: 30%;
}

.about-body .corporate-info {
  background-color: #fff;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}




/* --- Specified Skills 専用スタイル --- */

.specified-body .specified-main {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1em 5vw;
  text-align: left;
}

.specified-body .specified-intro p {
  line-height: 2;
  margin-bottom: 1.5em;
}

.specified-body .specified-intro h2 {
  font-size: 2em;
  font-family: 'Franklin Gothic Medium';
  padding-top: 2em;
  padding-bottom: 1em;
  color: black;
}

.specified-body .specified-card {
  background: white;
  margin-bottom: 2em;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  line-height: 1.9;
  padding: 2em;
  transition: transform 0.3s;
}

.specified-body .specified-card:hover {
  transform: translateY(-3px);
}

.specified-body .specified-subheading {
  font-size: 1.4rem;
  color: #00796b;
  margin-bottom: 1em;
  border-left: 5px solid #aed581;
  padding-left: 0.6em;
}

.pdf-link {
  color: #00695c;
  font-weight: bold;
  text-decoration: underline;
}


.service-title{
  font-size: 3em;
  font-family: 'Franklin Gothic Medium';
  margin-left: 2em;

}



.div-frame {
    padding: 2em 5vw;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 0em;
  position: relative;  /* ← これ追加！ */
  z-index: 10;         /* ← これ追加！ */

}

/* ヒーローセクション（サービスページ用） */

.hero-service {
  height: 100vh;
  animation: shrinkHero 1.5s ease-out 0.5s forwards;
  background-image: url("images/04.JPG");
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-about {
  height: 100vh;
  animation: shrinkHero 1.5s ease-out 0.5s forwards;
  background-image: url("images/10.JPG");
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}


/* アニメーションの定義 */
@keyframes shrinkHero {
  0% {
    height: 100vh;
  }
  100% {
    height: 15vh;
  }
}


/* オーバーレイ追加（視認性向上） */
.hero-service::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* ← 黒透明度50% */

  z-index: 0;
}

.hero-about::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* ← 黒透明度50% */

  z-index: 0;
}
/* コンテンツ自体 */
.hero-content {
  z-index: 1;
  padding: 2em;
}

.hero-content .service-headline {
  font-size: 3rem;
  margin-bottom: 0.5em;
}

.hero-content .service-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.3em;
}

.section-subheading {
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 3em;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;

}
.section-subheading::after {
  content: "";
  display: block;
  max-width: 700px;          /* ← 下線の長さ（調整可能） */
  height: 3px;           /* ← 線の太さ */
  background-color: #c0ec7389;  /* ← 色を変更可能 */
  margin-left: -5px;       
  border-radius: 2px;
}

.div-frame p:last-child {
  margin-bottom: 0;
}

.service .service-intro {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1.3em;
  font-weight: 200;
}

.service .service-intro {
  line-height: 2em;
  font-weight: bold;

}

.service .administrative_scrivener {
  line-height: 2em;
  font-weight: bold;
  font-size: large;
  text-align: center;
  padding-top: 1em;
}




.service .specified-card, .service .foreign-intro {
  background-color: #f9f9f9;
  padding-top: 0.5em;
  padding-bottom: 1.5em;
  padding-left: 1.5em;
  padding-right: 1.5pm;
  margin-bottom: 2em;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.service-image-wrapper {
  width: 100%;
  margin-bottom: 2em;
}

.service-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px; /* 丸みをつけたい場合 */
}

.specified_skills {
  position: relative;  /* ← これ追加！ */
  z-index: 10;         /* ← これ追加！ */
}

.specified-info {
  display: flex;
  align-items: center;
  padding: 2em;
  max-width: 1000px;
  margin: 0 auto;
}

.service .to-do-list .list {
  padding-bottom: 1em;
}




.specified-info table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0em;
  font-size: 0.95rem;
}

.specified-info th,
.specified-info td {
  padding: 1em;
  border: 1px solid #ccc;
  vertical-align: top;
}

.specified-info th {
  background-color: rgb(255, 227, 174);
  text-align: left;
}

.specified-info td {
  background-color:whitesmoke;
}

.specified-country {
  margin-left: 2em;
}

.specified-country table{
  width: 100%;
}

.service-main .important-notice {
  color: red;
  font-style:italic;
}

.supporting-organization {
  position: relative;  /* ← これ追加！ */
  z-index: 10;         /* ← これ追加！ */
}
.supporting-organization .supporting-explain {
  line-height: 2em;
}

.supporting-organization .to-do-list {
  padding-top: 1.5em;
  padding-left: 2em;
}

.supporting-organization .to-do-list li{
  padding-left: 2em;
  font-size: small;
}

.recruit-flow {
  position: relative;  /* ← これ追加！ */
  z-index: 10;         /* ← これ追加！ */
}

.recruit-flow h4 {
  margin: 0;
  font-size: 1.2em;
  color: #555;
}

.recruit-flow h5 {
  margin-top: 0.5em;
  font-size: 1.5em;
  color: #222;
}

.recruit-flow p {
  margin-top: 0.5em;
  color: #444;
}

.step-card {
  margin: 1.5em 0;
  padding: 1.5em;
  background: #ffffff;
  border-left: 6px solid #4CAF50;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.hidden-step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.visible-step {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}




/*お問い合わせ*/


.contact-section {
  padding: 3em 1em;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  position: relative;
  z-index: 3;
}
.contact-section h2 {
  text-align: center;
  margin-bottom: 1em;
  font-size: 2em;
  color: #333;


}


.contact-section iframe {
  position: relative;
  z-index: 11;
}


.privacy-intro {
  position: relative;
  z-index: 11;
}

.privacy-content{
  position: relative;
  z-index: 11;
}

.div-privacy-intro-frame {
  padding-top: 2em;
  padding-bottom:0em;
  padding-left: 5vw;
  padding-right: 5vm;
  max-width: 1000px;
  margin: 0 auto;

}

.div-content-frame {
  padding-bottom:0em;
  padding-left: 5vw;
  padding-right: 5vm;
  max-width: 900px;
  margin: 0 auto;

}


.privacy-body{
  color: #000;
}

.privacy-body h1,
.privacy-body h2 {
  font-family: 'Noto Serif JP', serif;
}



.privacy-body h2 {
  margin-top: 1em;
  margin-bottom: 0.3em;
}

.privacy-intro{
 margin-left: -3em; 
 margin-right: -3em;
}

.privacy-body .privacy-content p{
  margin-left: 2em;
  margin-bottom: 0.1em;
}
.privacy-body .privacy-content ul{
  margin-left: 5em;
}