@charset "UTF-8";
/*16*1.75/2*/
/*======*/
/* 共通 */
/*======*/
/* PC/CT出し分け
------------------------------ */
@media (min-width: 1024px) {
  .t-sp {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .t-pc {
    display: none !important;
  }
}
/* PC/SP出し分け
------------------------------ */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* 共通アニメーション
------------------------------ */
.animate {
  opacity: 0;
}

.fadein {
  animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
}

.fade-in-bottom {
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-left {
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-right {
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.blur-in {
  animation: blur-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes blur-in {
  0% {
    filter: blur(20px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

section .contents {
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  section .contents {
    width: 90%;
  }
}

section .contents p,
section .contents ul,
section .contents ol {
  margin-bottom: 1em;
}

.container.com-lower {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .container.com-lower {
    padding-bottom: 64px;
  }
}

/* フォーム
-----------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 8px;
  font-size: 1em;
}

input[type=date],
select {
  max-width: 100%;
  padding: 8px;
  font-size: 1em;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  font-family: "I-OTF-UDゴ本文Pro R", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1em;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* パンくず
-----------------------------------*/
.b-nv {
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .b-nv {
    display: none;
  }
}
.b-nv ul {
  display: flex;
  justify-content: flex-start;
  padding: 16px 0;
}
.b-nv ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 8px;
  line-height: 1;
}
.b-nv ul li a {
  margin-right: 8px;
}
.b-nv ul li::after {
  content: "";
  display: block;
  border-color: #000;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(-45deg);
}
.b-nv ul li:last-child::after {
  content: none;
}

/* タイトル
-----------------------------------*/
.title-sec {
  position: relative;
  height: 280px;
  padding-top: 120px;
  background: #006ab6;
  background: -moz-linear-gradient(to left, #006ab6 0%, #aecfed 100%);
  background: -webkit-linear-gradient(to left, #006ab6 0%, #aecfed 100%);
  background: linear-gradient(to right, #006ab6 0%, #aecfed 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$start-color+"", endColorstr=$end-color+"",GradientType=1 );
  /* 文字数が多いページの場合、SPは文字サイズ縮小 */
}
@media (max-width: 767px) {
  .title-sec {
    height: 140px;
    padding-top: 48px;
  }
}
.title-sec::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 280px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(/track/images/common/title_bg01.svg) no-repeat;
  background-size: auto 100%;
  background-position: top center;
}
@media (max-width: 767px) {
  .title-sec::before {
    height: 140px;
    background: url(/track/images/common/title_bg01_sp.svg) no-repeat;
    background-size: auto 100%;
    background-position: top center;
  }
}
.title-sec::after {
  content: "";
  position: absolute;
  display: block;
  width: 84px;
  height: 280px;
  bottom: 0;
  right: 0;
  background: url(/track/images/common/title_ic01.png) no-repeat;
  background-size: 100% auto;
  background-position: right bottom;
  z-index: 2;
}
@media (max-width: 767px) {
  .title-sec::after {
    width: 42px;
    height: 140px;
  }
}
.title-sec .inner {
  width: 90%;
  max-width: 1780px;
  margin: 0 auto;
}
.title-sec .title-area {
  position: relative;
  padding: 8px 0;
  background-color: #00347f;
  z-index: 1;
}
@media (max-width: 767px) {
  .title-sec .title-area {
    padding: 4px;
  }
}
.title-sec .title-area .heading-title {
  color: #FFF;
  font-size: 3em;
  /*48/16*/
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .title-sec .title-area .heading-title {
    font-size: 2.28em;
    /*32/14*/
  }
}
.title-sec .sub-title {
  position: relative;
  margin-top: 16px;
  font-size: 1.5em;
  /*24/16*/
  color: #FFF;
  line-height: 1;
  z-index: 1;
}
@media (max-width: 767px) {
  .title-sec .sub-title {
    margin-top: 8px;
    font-size: 1.714em;
    /*24/14*/
  }
}
@media (max-width: 767px) {
  .title-sec.sp-small .title-area .heading-title {
    font-size: 1.4em;
  }
  .title-sec.sp-small .sub-title {
    font-size: 1em;
  }
}

.heading01 {
  margin: 80px 0 40px;
  font-size: 2em;
  /*32/16*/
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading01 {
    margin: 32px 0 24px;
  }
}

.heading02 {
  margin: 64px 0 40px;
  font-size: 1.75em;
  /*28/16*/
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
  color: #00347f;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading02 {
    margin: 32px 0 24px;
  }
}

.heading03 {
  position: relative;
  margin: 40px 0 6px;
  padding-left: 24px;
  background: url(/track/images/common/heading_ic01.svg) no-repeat;
  background-position: 0 50%;
  color: #036bb6;
  font-size: 1.125em;
  /*18/16*/
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading03 {
    margin: 24px 0 16px;
    font-size: 1.25em;
    /*18/14*/
  }
}

.heading04 {
  margin: 32px 0 16px;
  font-size: 1.125em;
  /*18/16*/
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading04 {
    margin: 24px 0 16px;
    font-size: 1.25em;
    /*18/14*/
  }
}

.first-txt {
  margin: 80px 0 72px;
}
@media (max-width: 767px) {
  .first-txt {
    margin: 40px 0 24px;
  }
}

/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-next {
  position: relative;
  padding-right: 40px;
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
  color: #000;
  text-decoration: none;
}
.link-next::after {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  right: 0;
  top: 50%;
  margin-top: -13px;
  background: url(/track/images/common/link_ic01.svg) no-repeat;
  background-size: 100% auto;
  border-radius: 4px;
}
.link-next:hover {
  color: #036bb6;
  text-decoration: none;
}
.link-next:hover::after {
  background: url(/track/images/common/link_ic02.svg) no-repeat;
  background-size: 100% auto;
}

.link-other {
  position: relative;
  padding-right: 32px;
}
.link-other::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  top: 50%;
  margin-top: -10px;
  background: url(/track/images/common/link_ic03.svg) no-repeat;
  background-size: 100% auto;
}

.link-other02 {
  position: relative;
  padding-right: 32px;
}
.link-other02::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  top: 50%;
  margin-top: -10px;
  background: url(/track/images/common/link_ic04.svg) no-repeat;
  background-size: 100% auto;
}

/* リンクボタン
-----------------------------------*/
.com-bt {
  position: relative;
  display: inline-block;
  min-width: 256px;
  padding: 16px 20px;
  border-radius: 4px;
  background: #3695FF;
  background: linear-gradient(90deg, #FFF 0%, #FFF 50%, #036bb6 50%, #036bb6 100%);
  background-size: 200% auto;
  background-position: 100%, 0%;
  filter: drop-shadow(0 6px 6px rgba(26, 50, 73, 0.3));
  color: #FFF;
  text-decoration: none;
  font-size: 1.125em;
  /*18/16*/
  text-align: center;
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
  line-height: 1;
  vertical-align: top;
  transition: 0.5s all;
}
.com-bt:hover {
  background-position: 0% 0%;
  text-decoration: none;
  color: #036bb6;
}
@media (max-width: 767px) {
  .com-bt {
    display: block;
    width: 100%;
    min-width: auto;
    padding: 24px 16px;
    filter: none;
  }
}
.com-bt.next {
  padding-right: 56px;
  text-align: left;
}
.com-bt.next::after {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  right: 20px;
  top: 50%;
  margin-top: -13px;
  background: url(/track/images/common/link_ic01.svg) no-repeat;
  background-size: 100% auto;
  border-radius: 4px;
}
.com-bt.next:hover::after {
  background: url(/track/images/common/link_ic02.svg) no-repeat;
  background-size: 100% auto;
}
.com-bt.prev {
  padding-left: 56px;
  text-align: center;
}
.com-bt.prev::after {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  left: 20px;
  top: 50%;
  margin-top: -13px;
  background: url(/track/images/common/link_ic01.svg) no-repeat;
  background-size: 100% auto;
  border-radius: 4px;
  transform: rotate(180deg);
}
.com-bt.prev:hover::after {
  background: url(/track/images/common/link_ic02.svg) no-repeat;
  background-size: 100% auto;
}
.com-bt.type02 {
  background: linear-gradient(90deg, #e6eef4 0%, #e6eef4 50%, #66aad3 50%, #66aad3 100%);
  background-size: 200% auto;
  background-position: 100%, 0%;
  color: #FFF;
}
.com-bt.type02:hover {
  background-position: 0% 0%;
  color: #036bb6;
}

input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
  border: none;
  border-radius: 4px;
  font-size: 1.125em;
  /*18/16*/
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
input[type=submit].com-bt.next,
input[type=button].com-bt.next,
button.com-bt.next {
  text-align: left;
}
input[type=submit].com-bt.prev,
input[type=button].com-bt.prev,
button.com-bt.prev {
  text-align: right;
}

/*============*/
/* 共通・汎用 */
/*============*/
/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* 汎用カラム
-----------------------------------*/
.row:after {
  content: "";
  clear: both;
  display: block;
}

.multicolumn,
.multilist {
  overflow: hidden !important;
}

.multicolumn-left {
  float: left;
}

.multicolumn-right {
  float: right;
}

.multilist li {
  float: left;
}

/* 横並び
-----------------------------------*/
.com-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.com-wrap .img {
  width: 48%;
}
.com-wrap .txt {
  width: 48%;
}
.com-wrap.txt-left {
  flex-direction: row-reverse;
}

/* 横並びリスト
-----------------------------------*/
.list-col2,
.list-col3,
.list-col4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.list-col2 li {
  width: 48%;
  margin-bottom: 24px;
}
.list-col2 li:nth-child(even) {
  margin-left: 4%;
}

.list-col3 li {
  width: 32%;
  margin-bottom: 16px;
  margin-right: 2%;
}
.list-col3 li:nth-child(3n) {
  margin-right: 0;
}

.list-col4 li {
  width: 24%;
  margin-bottom: 16px;
  margin-right: 1.333%;
}
.list-col4 li:nth-child(4n) {
  margin-right: 0;
}

/* 注釈 com-box
-----------------------------------*/
.com-box {
  margin: 32px 0;
  padding: 32px 24px;
  border: 1px solid #f2f2f2;
  background: #FFFFFF;
  background: linear-gradient(130deg, white 0%, #d8dee2 29%, white 51%, #cfd6db 100%);
}
@media (max-width: 767px) {
  .com-box {
    padding: 16px;
  }
}

/* 背景
-----------------------------------*/
.bg-area {
  position: relative;
  background: #e6eef4 url(/track/images/common/bg_bg01.webp);
  background-size: 100% auto;
  background-repeat: repeat-y;
  color: #000;
  overflow: hidden;
}
.bg-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 280px;
  background: url(/track/images/common/bg_ic01.svg) no-repeat;
  background-size: 100% auto;
  background-position: top left;
}
@media (max-width: 767px) {
  .bg-area::before {
    width: 20px;
    height: 80px;
  }
}

/* タブ切り替え
-----------------------------------*/
[role=tablist] button {
  cursor: pointer;
}
[role=tablist] button:focus-visible {
  outline: none;
}
.tabPanels [aria-hidden=true] {
  display: none;
}
.tabPanels [aria-hidden=false] {
  display: block;
}

/* アコーディオン
-----------------------------------*/
.ac-panel[aria-hidden] {
  display: none;
}
.ac-panel[aria-hidden=false] {
  display: block;
}

/* アコーディオン体裁　*/
.ac-menu {
  margin: 56px 0 24px;
}
@media (max-width: 767px) {
  .ac-menu {
    margin: 32px 0 24px;
  }
}
.ac-menu button {
  position: relative;
  width: 100%;
  padding: 0 56px 0 24px;
  background: url(/track/images/common/heading_ic01.svg) no-repeat;
  background-position: 0 2px;
  background-color: transparent;
  color: #036bb6;
  font-size: 1.125em;
  /*18/16*/
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
}
.ac-menu button::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px calc(24px / 2) 0 calc(24px / 2);
  border-color: #036bb6 transparent transparent transparent;
}
.ac-menu button[aria-expanded=true]::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 calc(24px / 2) 16px calc(24px / 2);
  border-color: transparent transparent #036bb6 transparent;
}

.ac-cts {
  display: none;
  padding: 16px 24px;
  background: rgba(0, 106, 182, 0.3);
  background: -moz-linear-gradient(to left, rgba(0, 106, 182, 0.3) 0%, rgba(174, 207, 237, 0.3) 100%);
  background: -webkit-linear-gradient(to left, rgba(0, 106, 182, 0.3) 0%, rgba(174, 207, 237, 0.3) 100%);
  background: linear-gradient(to right, rgba(0, 106, 182, 0.3) 0%, rgba(174, 207, 237, 0.3) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$start-color+"", endColorstr=$end-color+"",GradientType=1 );
}
@media (max-width: 767px) {
  .ac-cts {
    padding: 16px;
  }
}

/* SPアコーディオン PCタブ
-----------------------------------*/
@media (min-width: 768px) {
  .sp-ac-header button {
    display: none;
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .sp-ac-header .menu-bt {
    display: block;
    width: 100%;
    margin-top: 40px;
    padding: 8px;
    border: 1px solid #e6eef4;
    border-bottom: 2px solid #00347f;
    background-color: #FFF;
    text-align: center;
    font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
    font-size: 1.125em;
    color: #00347f;
  }
  .sp-ac-header .menu-bt span {
    display: block;
    position: relative;
  }
  .sp-ac-header .menu-bt span::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    background: url(/track/images/common/arrow_ic02.svg) no-repeat;
    background-size: 100% auto;
    transform: rotate(90deg);
    margin-top: -6px;
  }
  .sp-ac-header .menu-bt[aria-expanded=true] span::after {
    transform: rotate(-90deg);
  }
}

@media (min-width: 768px) {
  .sp-ac-panel[aria-hidden] {
    display: block !important;
  }
  .sp-ac-panel[aria-hidden=false] {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .sp-ac-panel[aria-hidden] {
    display: none;
  }
  .sp-ac-panel[aria-hidden=false] {
    display: block;
  }
}
.sp-ac-panel .list-menu {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 64px;
  border-bottom: 2px solid #e6eef4;
  position: relative;
}
@media (max-width: 767px) {
  .sp-ac-panel .list-menu {
    margin-top: 0;
    display: block;
    border: 1px solid #e6eef4;
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  .sp-ac-panel .list-menu.ac-sub > li {
    cursor: pointer;
  }
  .sp-ac-panel .list-menu.ac-sub > li > a {
    pointer-events: none;
  }
}
.sp-ac-panel .list-menu > li {
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .sp-ac-panel .list-menu > li {
    min-width: initial;
    width: 100%;
    text-align: left;
  }
}
.sp-ac-panel .list-menu > li > a {
  display: inline-block;
  padding: 0 32px;
  text-decoration: none;
  color: var(--txt-color);
  cursor: pointer;
}
@media (max-width: 767px) {
  .sp-ac-panel .list-menu > li > a {
    display: block;
    padding: 8px;
    border-bottom: 1px solid #e6eef4;
  }
}
.sp-ac-panel .list-menu > li > a::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin-top: 20px;
  background-color: #036bb6;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .sp-ac-panel .list-menu > li > a::after {
    content: none;
  }
}
.sp-ac-panel .list-menu > li > a:hover {
  color: #036bb6;
}
.sp-ac-panel .list-menu > li > a:hover::after {
  width: 100%;
}
.sp-ac-panel .list-menu > li > a.active::after {
  width: 100%;
}
.sp-ac-panel .sub-menu {
  background-color: #e6eef4;
  width: 100%;
}
@media (min-width: 768px) {
  .sp-ac-panel .sub-menu {
    position: absolute;
    left: 0;
    top: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
}
.sp-ac-panel .sub-menu > li {
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
}
.sp-ac-panel .sub-menu > li > a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 16px 32px 16px 16px;
  position: relative;
}
@media (max-width: 767px) {
  .sp-ac-panel .sub-menu > li > a {
    padding: 8px 8px 8px 16px;
  }
}
.sp-ac-panel .sub-menu > li > a::before {
  content: "";
  display: block;
  position: absolute;
  right: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: url(/track/images/common/arrow_ic02.svg) no-repeat;
  background-size: 100% auto;
  transform: rotate(90deg);
  margin-top: -6px;
}
.sp-ac-panel .sub-menu > li > a::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  position: relative;
  top: 16px;
  background-color: #036bb6;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .sp-ac-panel .sub-menu > li > a::after {
    content: none;
  }
}
.sp-ac-panel .sub-menu > li > a:hover {
  color: #036bb6;
}
.sp-ac-panel .sub-menu > li > a:hover::after {
  width: calc(100% + 20px);
}

/* カラム幅
-----------------------------------*/
.w1000 {
  width: 1000px;
}

/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
  margin-left: 23px;
  list-style: disc;
}

/* リスト（ドット） */
.list-dot li {
  padding-left: 1em;
}

.list-dot li:before {
  content: "・";
  margin-left: -1em;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}

/* テーブル
-----------------------------------*/
/* 幅 */
col.colw05 {
  width: 5%;
}

col.colw10 {
  width: 10%;
}

col.colw15 {
  width: 15%;
}

col.colw20 {
  width: 20%;
}

col.colw25 {
  width: 25%;
}

col.colw30 {
  width: 30%;
}

col.colw35 {
  width: 35%;
}

col.colw40 {
  width: 40%;
}

col.colw45 {
  width: 45%;
}

col.colw50 {
  width: 50%;
}

/* テーブル */
.table {
  width: 100%;
  margin-bottom: 5em;
  border-collapse: collapse;
  border-spacing: 0;
}
.table thead th {
  color: #00347f;
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
  font-size: 1.125em;
  /*16/18*/
  border-bottom: 1px solid #036bb6;
}
.table th {
  padding: 16px;
  border-bottom: solid 2px #e6eef4;
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
}
@media (max-width: 767px) {
  .table th {
    padding: 8px 4px;
  }
}
.table td {
  padding: 16px;
  border-bottom: solid 2px #e6eef4;
}
@media (max-width: 767px) {
  .table td {
    padding: 8px 4px;
  }
}
.table .bg01 {
  font-weight: bold;
  color: #00347f;
}
.table .bg01 td {
  position: relative;
  background: #e6eef4;
}
.table .bg01 td::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #FFF;
}
.table .bg01 td::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #FFF;
}

/* ニュース一覧
-----------------------------------*/
.list-news li {
  border-bottom: 1px solid #036bb6;
}
.list-news li a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 32px 104px 32px 32px;
  color: var(--txt-color);
  text-decoration: none;
}
@media (max-width: 767px) {
  .list-news li a {
    padding: 16px 0;
  }
}
.list-news li a .date {
  width: 160px;
  line-height: 1;
}
@media (max-width: 767px) {
  .list-news li a .date {
    width: 140px;
  }
}
.list-news li a .label {
  width: 100px;
  padding: 6px 2px;
  background-color: #FFF;
  border: 1px solid #00347f;
  border-radius: 24px;
  color: #00347f;
  text-align: center;
  font-size: 0.81em;
  /*13/16*/
  line-height: 1;
}
@media (max-width: 767px) {
  .list-news li a .label {
    font-size: 0.85em;
    /*12/14*/
  }
}
.list-news li a .title {
  width: 100%;
  word-wrap: break-word;
  line-height: 1.3;
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .list-news li a .title {
    padding-right: 28px;
  }
}
.list-news li a::after {
  content: "";
  display: block;
  position: absolute;
  right: 32px;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background: url(/track/images/common/link_ic01.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .list-news li a::after {
    width: 24px;
    height: 24px;
    margin-top: 0;
    top: initial;
    right: 0;
    bottom: 16px;
  }
}
.list-news li a:hover {
  text-decoration: none;
}
.list-news li a:hover .title {
  color: #036bb6;
}
.list-news li a:hover::after {
  background: url(/track/images/common/link_ic02.svg) no-repeat;
  background-size: 100% auto;
}

/* ページャー
-----------------------------------*/
.pager-area {
  display: flex;
  justify-content: center;
  gap: 8px 16px;
  padding: 64px 0 120px;
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
  line-height: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .pager-area {
    gap: 4px 8px;
    padding: 48px 0 88px;
    line-height: 32px;
  }
}
.pager-area .page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  border-radius: 4px;
  background-color: #e6eef4;
  color: #00347f;
  font-family: "I-OTF-UDゴ表示Pro M", sans-serif;
  text-decoration: none;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .pager-area .page {
    width: 32px;
  }
}
.pager-area .page:hover {
  background-color: #00347f;
  color: #FFF;
}
.pager-area .prev, .pager-area .next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .pager-area .prev, .pager-area .next {
    width: 32px;
  }
}
.pager-area .prev:hover, .pager-area .next:hover {
  background-color: #e6eef4;
}
.pager-area .prev:hover img, .pager-area .next:hover img {
  opacity: 1 !important;
}
.pager-area .prev img {
  transform: rotate(180deg);
}

/*# sourceMappingURL=common.css.map */
