/* CSS Document */
@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}
#header_fxhelp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #111;
  z-index: 5;
  transform: translate3d(0, 0, 3px);
}
.header_inner {
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
}
.header_inner::after {
  content: "";
  display: block;
  font-size: 0;
  line-height: 0;
  clear: both;
}
@media screen and (min-width: 769px) {
  .header_inner {
    max-width: 1280px;
  }
}
.pc_header {
  display: block;
  /*margin-top: 15px;*/
}
@media screen and (min-width: 1280px) {
  .pc_header {
    float: right;
  }
}
.hamburger {
  position: absolute;
  right: 0;
  top: 0;
  margin: 10px 12px;
}
@media screen and (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
ul.pc_header_link {
  padding-inline-start: 0;
  margin-bottom: 10px;
}
.pc_header_link li a:link, .pc_header_link li a:visited, .pc_header_link li a:hover, .pc_header_link li a:active {
  color: #fff;
}
.pc_header_link li a {
  text-decoration: none;
}
.pc_header_link li:first-child {
  margin-left: 0;
}
.pc_header_link li {
  display: inline-block;
  font-size: 13px;
  font-size: 1em;
  margin-top: 8px;
  margin-right: 20px;
}
@media screen and (min-width: 590px) {
  .pc_header_link li {
    display: block;
  }
}
@media screen and (min-width: 940px) {
  .pc_header_link li {
    display: inline-block;
  }
}
}
.logo {
  margin: 16px 0;
  width: 80%;
}
@media screen and (min-width: 590px) {
  .logo {
    float: left;
  }
}
.logo img {
  width: 40%;
  min-width: 170px;
}
.logo p {
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
  font-size: 1.1rem;
  line-height: 2;
  color: #FFF;
}
@media screen and (min-width: 590px) {
  .logo {
    width: 70%;
  }
  .logo p {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .logo {
    /*margin: 38px 0 24px;*/
    width: 64.5%;
  }
  .logo img {
    max-width: 250px;
  }
  .logo p {
    vertical-align: top;
    margin-left: 10px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) {}
.mt115 {
  margin-top: 115px;
}
.w1280 {
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}
@media (min-width: 1280px) {
  .w1280 {
    width: 1280px;
  }
}
.main-column {
  float: right;
  width: 100%;
  padding: 0 10px;
}
@media (min-width: 1280px) {
  .main-column {
    width: 1000px;
  }
}
/*左縦メニュー*/
.menu {
  width: 260px;
  float: left;
  margin-bottom: 30px;
}
.menu a:link, .menu a:visited {
  text-decoration: none;
  color: inherit;
}
/* ヘッダー（操作説明編） */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #3a3a3a;
  color: #fff;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}
/* 開いてる時の左ライン */
.menu-header.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #C9A96E;
    margin-bottom:10px;
}
/* ＋ / － */
.menu-header .icon {
  font-size: 20px;
}
/* 中身 */
.menu-content {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
  /*background: #f7f7f7;*/
  display: block; /* ← 初期は開く */
}
/* 閉じる時 */
.menu-content.closed {
  display: none;
}
/* 各項目 */
.menu-content li {
  padding: 14px 16px;
  border-bottom: 1px solid #ddd;
  position: relative;
  /*font-size: 14px;*/
}
/* 右向き矢印 */
.menu-content li::after {
  content: "\f105"; /* 右矢印 */
  font-family: "Font Awesome 5 Free"; /* FA指定 */
  font-weight: 900; /* solidの場合必須 */
  position: absolute;
  right: 16px;
  color: #999;
  font-size: 18px;
}
.menu-content li.active {
  background-color: #C9A96E;
  color: #FFF;
}
.menu-content li.active::after {
  color: #FFF;
}
/*ハンバーガー*/
/* ハンバーガー本体 */
.hamburger {
  width: 30px;
  height: 24px;
  position: fixed; /* ヘッダーに固定する場合 */
  top: 16px;
  right: 16px;
  cursor: pointer;
  z-index: 1000;
  display: none; /* PCでは非表示 */
}
/* 3本線 */
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #FFF;
  margin-bottom: 6px;
  transition: 0.3s;
}
/* 最後の線の余白消す */
.hamburger span:last-child {
  margin-bottom: 0;
}
/*  開いた時（×に変形） */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media (max-width: 1279px) {
  .hamburger {
    display: block;
  }
  .menu {
    position: fixed;
    top: 0;
    left: -100%; /* 最初は隠す */
    width: 260px;
    height: 100%;
    background: #fff;
    transition: 0.3s;
    z-index: 999;
  }
  /* メニュー開いた状態 */
  .menu.active {
    left: 0;
  }
}
/* タイトル */
h1 {
  font-size: 32px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
@media (max-width: 600px) {
  h1 {
    font-size: 24px;
  }
}
/*インデックス*/
/* グリッド */
.help-index .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
}
/* カード */
.help-index .card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #333;
  background: #fff;
  border: 1px solid #decba8;
  padding: 18px 20px;
  position: relative;
  transition: 0.2s;
}
/* 左アクセント */
.help-index .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #C9A96E;
}
/* 矢印 */
.help-index .card::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  color: #666;
}
/* hover */
.help-index .card:hover {
  background: #f0f8f8;
}
/* レスポンシブ */
@media (max-width: 600px) {
  .help-index .grid {
    grid-template-columns: 1fr;
  }
}
/*パンくず*/
.txtmap {
  margin: 30px auto;
  width: 100%;
  box-sizing: border-box;
}
.txtmap-list {
  width: 100%;
  padding-inline-start: 10px;
}
.txtmap-list_item {
  color: #999;
  float: left;
  list-style: none;
}
.txtmap-list_item a {
  text-decoration: none;
}
.txtmap-list_item:not(:first-child):before {
  content: ">";
  padding: 0 12px;
}
.txtmap-list::after {
  content: "";
  display: block;
  font-size: 0;
  line-height: 0;
  clear: both;
}
/*ガイドTOPページ*/
/* グリッド */
.top .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* カード */
.top .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
  min-height: 160px;
}
/* タイトル */
.top .card h2 {
  font-size: 16px;
  margin: 0 0 15px;
  text-align: center;
}
/* アイコン */
.top .icon {
  font-size: 40px;
  color: #C9A96E;
}
/* hover */
.top .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
/* タブレット */
@media (max-width: 900px) {
  .top .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* スマホ */
@media (max-width: 500px) {
  .top .grid {
    grid-template-columns: 1fr;
  }
  .top .card {
    min-height: 140px;
  }
}
.table-tuika th {
    background: #fff8ef !important;
}