/* =========================
   common.css (clean merge)
   ========================= */

/* Google Fonts (from WP theme) */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/earlyaccess/sawarabimincho.css);

/* -------------------------
   Root variables
   ------------------------- */
:root {
  --main-color: #83bf73;
  --footer-color: #4d97c0;
  --hover-color: #0488cc;
  --dark-blue: #035985;
  --emp-color: #bd5252;
  --wh-color: #ffffff;
  --border-color: #57c2ff;

  /* ヘッダー全体の高さ（PC基準） */
  --top-height: 160px;
}

/* -------------------------
   Base / Reset-ish
   ------------------------- */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
               "游ゴシック", "Yu Gothic", "メイリオ", Meiryo,
               "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro",
               "ヒラギノ角ゴ Pro W3", sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
  font-size: 14px;
  background-repeat: no-repeat;
  overflow-x: hidden;

  /* 固定ヘッダー分の押し下げ（PC時） */
  padding-top: var(--top-height);
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
  opacity: .8;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Bootstrapコンテナ上書き：Lightning準拠
   PCでは横幅83%・max-width解除 */
.container {
  max-width: 1200px;
  width: 100%;
}

@media (min-width:1024px){
  .container {
    width: 83%;
    max-width: none;
  }
}

.container-fluid {
  padding: 0;
}

/* ===== hidden-xs / visible-xs 最終上書き ===== */


/* 小さい補助クラス */
.mb2  { margin-bottom: 20px !important; }
.nt5  { margin-top: 50px; }
.m20  { margin-top: 20px !important; margin-bottom: 20px !important; }
.bg_gray { background-color: #f5f5f5; }
.sub-color { color: var(--hover-color); }
.wh-color  { color: var(--wh-color); }

/* -------------------------
   HEADER (共通／固定)
   WordPressの構造を踏襲
   - PCは2段構成で高さ160px相当
   - スクロール縮小なし（常に大きいまま）
   ------------------------- */

.siteHeader {
  background: #fff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 0 8px rgba(0,0,0,0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  font-size: 14px;
  line-height: 1.4;
  border: none;
  margin-bottom: 0;
}

.siteHeader.navbar {
  font-family: 'Noto Sans Japanese', sans-serif;
  /* ヘッダーの目安高さ。160pxぶんを body が押し下げる */
  height: var(--top-height);
  padding: 0;
  border: none;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  margin-bottom: 0;
  min-height: 46px;
}

.navbar-fixed-top {
  top: 0;
  right: 0;
  left: 0;
  position: fixed;
  border-width: 0 0 1px;
  border-radius: 0;
  z-index: 1030;
}

/* ヘッダー内部全体ラッパ */
.siteHeadContainer {
  height: 100%;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width:1024px){
  .siteHeadContainer.container {
    width: 83%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}

/* ====== 上段（ロゴ・社名・電話・問合せボタンなど） ====== */

.navbar-header {

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
height:65px;
  padding: 0;
  margin-bottom: 10px;
  width: 100%;
  font-size: 2rem;
}
.navbar-header:before { content: none; }

/* 左側：ロゴ＋会社名 */
.nav-bar-logo {
  display: flex;
  align-items: flex-start;
  text-align: left;
  width:50%;
}
.nav-bar-logo img {
  width: 250px;
}
.navbar-brand.siteHeader_logo {
  padding: 0 0 0 10px;
  margin: 0;
  line-height: 1.4;
  font-size: 1.2rem; /* rem=16px => 約19px */
  font-weight: bold;
  white-space: nowrap;
  color: #000;
}
.navbar-brand.siteHeader_logo a {
  color: #000;
  text-decoration: none;
}

/* 右側：受付時間・TEL・青ボタン */
.nav-bar-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: right;
  gap: 10px 20px;
  max-width: 60%;
  color: #333;
}

/* 受付時間＋TEL */
.navbar-phone {
  text-align: right;
  font-size: 14px;
  line-height: 1.4;
  margin: 0 15px 0 0;
  color: #333;
  white-space: nowrap;
}
.navbar-phone .textwidget,
.navbar-phone .hours {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}
.navbar-phone .phone,
.tel-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 1.2;
  margin-top: 4px;
  white-space: nowrap;
  font-weight: 700;
  color: #333;
}
.navbar-phone .phone i,
.tel-icon {
  background: #333;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 2px;
  margin-right: 6px;
}
.navbar-phone .phone {
  font-size: 28px;
}
.tel-number {
  font-weight: 700;
  font-size: 28px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}
.tel-number:hover {
  color: #000;
  text-decoration: none;
}

/* 青い「メールでのお問合せ」ボタン */
.navbar-button,
.mail-block {
  align-self: flex-start;
}
.navbar-button img {
  max-width: 293px;
  max-height: 64px;
  height: auto;
  display: block;
}
.mail-btn {
  display: flex;
  align-items: center;
  background: linear-gradient(#0051a9,#003b86);
  color: #fff;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.mail-btn-icon {
  font-size: 28px;
  margin-right: 10px;
  line-height: 1;
}
.mail-btn-text {
  white-space: nowrap;
}
.mail-btn:hover {
  color: #fff;
  text-decoration: none;
}

/* 個人情報保護方針リンク（ヘッダー右下に1行で出てくるエリア） */
.nav-bar-pp,
.policy-link {
  flex-basis: 100%;
  width: 100%;
  text-align: right;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  color: #333;
}
.nav-bar-pp a,
.policy-link a {
  color: #333;
  text-decoration: none;
  font-weight: 400;
}
.nav-bar-pp a:hover,
.policy-link a:hover {
  color: #337ab7;
  text-decoration: underline;
}

/* ====== 下段（グローバルナビ） ====== */

.global-nav-row {
  width: 100%;
  margin-top: 15px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* WordPressの <ul id="menu-top_nav" class="menu"> と
   静的版の <ul class="menu main-nav"> を揃える */
#menu-top_nav.menu,
.main-nav,
ul.menu {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #222;
  display: table;
  white-space: nowrap;
  width: auto;
}

#menu-top_nav.menu > li,
.main-nav > li,
ul.menu > li {
  display: table-cell;
  min-width: 50px;
  position: relative;
  padding: 0 24px;
  color: #222;
  vertical-align: middle;
  white-space: nowrap;
}

/* 罫線 | の再現（PC表示） */
#menu-top_nav.menu > li:not(:first-child):after,
.main-nav > li:not(:first-child):after,
ul.menu > li:not(:first-child):after {
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:20px;
  background:#cfcfcf;
}

#menu-top_nav.menu > li > a,
.main-nav > li > a,
ul.menu > li > a {
  display: inline-block;
  padding: 10px 0;
  text-decoration: none;
  font-weight: bold;
  color: #000;
  line-height: 1.4;
}
#menu-top_nav.menu > li > a:hover,
.main-nav > li > a:hover,
ul.menu > li > a:hover {
  color: var(--hover-color);
  border-bottom: 1px solid var(--hover-color);
  text-decoration: none;
}

/* 現在ページ強調（色を変えずに下線もそのまま無し） */
#menu-top_nav.menu li.current-menu-item > a,
#menu-top_nav.menu li.current_page_item > a,
.main-nav li.current-menu-item > a,
.main-nav li.current_page_item > a,
ul.menu li.current-menu-item > a,
ul.menu li.current_page_item > a {
  color: initial;
  text-decoration: none;
  border-bottom: none;
}

/* -------------------------
   RESPONSIVE HEADER tweaks
   ------------------------- */

@media (max-width:991px){
  .tel-number {
    font-size: 22px;
  }
  .navbar-phone .phone {
    font-size: 22px;
  }
  .mail-btn {
    font-size: 16px;
    padding: 10px 15px;
  }
  .mail-btn-icon {
    font-size: 22px;
    margin-right: 8px;
  }
}

@media (max-width:767px){
  /* ヘッダー縦詰め（スマホではヘッダーを50px固定に近い見え方に） */
  .siteHeader.navbar {
    height: 50px;
    padding: 5px 0;
  }

  /* スマホ時、bodyの押し下げ量も合わせて小さくする */
  body {
    padding-top: 50px;
  }

  /* ロゴ行は縦スタック */
  .navbar-header {
    flex-wrap: wrap;
    min-height: auto;
    margin-bottom: 0;
    height: 65px;
  }

  .navbar-brand.siteHeader_logo {
    font-size: 1rem;
    line-height: 1.3;
    margin-left: 10px;
    padding-left: 0;
    white-space: normal;
  }

  

  .navbar-phone {
    margin: 10px 0 0 0;
    text-align: left;
  }
  .navbar-phone .phone,
  .tel-row {
    justify-content: flex-start;
  }

  .tel-number,
  .navbar-phone .phone {
    font-size: 20px;
  }

  .mail-btn {
    font-size: 16px;
    padding: 8px 12px;
  }
  .mail-btn-icon {
    font-size: 20px;
    margin-right: 8px;
  }

  .nav-bar-pp,
  .policy-link {
    text-align: left;
    font-size: 12px;
    margin-top: 5px;
  }

  /* グローバルナビは横スクロール可能に */
  .global-nav-row {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  #menu-top_nav.menu,
  .main-nav,
  ul.menu {
    font-size: 16px;
    display: inline-block;
    white-space: nowrap;
  }

  #menu-top_nav.menu > li,
  .main-nav > li,
  ul.menu > li {
    display: inline-block;
    padding: 0 12px;
  }

  /* スマホの区切り線は位置を少し内側に */
  #menu-top_nav.menu > li:not(:first-child):after,
  .main-nav > li:not(:first-child):after,
  ul.menu > li:not(:first-child):after {
    left: -6px;
  }
}

/* -------------------------
   下層ページ ヒーロー帯（.header-img）
   ------------------------- */

.header-img {
  /* 各下層ページで個別に background-image を当てる */
  background-size: 100%;
  background-repeat: no-repeat;
  min-height: 375px;
  position: relative;

/*
  margin-top: var(--top-height) !important;*/
}

@media (max-width:767px){
  .header-img {
    /* スマホではヘッダーが50pxなので上マージンを合わせる */
    margin-top: 50px !important;
    min-height: 150px;
    background-size: cover;
    background-position: center;
  }
}

.header-img h1 {
  font-family: 'Noto Serif','Sawarabi Mincho',serif;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 2rem; /* = 32px基準 (html 16px * 2) */
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 100;
  width: 100%;
}
.header-img h1 span {
  font-size: 1vw;
  line-height: 1;
}
@media (max-width:767px){
  .header-img h1 {
    font-size: 20px;
  }
  .header-img h1 span {
    font-size: 12px;
  }
}

/* aboutページ用ビジュアル */
#about .header-img {
  background-image: url("images/about_sayto_02.jpg");
}

/* -------------------------
   トップページ用 HERO スライダー
   ------------------------- */

#top__fullcarousel {
  margin-top: 0 !important;
}
#top__fullcarousel:first-child {
  background-color: #000;
}
.carousel {
  border-bottom: none;
}
.carousel-inner {
  /* WordPressではスライダーがヘッダーの下に来ていたので
     PC時はヘッダー分の余白が必要だった。
     固定ヘッダー + body padding-topで既に押し下げ済みなので0でOK */
  margin-top: 0;
}
.carousel-control.left,
.carousel-control.right {
  background-image: none;
}
.carousel-indicators li {
  background-color: #000;
}
#top__fullcarousel .carousel-inner .item img.slide-item-img {
  width: 100%;
  height: auto;
  display: block;
}

/* スライド内のボタン */
.btn.btn-ghost,
.slide .btn-ghost {
  display: inline-block;
  color: #ffffff;
  background-color: red; /* fallback */
  background-image: url("images/btn_contact_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 63px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  padding: 1rem 4rem;
  font-weight: 700;
  text-shadow: none;
  border: none;
  box-shadow: none;
}
@media (max-width:480px){
  .btn.btn-ghost,
  .slide .btn-ghost {
    background-size: contain;
    height: 30px;
    font-size: .8rem;
    padding: .4em 2em;
  }
}

/* スライド上のテキストブロック配置 */
.mini-content-1,
.mini-content-2,
.mini-content-3,
.mini-content-4 {
  position: absolute;
  top:77%;
}
.mini-content-2 { left:40%; }
.mini-content-3 { left:53%; }
@media (max-width:480px){
  .mini-content-1,
  .mini-content-2,
  .mini-content-3 {
    text-align: center !important;
    left:50%;
    top:80%;
    transform: translate(-50%, -50%);
  }
}

/* -------------------------
   TOP各セクション
   ------------------------- */

.section {
  padding: 60px 0;
}

.siteContent {
  background: #fff;
  color: #333;
  padding: 0;
}

#top {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", "Yu Gothic", "メイリオ", sans-serif;
}
#top p {
  font-weight: bold;
  margin: 0;
}

/* 汎用トップセクション */
.top-section {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  margin: 0 auto;
  line-height: 0;
}
.top-section img {
  margin: 0 auto;
  width: 100%;
}

/* 見出し (STRONG POINT / BUSINESS FIELD etc.) */
.top-section h2 {
  position: absolute;
  top: 4.5vw;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
  width: auto;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}
.top-section h2 .sub-color {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 3px;
  color: var(--hover-color);
}
@media (max-width:480px){
  .top-section h2 {
    font-size: 2vw;
    top: 35px;
    position: absolute;
  }
}

/* 各エリア固有 */
.top-section.business {
  background-image: url("images/business_bg.png");
  padding-top: 0;
}
.top-section.business .title {
  padding-top: 50px;
}
.top-section.business h2 {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  color: #ffffff;
  text-align: center;
  font-size: 5vw;
  padding-bottom: 50px;
}

.top-section.point {
  padding-top: 0;
}

.top-section.about {
  background-image: url("images/sayto_bg_12.jpg");
  background-size: cover;
  padding: 40px 0;
}
.top-section.about img {
  width: 40%;
}
.top-section.about .container {
  display: flex;
  align-items: center;
}
.top-section.about .text {
  padding-left: 45px;
  width: 50%;
  font-size: 2rem;
  line-height: 2;
  color: #ffffff;
}
@media (max-width:480px){
  .top-section.about {
    background-image: none;
    padding: 0;
  }
  .top-section.about img {
    width:100%;
  }
  .top-section.about .text {
    line-height:2;
    color: initial;
    width:100%;
    padding:30px 0;
    font-size:1rem;
  }
}

.top-section.flow {
  background-image: url("images/flow_bg.png");
  background-size: contain;
  padding-bottom: 160px;
}
.top-section.flow .contents {
  padding-top: 175px;
}
@media (max-width:480px){
  .top-section.flow {
    background-image: none;
    padding-bottom: 10px;
  }
  .top-section.flow .contents {
    padding: 50px 0;
  }
}

/* BUSINESS FIELD カード群 */
.pt-cv-wrapper img {
  margin: 0 auto;
}
.pt-cv-wrapper .pt-cv-view .pt-cv-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pt-cv-content-item {
  text-align: center;
  margin-bottom: 80px;
}
.pt-cv-ifield {
  background-color: var(--hover-color);
}
.pt-cv-ifield img.pt-cv-thumbnail {
  width: 100%;
  height: auto;
  border: 0;
  display: block;
}
.pt-cv-title {
  text-align: center;
  font-size: 1.5rem;
  color: #ffffff;
  padding: 20px 20px 30px 20px;
  font-weight: 700;
  margin-top: 10px;
}
.pt-cv-title a {
  color: #ffffff;
  text-decoration: none;
}
.pt-cv-title a:hover {
  text-decoration: underline;
}
@media (max-width:480px){
  .pt-cv-title {
    font-size: 3.5vw;
    padding: 5px 5px 0;
    min-height: 35px;
  }
  .pt-cv-content-item {
    margin-bottom: 30px !important;
  }
}

/* スクロールアニメ用の初期状態クラス */
.slide-left,
.slide-right,
.slide-bottom {
  opacity: 0;
  transition: all 1s ease;
  position: relative;
}
.slide-left  { right: 50px; }
.slide-right { left: 50px; }
.slide-bottom{ top: 50px; }

.is-visible {
  opacity: 1 !important;
  right: 0 !important;
  left: 0 !important;
  top: 0 !important;
  visibility: visible !important;
}

/* -------------------------
   FOOTER
   ------------------------- */

.siteFooter {
  background-image: url("images/footer.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff;
  border-top: none;
  position: relative;
  width: 100%;
  display: block;
  padding-bottom: calc(100% * 970 / 1920); /* 画像アスペクト比で高さを出す */
  font-size: 13px;
}
.siteFooter .upperSection {
  margin-bottom: 50px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0);
  width: 100%;
  background: rgba(10,10,28,.85);
  padding-top: 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.siteFooter .upperSection .logo {
  max-height: 40px;
  margin: 20px auto;
  display: block;
}

/* フッターメニュー */
.footer-menu {
  display: table;
  margin: 0 auto;
  padding: 0;
  width: 85%;
  text-align: center;
}
.footer-menu li {
  display: table-cell;
  min-width: 50px;
  position: relative;
}
.footer-menu li a {
  color: #fff;
  border-bottom: none;
  box-shadow: none;
  line-height: 1.5;
  font-size: 1rem;
  letter-spacing: 2px;
  text-decoration: none;
}
.footer-menu li a:hover {
  color: var(--hover-color);
  border-bottom: 1px solid var(--hover-color);
  opacity: 1;
  text-decoration: none;
}

/* コピーライト帯 */
.copySection {
  width: 100%;
  text-align: center;
  background-color: #010123;
  padding: 20px;
  color: var(--hover-color);
  height: 60px;
  position: absolute;
  bottom: 0;
}

/* スマホではフッターメイン部分を畳む */
@media (max-width:480px){
  .siteFooter {
    padding-bottom: 0;
    background-size: contain;
    height: auto;
  }
  .siteFooter .upperSection {
    display: none;
  }
  .copySection {
    position: relative;
  }
}

/* -------------------------
   モバイルナビ関連（必要あれば使用）
   ------------------------- */

.vk-mobile-nav-menu-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #337ab7;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  z-index: 2000;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.vk-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  color: #fff;
  padding-top: 80px;
  z-index: 1999;
  text-align: center;
}
.vk-mobile-nav.active {
  display: block;
}
.vk-mobile-nav .global-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vk-mobile-nav .global-nav ul li {
  margin-bottom: 20px;
}
.vk-mobile-nav .global-nav ul li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
.vk-mobile-nav .global-nav ul li a:hover {
  text-decoration: underline;
}
@media (max-width:767px){
  .vk-mobile-nav-menu-btn {
    font-size: 15px;
  }
}

/* ===== ヘッダー最終レイアウト調整（B案 1行固定） ===== */

/* 上段コンテナ：ロゴ側と連絡先側を左右に分ける */
.navbar-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between; 
  flex-wrap: nowrap;              
  width: 100%;
  margin-bottom: 10px;
  padding: 0;
  font-size: 2rem;
}

/* 左ブロック（ロゴ＋社名） */

.navbar-brand.siteHeader_logo {
  margin-left: 20px;
  padding: 0;
  line-height: 1.3;
  font-size: 32px;
  font-weight: 700;
  white-space: nowrap;      /* 「株式会社セイトー社」を折り返さない */
  color: #222;
}
.navbar-brand.siteHeader_logo a {
  color: #222;
  text-decoration: none;
}

/* 右ブロック（受付時間・TEL・メールボタン） */
.nav-bar-contact {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;        /* ←これが重要。右側の中も折り返さない */
  justify-content: flex-end;
  text-align: left;         /* 右ブロック内は横1列なので左揃えでOK */
  gap: 12px 16px;           /* 要素間のすき間 */
  width: 50%;           /* 左ロゴが長い場合はこれで右側を少し抑える */
  flex-shrink: 1;           /* 右側は少し縮んでもいい */
}

/* 電話・受付時間などのまとまり */
.navbar-phone {
  line-height: 1.4;
  font-size: 14px;
  color: #000;
  margin: 0;
}
.navbar-phone .textwidget {
  color: #000;
  font-size: 14px;
  line-height: 1.4;
}

/* 受付時間（"受付時間 平日9：00～17：00"） */
.navbar-phone .hours-inline {
  font-size: 12px;
  line-height: 1.4;
  color: #000;
  white-space: nowrap;
}

/* TEL 部分 */
.navbar-phone .phone-block {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  font-size: 20px;
}
.navbar-phone .phone-block i {
  background: #333;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 2px;
  margin-right: 6px;
}
.navbar-phone .phone-block a {
  color: #000;
  text-decoration: none;
}

/* メールボタン */
.navbar-button {
  flex-shrink: 0; /* ボタンは潰さない */
}
.navbar-button img {
  display: block;
  height: 40px;        /* だいたい元WPヘッダーの青ボタン高さに合わせる */
  width: auto;
  max-width: none;     /* 293pxの制限を外す。縮ませたい場合はmax-width入れて調整可 */
}

/* 「＞ 個人情報保護方針」リンク行 */
.nav-bar-pp {
  width: 100%;
  text-align: right;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  color: #000;
}
.nav-bar-pp a {
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}
.nav-bar-pp a:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

/* ナビ行（グローバルメニュー）の位置は今のままでOK */

/* ===== hidden-xs / visible-xs 最終上書き ===== */


/* モバイルサイズ（～767px）は visible-xs = 表示 */
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }

}
/* materials 下層ヘッダー帯 */
#materials .header-img {
  background-image: url("assets/images/material-sales_sayto_02.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  min-height: 375px;
  position: relative;
  margin-top: var(--top-height) !important;
}


