@charset "UTF-8";

/*==== RESET =====================*/

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 62.5%;
}
html.fixed,
html.fixed body {
  height: 100%;
  overflow: hidden;
}
body {
  height: 100%;
  margin: 0;
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
body.fixed {
  margin: auto;
  position: fixed;
  left: 0;
  right: 0;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: normal;
}
a {
  color: #333;
  text-decoration: none;
  transition: opacity 0.4s;
}
a:hover {
  opacity: 0.8;
}
p {
  margin: 0;
}
main p + p {
  margin-top: 1rem;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
table {
  border-collapse: collapse;
}
th,
td {
  font-weight: normal;
}
.preload {
  transition: none !important;
}
.sp-content,
.sp-content580 {
  display: none;
}

/*==== COMMON =====================*/
:root {
  --headerHeight: 118px;
  --globalContentWidth: 1440px;
  --globalContentPadding: 0 60px;
}
body {
  width: 100%;
  min-width: 1280px;
}
.outer-link::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 8px;
  margin-bottom: 0.4em;
  background: url(../img/common/icon_outer-link.svg) no-repeat center;
  background-size: contain;
  vertical-align: middle;
}
.m-content-inner {
  overflow: hidden;
}
.display-none {
  display: none !important;
}
/*==== HEADER =====================*/
.header {
  width: 100%;
  min-width: 1440px;
  height: var(--headerHeight);
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: ease-out .3s all;
}
.header.scroll {
  background-color: rgba(0, 70, 126, .9);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 32px;
  /*max-width: var(--globalContentWidth);*/
  height: 100%;
  margin: 0 auto;
  padding: var(--globalContentPadding);
}
.header-logo {
  display: inline-block;
  max-width: 405.59px;
}

.text-align--center {
  text-align: center !important;
}

.text-align--right {
  text-align: right !important;
}

.text-align--left {
  text-align: left !important;
}

.vertical-align--baseline {
  vertical-align: baseline !important;
}

.vertical-align--top {
  vertical-align: top !important;
}

.vertical-align--middle {
  vertical-align: middle !important;
}

.vertical-align--bottom {
  vertical-align: bottom !important;
}

.vertical-align--text-bottom {
  vertical-align: text-bottom !important;
}

.vertical-align--text-top {
  vertical-align: text-top !important;
}

.vertical-align--middle,
.vertical-align--middle td,
.vertical-align--middle th {
  vertical-align: middle !important;
}

.vertical-align--top,
.vertical-align--top td,
.vertical-align--top th {
  vertical-align: top !important;
}

.vertical-align--bottom,
.vertical-align--bottom td,
.vertical-align--bottom th {
  vertical-align: bottom !important;
}
.column,
.column--3,
.column--4,
.column--equal-width {
  display: flex;
  margin-left: -1em;
  margin-right: -1em;
}

.column__cell {
  padding-left: 1em;
  padding-right: 1em;
}

.column--equal-width .column__cell {
  padding-left: 1em;
  padding-right: 1em;
  flex-grow: 1;
  flex-basis: 100%;
}

/*==== GLOBAL NAVIGATION =====================*/
.gnav {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px;
}
.gnav a {
  color: #fff;
}
.gnav a:hover {
  opacity: 1;
}
.gnav__head__list {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
.gnav__head__list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 146px;
  padding: 8px 16px;
  border: 1px solid #fff;
  font-size: 1.4rem;
}
.gnav__head__item.item-user-info a {
}
.gnav__head__item.item-user-info a:hover {
  background-color: #00467e;
  color: #fff;
}
.gnav__head__item.item-logout a {
  background-color: #fff;
  color: #00467e;
}
.gnav__head__item.item-logout a:hover {
  background-color: #00467e;
  color: #fff;
}
.gnav__head__item.item-logout {
}
.gnav__body__list {
  display: flex;
  gap: 0 32px;
}
.gnav__body__list a {
  font-size: 1.6rem;
  position: relative;
}
.gnav__body__list a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.gnav__body__list a:hover {
  opacity: 1;
}
.gnav__body__list a:hover::before {
  animation: gnavBorder 0.3s ease-in-out forwards;
}
@keyframes gnavBorder {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.gnav__body__item {
  position: relative;
}

.dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 28, 50,0.8);
  border: none
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1000;
}

.gnav__body__item.cat_ir .dropdown__menu{
  top: 100%;
  left: 0;
  transform: translate(calc(50px - 100%), 0);
}

.dropdown__menu li {
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.dropdown__menu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #fff;
}

.dropdown__menu li a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.gnav__body__item:hover .dropdown__menu,
.gnav__body__item:focus-within .dropdown__menu {
  display: block;
}

/*==== KV-AREA =====================*/
.kv-area {
  width: 100%;
}
.kv-area__inner {
  /*max-width: var(--globalContentWidth);*/
  height: 100%;
  margin: 0 auto;
  padding: var(--globalContentPadding);
}

/*====ANNOTATION=====================*/
sup,
.sup {
  vertical-align: super;
  font-size: 0.5em;
  display: inline-block;
  padding-bottom: 0.5em;
}
.annotation {
  color: #888888;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.annotation > p {
  display: grid;
  grid-template-columns: 4em 1fr;
  gap: 4px;
}
.annotation > p::before {
  content: attr(data-mark);
  text-align: right;
}
.figcaption {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/*====BANNER=====================*/
.section-banner {
  background-color: #e4e4e4;
}
.section-banner .section__inner {
  padding-top: 32px;
  padding-bottom: 32px;
}
.banner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 48px;
  max-width: 1088px;
  margin: 0 auto;
}
.banner-title {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  padding-bottom: 8px;
  font-family: "Noto Serif", serif;
  color: #001526;
  font-size: 1.6rem;
  position: relative;
}
.banner-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  border-radius: 10px;
  background-color: #004ea2;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.banner-link img {
  border: 1px solid #fff;
}
.banner-link:hover img {
  border-color: #004ea2;
}

/*====NEWS=====================*/
.m-news__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid #cbd5e1;
  padding: 24px 0;
}
.m-news .news-status {
  display: grid;
  grid-template-columns: 134px 112px;
  align-items: center;
  gap: 18px;
}
.news-date {
  letter-spacing: 0.08em;
}
.news-category {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 32px;
  padding: 0 1em;
  background-color: #888888;
  border-radius: 2px;
  color: #fff;
}
.news-category.notice {
  background-color: #00467e;
  color: #fff;
}
.news-date {
  font-weight: 500;
}
.news-title {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
}
.news-title > * {
  width: fit-content;
}
.m-news__item.item-pdf .news-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 22px;
  background: url(../img/common/icon_pdf1_navy.svg) no-repeat center;
  background-size: contain;
}
.news-title a:hover {
  opacity: 1;
  text-decoration: underline;
}

/*====FOOTER=====================*/
.footer {
  background-color: #00070d;
}
.footer__inner {
  /*max-width: var(--globalContentWidth);*/
  margin: 0 auto;
  padding: var(--globalContentPadding);
}
.footer__body {
  padding: 48px 64px;
}
.footer-nav a {
  display: inline-block;
  line-height: 1.2;
  color: #fff;
  font-size: 1.4rem;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.footer a.link-category-top {
  font-size: 1.6rem;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.footer-nav__item + .footer-nav__item {
  margin-top: 16px;
}
.footer-nav__item:has(.link-category-top) + .footer-nav__item {
  margin-top: 24px;
}
.footer__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px 64px;
  border-top: 1px solid #a3a6a8;
}
.footer-company-info {
  display: grid;
  grid-template-columns: 100%;
  gap: 16px;
}
.footer__logo {
  width: 406px;
}
.footer__copyright {
  color: #a3a6a8;
  font-size: 1.6rem;
  opacity: 0.64;
}
.footer-subnav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-subnav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1.6rem;
}
.footer-subnav a:hover {
  text-decoration: underline;
}
.footer-subnav a::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background-color: #fff;
}

/* ===========================================================

	align

=========================================================== */
.align-center {text-align: center !important;}
.align-right {text-align: right !important;}
.align-left {text-align: left !important;}
.align-middle,
.align-middle th,
.align-middle td {vertical-align: middle !important;}
.align-top {vertical-align: top !important;}
.align-bottom {vertical-align: bottom !important;}


.icon-s.ic-xls-s {
    display: inline-block;
    font-size: 1.2rem;
    color: #28B070;
    border: 1px solid #28B070;
    padding: 3px 8px;
    line-height: 1;
    margin: 0 4px;
}
