@charset "utf-8";

/* ---------------------------------------
CSS変数（カスタムプロパティ）の定義
--------------------------------------- */
:root {
  --color-primary: #008741;
  --color-primary-alt: #00853F;
  --color-primary-hover: #008943;
  --color-text-main: #444444;
  --color-text-sub: #222222;
  --color-bg-white: #ffffff;
  --color-bg-light: #eeeeee;
  --color-border: #cccccc;
}

/* ---------------------------------------
reset
--------------------------------------- */
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, input, select, textarea, span, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 15px;
  vertical-align: baseline;
  text-align: left;
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  -webkit-box-sizing: border-box;
         -moz-box-sizing: border-box;
           -o-box-sizing: border-box;
          -ms-box-sizing: border-box;
              box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: border-box;
}
body {
  line-height: 2.0;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  color: var(--color-text-main);
  position: relative;
  background-color: var(--color-bg-white);
}


ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: var(--color-text-sub);
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
}
a:active {
  text-decoration: none;
}
/* target="_blank" がついているリンクの直後に外部アイコンを自動付与 */
/* 1. 基本：すべての target="_blank" にアイコンをつける */
a[target="_blank"]::after {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: contain;
  font-family: "Font Awesome 6 Free"; /* バージョンに合わせて変更 */
  font-weight: 900;
  content: "\f35d";}

/* 2. 例外：nav_gws の中にあるリンクは強制的につけない（打ち消す） */
li.nav_gws > a[target="_blank"]::after {
  content: none !important;
  display: none !important;
  background-image: none !important;
}
li.maker-img > a[target="_blank"]::after {
  content: none !important;
  display: none !important;
  background-image: none !important;
}
div.f_banner > a[target="_blank"]::after {
  content: none !important;
  display: none !important;
  background-image: none !important;
}
a[target="_blank"].map::after {
  content: none !important;
  display: none !important;
  background-image: none !important;
}

#bottom-right-banner > a[target="_blank"]::after {
  content: none !important;
  display: none !important;
  background-image: none !important;
}

img {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}
p {
  margin-bottom: 15px;
  line-height: 2;
  letter-spacing: 0.2em;
}
dd {
  line-height: 2;
  letter-spacing: 0.2em;
}
/* ---------------------------------------
fade
--------------------------------------- */
#js_fade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-white);
    background-image: url(../images2/common/loading.gif);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    z-index: 10000000;
}
/* 画面外にいる状態 */
.fadein {
    opacity: 0.1;
    transform: translate(0, 50px);
    transition: all 500ms;
}
/* 画面内に入った状態 */
.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}
/* 2つ目の要素に200msのdelayをかける */
#effect2 > div .fadein:nth-of-type(2) {
    -moz-transition-delay: 200ms;
    -webkit-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
}
/* 3つ目の要素に400msのdelayをかける */
#effect2 > div .fadein:nth-of-type(3) {
    -moz-transition-delay: 400ms;
    -webkit-transition-delay: 400ms;
    -o-transition-delay: 400ms;
    -ms-transition-delay: 400ms;
}
/* ---------------------------------------
clear
--------------------------------------- */
.clear {
  clear: both;
}
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
/* ---------------------------------------
float
--------------------------------------- */
.sb-toggle-left {
  position: relative;
  z-index: 9999999;
  top: 0;
  left: 0;
}
/* ---------------------------------------
float
--------------------------------------- */
.fL {
  float: left;
}
.fR {
  float: right;
}
.center {
  text-align: center;
}
/* ---------------------------------------

--------------------------------------- */
.pc {
}
.mobile {
  display: none;
}
.shadow {
    margin-top: 5px; /* 画像の上の余白*/
    display: inline-block;
    box-shadow: 0px 5px 5px -5px rgba(0, 0, 0, 0.8); /*横方向 下方向 ぼかし 広がり 色 */
}
/*------------------------------
Layout Settings
------------------------------*/
#sb-site {
  position: relative;
}
#sb-site .menu {
  display: none;
}


/* ---------------------------------------
page-top
--------------------------------------- */

/* ボタン全体の初期状態（非表示時：下方向へ隠す、または上方向へ隠す） */
#page-top {
  position: fixed;
  right: 30px;
  bottom: 30px; /* 定位置の底面基準 */
  z-index: 998;
  margin: 0;
  padding: 0;
  
  /* 【ポイント】最初は透明にして、少し下（または上）にオフセットして隠す */
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px); /* 40px下へ沈めておく */
  
  /* 動くスピード（パッと自然に「にゅっ」と動く設定） */
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 【重要】JSでこの「is-show」クラスがついたとき、元の位置（translateY(0)）にスッと浮き上がる */
#page-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 四角いボタンの土台 */
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #333333;
  color: var(--color-bg-white);
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s, transform 0.2s; 
}

#page-top a i {
    line-height: 1; /* 上下の無駄な隙間をなくす */
    font-size: 1.5rem; /* アイコンの大きさを調整 */
    transform: translateX(2px);
}

/* 中の矢印 */
#page-top .arrow {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

/* ホバー時の動き（さらに少し上にピョコッと浮く） */
#page-top a:hover {
  background-color: var(--color-primary);
  transform: translateY(-5px);
  opacity: 1;
}

/* ---------------------------------------
バナー表示用
--------------------------------------- */
/* バナー全体の設定 */
.fixed-banner {
  position: fixed;
  bottom: 120px; 
  right: 20px;
  z-index: 9999;
  max-width: 300px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 非表示状態 */
.fixed-banner.hidden {
  display: none;
}

/* バナー画像 */
.banner-link {
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 8px;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ×（閉じる）ボタン */
.banner-close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  background-color: #333333;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.banner-close-btn:hover {
  background-color: #555555;
}

/* スマホ表示でのサイズ調整（画面幅600px以下） */
@media (max-width: 780px) {
  .fixed-banner {
    /* スマホ側のPage Topボタンのサイズに合わせて調整 */
    bottom: 80px; 
    right: 10px;
    max-width: 40%;
  }
}

/* ---------------------------------------

--------------------------------------- */
.container {
  width: 1200px;
  padding: 0;
  margin: 0 auto;
}
#wrap {
  width: 1200px;
  padding: 0;
  margin: 180px auto 80px;
}
#wrap2 {
  width: 1200px;
  padding: 0;
  margin: 0 auto 90px;
  position: relative;
}
#wrap3 {
  width: 1200px;
  padding: 0;
  margin: 40px auto 0;
  position: relative;
}

#left {
  float: left;
  width: 27.5%;
}
#right {
  margin-left: 35%;
}
#r_center {
  width: 65%;
  margin: 0px auto;
}
/* ---------------------------------------
ttl_style
--------------------------------------- */
.ttl_style01 {
  transform: rotate(0.01deg);
}
.ttl_style01 span {
  display: block;
  text-align: center;
}
.ttl_style02 {
  transform: rotate(0.01deg);
  text-align: center;
  letter-spacing: 6px;
  font-weight: 100;
  margin: 20px auto 50px;
}
.ttl_style02 h1 {
  text-align: center;
  font-size: 270%;
  font-weight: 700;
  line-height: 1em;
}
.ttl_style02 p {
  margin: 0px auto;
  display: block;
  text-align: center;
  color: var(--color-primary);
  font-size: 100%;
  font-weight: 700;
  line-height: 1em;
  padding: 3px 0 15px;
}
.ttl_style03 {
  font-size: 120%;
  background: url(../images/common/point05.png) no-repeat right bottom;
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  line-height: 140%;
  padding: 8px 0 11px 18px;
  margin-bottom: 20px;
}
.ttl_style04 {
  text-align: center;
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  font-size: 150%;
  line-height: 100%;
  padding: 12px 0 15px;
  letter-spacing: 3px;
  margin-bottom: 40px;
}
.ttl_style05 {
  color: var(--color-primary);
  font-size: 120%;
  font-weight: 600;
  letter-spacing: 3px;
}
.ttl_style06 {
  font-size: 130%;
  font-weight: 600;
  margin-bottom: 30px;
}
.ttl_style07 {
  border-bottom: var(--color-primary-alt) 1px solid;
  transform: rotate(0.01deg);
  font-size: 190%;
  letter-spacing: 6px;
  font-weight: 100;
  line-height: 120%;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.ttl_style07 span {
  display: block;
  color: var(--color-primary-alt);
  font-size: 70%;
}
.ttl_style08 {
  position: relative;
    text-align: center;
  margin-bottom: 20px;
}
.ttl_style08:before {
  border-top: 1px solid;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
}
.ttl_style08 span {
  background-color: var(--color-bg-white);
    display: inline-block;
    padding: 0 1em;
  transform: rotate(0.01deg);
  text-align: center;
  font-size: 120%;
  letter-spacing: 6px;
  font-weight: 100;
}


@media screen and (max-width: 768px) {
.ttl_style02 h1 {
  font-size: 150%;
}
.ttl_style02 p {
  font-size: 80%;
}

 
}





/* ---------------------------------------
btn_style
--------------------------------------- */
.btn_style1 {
  max-width: 300px;
  width: 100%;
  margin: 0px auto 20px;
}
.btn_style1 a {
  display: block;
  text-align: center;
  border: var(--color-primary-alt) 2px solid;
  color: var(--color-primary-alt);
  border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
  padding: 7px 0;
  background: url(../images/common/point07.png) no-repeat right 15px center;
  background-size: 20px auto;
  font-size: 110%;
  letter-spacing: 1px;
}

.hero-actions .btn-main {
    display: inline-block;
    padding: 7px 35px;
    background-color: var(--color-primary-hover);
    color: var(--color-bg-white);
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
}
/* ---------------------------------------
ボタンレイアウト
--------------------------------------- */
.c_btn {
  margin-top: 30px;
  text-align: center;
}

.btn-main {
    display: inline-block;
    padding: 7px 35px;
    background-color: var(--color-primary-hover);
    color: var(--color-bg-white);
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* 初期状態：隠しておく */
.fade-el {
  opacity: 0;
  transform: translateY(20px); /* 少し下から上がってくる演出 */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示状態：jsでクラスが付与されたら発動 */
.fade-el.is-show {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
Header
========================================================================== */

/* ヘッダー全体のレイアウト（追従固定） */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    background: transparent;
    transition: background-color .3s, box-shadow .3s;
}

.site-header.is-scrolled {
  background-color: var(--color-bg-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.site-header .header-nav a {
  transition: color 0.1s ease;
}

#index .site-header.is-scrolled .header-nav ul.main-menu {
  background-color: transparent;
  padding: 2px 0;
  transition: padding 0.7s ease;
}



/* 左側：ロゴエリア */
.header-logo p {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

/* 【最重要】中の画像サイズを制限する */
.header-logo p img {
  height: 70px;
  width: auto;
  display: block;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .12));
}

/* -----------------------------------------
  PC用のナビゲーションスタイル（基本はこれまでのまま）
----------------------------------------- */
.header-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end; 
  gap: 10px; 
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 2px 0;
  align-items: center;
}
.header-nav a {
  text-decoration: none;
  color: #333;
}
#index .header-nav ul.main-menu {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  padding: 2px 50px;
  transition: padding 0.3s ease;
}
/* 上段：サブメニュー */
.sub-menu {
  gap: 15px;
}
.sub-menu a { color: #333; transition: color 0.2s; }
.sub-menu a:hover { color: var(--color-primary-alt); }

/* 下段：グランドメニューと下線アニメーション */
.main-menu {
  gap: 25px;
  font-weight: bold;
}
.main-menu > li {
  position: relative;
  padding: 8px 0;
  margin: 5px;
  line-height: 1.2;
}
.main-menu > li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--color-primary-alt);
  transition: width 0.3s ease;
}
.main-menu > li:hover::after { width: 100%; }
.main-menu > li:hover > a { color: var(--color-primary-alt); }

.sub-menu > li.nav_gws {
  background-color: var(--color-primary-alt);
  border-radius: 50px;
  padding: 2px 30px;
}
.sub-menu > li.nav_gws a {
  color: var(--color-bg-white);
}

/* -----------------------------------------
  個別ページ用ナビ装飾
----------------------------------------- */
#philosophy .main-menu > li.nav_philosophy::after {
  background-color: var(--color-primary-alt);
  width: 100%;
}
#information .main-menu > li.nav_information::after {
  background-color: var(--color-primary-alt);
  width: 100%;
}
#strengths .main-menu > li.nav_strengths::after {
  background-color: var(--color-primary-alt);
  width: 100%;
}
#manufacturer .main-menu > li.nav_manufacturer::after {
  background-color: var(--color-primary-alt);
  width: 100%;
}
#logistics .main-menu > li.nav_logistics::after {
  background-color: var(--color-primary-alt);
  width: 100%;
}
#company .main-menu > li.nav_company::after {
  background-color: var(--color-primary-alt);
  width: 100%;
}



/* ホバーで開くドロップダウン（PC用） */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  vertical-align: middle;
}
.dropdown-menu {
  display: none !important; 
  position: absolute;
  top: 100%; 
  left: 50%;
  transform: translateX(-50%); 
  background-color: var(--color-bg-white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 10px 0;
  min-width: 150px;
  flex-direction: column; 
  z-index: 1000;
}
.dropdown-menu li { width: 100%; }
.dropdown-menu a {
  display: block;
  padding: 15px 40px;
  font-weight: normal;
  white-space: nowrap;
}
.dropdown-menu a:first-child {
  padding-top: 15px;
}
.dropdown-menu a:last-child {
  padding-bottom: 15px;
}

.dropdown-menu a:hover { background-color: #f0f7ff; color: var(--color-primary-alt); }
.has-dropdown:hover .dropdown-menu { display: flex !important; }

.dropdown-toggle {
    display: none;
}

/* -----------------------------------------
  ハンバーガーボタン（PC時は非表示）
----------------------------------------- */
.hamburger-btn {
  display: none; /* PCでは隠す */
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 1001; /* メニューより手前に */
}
/* 3本線の共通スタイル */
.hamburger-btn span {
  display: block;
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #333;
  left: 5px;
  transition: all 0.3s ease;
}
/* 3本線の位置設定 */
.hamburger-btn span:nth-child(1) { top: 11px; }
.hamburger-btn span:nth-child(2) { top: 19px; }
.hamburger-btn span:nth-child(3) { top: 27px; }

/* 開いた時（activeクラスがついた時）の「✕」アニメーション */
.hamburger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(-45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0; /* 真ん中の線を消す */
}
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(45deg);
}


/* -----------------------------------------
  スマホ用レイアウト（画面幅768px以下）
----------------------------------------- */
@media screen and (max-width: 768px) {

  body.menu-open {
    overflow: hidden;
  }
  /* ハンバーガーボタンを表示 */
  .hamburger-btn {
  display: block;
  }

  /* ナビゲーション全体を画面外（右側）に隠すメニューに変形 */
  .header-nav {
  position: fixed;
  top: 0;
  right: -100%; /* 最初は画面の右外に隠す */
  width: 80%;   /* メニューの横幅 */
  height: 100vh;/* 画面いっぱいの縦幅 */
  background-color: var(--color-bg-white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  padding: 80px 40px 40px 40px; /* 上部にボタンと被らない余白 */
  align-items: flex-start;      /* スマホ内は左寄せ */
  gap: 30px;
  transition: right 0.4s ease;  /* スライドのアニメーション速度 */
  z-index: 1000;
  }

  /* ボタンが押されて「active」クラスがついたら画面内にスライドイン */
  .header-nav.active {
  right: 0;
  }

  /* スマホ時はメニューをすべて縦並びにリセット */
  .header-nav ul {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  }

  #index .header-nav ul.main-menu {
      padding: 0;
  }

  /* グランドメニューの調整 */
  .main-menu {
  gap: 20px;
  font-size: 18px;
  }
  /* スマホ時は中央からの下線アニメーションを無効化、またはシンプルに */
  .main-menu > li::after { display: none; }

  /* サブメニューを下に配置し直す（スマホで見やすい位置へ） */
  .sub-menu {
  order: 2; /* グランドメニューの下に入れ替え */
  gap: 15px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  }

/* ---------- スマホ用ドロップダウン ---------- */

.has-dropdown {
    display: flex;
    flex-wrap: wrap;
}

.has-dropdown > a {
    flex: 1;
}

.dropdown-toggle {
    display: flex;
    border: none;
    background-color: transparent;
}

.dropdown-menu {
    width: 100%;
}

.dropdown-toggle::before {
    content: "▼";
    font-size: 1rem;
    transition: .3s;
}

.has-dropdown.open .dropdown-toggle::before {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: flex;
    flex-direction: column;

    position: static;
    transform: none;
    box-shadow: none;
    background: none;

    padding: 5px 0 0 15px;

    max-height: 0;
    overflow: hidden;

    transition: max-height .3s ease;
}

.has-dropdown.open .dropdown-menu {
    max-height: 300px;
}

.dropdown-menu a {
    padding: 8px 0;
    color: #666;
}

/* ---------- オーバーレイ ---------- */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}



  /* ---------------------------------------
  ボタンレイアウト
  --------------------------------------- */
  .c_btn {
    text-align: center;
  }
}



/* ---------------------------------------
footer
--------------------------------------- */
footer {
  padding: 0;
  position: relative;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
  background-color: #666666;
  padding: 10px 2%;
}

.site-footer .copyright {
  color: var(--color-bg-white);
    font-style: normal;
}

.site-footer .f_nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  color: #FFF;
}
.site-footer .f_nav ul li a {
  color: #FFF;
}
footer dl.footerinfo {
  padding: 30px 2%;
  margin: 0 auto;
}
footer dl.footerinfo dt {
  width: 120px;
  text-align: center;
  margin: 0 auto 20px;
}
footer dl.footerinfo dd {
  line-height: 2em;
  text-align: center;
}

.copyright {
  text-align: center;
  text-decoration: none;
  font-style: normal;
  color: var(--color-bg-white);
  letter-spacing: 1px;
}
.f_banner {
  width: 100%;
  text-align: center;
  background: var(--color-bg-light);
  padding: 15px;
}
.f_banner a {
  display: inline-block;
  background-color: var(--color-bg-white);
}

@media (max-width: 768px) {
    .site-footer {
        flex-direction: column; /* スマホでは縦並びにする */
        gap: 10px;
    }
  /* 順番を入れ替える */
    .site-footer .f_nav {
        order: 1; /* 先にナビゲーション */
    }
    
    .site-footer .copyright {
        order: 2; /* 後にコピーライト */
    }
 
}
/* ==========================
    breadcrumbs
========================== */
.breadcrumbs {
  padding: 5px 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-size: 90%;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

/* リンクとリンクの間に「 ＞ 」の区切り文字を入れる */
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: #888;
}

.breadcrumbs li a {
  color: #333;
  text-decoration: none;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

.breadcrumb-list{
  padding: 0;
  margin-bottom: 10px;
}

/* ==========================
    Pagination
========================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 50px 0;
}

.pagination a,
.pagination span {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
}

.pagination a:hover {
    background: #f5f5f5;
}

.pagination .current {
    background: var(--color-primary-hover);
    color: var(--color-bg-white);
    border-color: var(--color-primary-hover);
}

.pagination .disabled {
    opacity: .4;
    pointer-events: none;
}

@media (max-width: 767px) {

    .pagination {
        gap: 6px;
        margin: 40px 0;
    }

    .pagination a,
    .pagination span {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

}

@media screen and (max-width: 768px) {
  /* ---------------------------------------

  --------------------------------------- */
  .pc {
    display: none;
  }
  .mobile {
    display: inherit;
  }
  /*------------------------------
  Layout Settings
  ------------------------------*/
  #sb-site {
  }
  #sb-site .menu {
    display: inherit;
    position: fixed;
    z-index: 9999999;
    top: 10px;
    left: 15px;
    margin: 0;
  }
  /* ---------------------------------------

  --------------------------------------- */
  .container {
    width: 90%;
  }

  #wrap {
    width: 90%;
    margin: 130px auto;
  }
  #wrap2 {
    width: 90%;
    margin: 20px auto;
  }
  #wrap3 {
    width: 90%;
    margin: 20px auto;
  }
  #left {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }
  #right {
    margin-left: 0;
  }
  #r_center {
    width: 100%;
    margin: 0px auto;
  }
  /* ---------------------------------------
  ttl_style
  --------------------------------------- */
  .ttl_style02 {
    font-size: 200%;
  }
  .ttl_style02 span {
  }
  /* ---------------------------------------
  header
  --------------------------------------- */
  header #s_nav {
    display: none;
  }
  header #g_nav {
    width: 90%;
    margin: 0px auto;
  }
  header #g_nav ul.nav__menu {
    display: none;
  }
  header #g_nav p {
    padding: 10px 0;
    width: 90px;
    margin: 0px auto;
  }
.header-nav ul.main-menu {
  border-radius: 50px;
  padding: 0;
}
.main-menu > li {
  position: relative;
  padding: 8px 0;
  margin: 5px;
  line-height: 1.2;
  width: 100%;
}
.sub-menu > li.nav_gws {
    padding: 25px;
}
.sub-menu > li.nav_gws > a {
  text-align: center !important;
  justify-content: center; /* Flexboxを使っているレイアウトの場合 */
}
.main-menu > li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--color-primary-alt);
  transition: width 0.3s ease;
}
.sub-menu > li {
  position: relative;
  padding: 8px 0;
  margin: 5px;
  line-height: 1.2;
  width: 100%;
}
.sub-menu > li.nav_gws {
  padding: 15px;
}
.sub-menu > li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--color-primary-alt);
  transition: width 0.3s ease;
}
.main-menu > li a {
  display: block;
}
.sub-menu > li a {
  display: block;
}

.dropdown-menu li { width: 100%; }
.dropdown-menu a {
  display: block;
  padding: 15px 0;
  font-weight: 700;
}


  /* ---------------------------------------
  footer
  --------------------------------------- */
  footer dt {
    width: 100px;
    margin: 0px auto 5px;
  }
  footer dd {
    font-size: 75%;
  }


}

a[target="_blank"].blank:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: .8rem;
  content: "\f35d";
  margin: 0 0 0 5px;
}