.header {
  height: 88px;
  background-color: #ffffff;
  overflow: hidden;
}
.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.header__logo-group {
  display: grid;
  grid-template-columns: 146px 13px auto;
  grid-template-rows: auto auto;
  z-index: 1;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.header__logo {
  grid-column: 1;
  grid-row: 1/3;
  align-self: start;
  width: 146px;
  height: 24.33px;
}
.header__logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.header__site-label {
  grid-column: 3;
  grid-row: 1;
  margin-top: 0.4px;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: #333333;
  text-align: left;
  white-space: nowrap;
  align-self: start;
}
.header__company-name {
  grid-column: 1;
  grid-row: 2;
  margin-top: 1.07px;
  font-size: 14px;
  line-height: normal;
  color: #333333;
  text-align: center;
  white-space: nowrap;
}
.header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 79px;
  margin-right: 36px;
}
.header__nav-link {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #333333;
  text-decoration: none;
  white-space: nowrap;
}
.header__nav-link--products {
  text-align: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.header__cta {
  flex-shrink: 0;
  width: 180px;
  height: 48px;
  background-color: #143d8d;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.header__cta-text {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}
.header__sp-bar, .header__sp-nav {
  display: none;
}
@media (max-width: 768px) {
  .header {
    height: 56px;
    overflow: visible;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header__inner {
    display: none;
  }
  .header__sp-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
  }
  .header__sp-logo-group {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
  }
  .header__sp-logo-img {
    width: 120px;
    height: 20px;
    display: block;
    flex-shrink: 0;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: left center;
       object-position: left center;
  }
  .header__sp-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .header__sp-site-label {
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    color: #333333;
    white-space: nowrap;
  }
  .header__sp-company-name {
    font-weight: 700;
    font-size: 10px;
    line-height: normal;
    color: #333333;
    white-space: nowrap;
  }
  .header__sp-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .header__sp-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .header__sp-toggle-line {
    display: block;
    width: 32px;
    height: 2px;
    background-color: #333333;
  }
  .header__sp-toggle-label {
    font-weight: 700;
    font-size: 11px;
    line-height: normal;
    color: #333333;
  }
  .header__sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 460px;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  }
  .header__sp-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.2s ease, visibility 0s linear 0s;
  }
  .header__sp-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 56px;
    flex-shrink: 0;
  }
  .header__sp-close {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .header__sp-close-icon {
    position: relative;
    display: block;
    width: 32px;
    height: 12px;
  }
  .header__sp-close-line {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 32px;
    height: 2px;
    background-color: #333333;
  }
  .header__sp-close-line:nth-child(1) {
    transform: translate(-50%, -50%) rotate(18deg);
  }
  .header__sp-close-line:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-18deg);
  }
  .header__sp-close-label {
    font-weight: 700;
    font-size: 11px;
    line-height: normal;
    color: #333333;
  }
  .header__sp-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px 45px 0;
  }
  .header__sp-nav-link {
    font-weight: 500;
    font-size: 15px;
    line-height: normal;
    letter-spacing: 0.6px;
    color: #333333;
    text-decoration: none;
  }
  .header__sp-nav-link--products {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: left;
    width: 100%;
  }
  .header__sp-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 16px;
    display: none;
    flex-direction: column;
    gap: 12px;
  }
  .header__sp-submenu.is-open {
    display: flex;
  }
  .header__sp-submenu-link {
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: #333333;
    text-decoration: none;
  }
  .header__sp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 300px;
    height: 72px;
    margin: 40px auto 0;
    background-color: #0f3580;
    border-radius: 10px;
    text-decoration: none;
  }
  .header__sp-cta-text {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #ffffff;
  }
  .header__sp-cta-arrow {
    flex-shrink: 0;
  }
}

.header-dropdown {
  position: fixed;
  z-index: 150;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  min-width: 220px;
  display: none;
}
.header-dropdown.is-open {
  display: block;
}
.header-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.header-dropdown__link {
  display: block;
  padding: 12px 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #333333;
  text-decoration: none;
  white-space: nowrap;
}
.header-dropdown__link:hover {
  background-color: #f0f4f7;
}
@media (max-width: 768px) {
  .header-dropdown {
    display: none !important;
  }
}

.footer {
  background-color: #142953;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 287px;
  padding: 52px 0;
  width: 100%;
}
.footer__brand {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 361.35px;
}
.footer__brand-logo {
  width: 182px;
  height: 30px;
  display: block;
  flex-shrink: 0;
}
.footer__brand-sitename {
  display: block;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  line-height: normal;
  margin-top: 5.86px;
  margin-left: 17.03px;
}
.footer__brand-company {
  display: block;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  line-height: normal;
  margin-top: 5.46px;
  margin-left: 41.65px;
}
.footer__nav {
  margin-top: 35px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 35px;
  color: #ffffff;
  white-space: nowrap;
}
.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline;
}
.footer__nav-list li {
  display: inline-block;
  white-space: nowrap;
}
.footer__nav-list li + li::before {
  content: "|";
  margin: 0 0.5em;
}
.footer__nav-list a {
  color: #ffffff;
  text-decoration: none;
}
.footer__nav-list a:hover {
  color: #d2dce8;
}
.footer__copyright {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 35px;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}
.footer__copyright-link {
  color: #ffffff;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer__inner {
    min-height: auto;
    padding: 0;
  }
  .footer__brand {
    display: grid;
    grid-template-columns: 121px auto;
    grid-template-rows: auto auto;
    row-gap: 4px;
    width: 100%;
    box-sizing: border-box;
    padding: 50px 69px 0;
    justify-content: center;
    margin-top: 0;
  }
}
@media (max-width: 768px) and (max-width: 420px) {
  .footer__brand {
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (max-width: 768px) {
  .footer__brand-logo {
    grid-column: 1;
    grid-row: 1;
    width: 121px;
    height: auto;
    margin-top: 0;
    margin-left: 0;
  }
  .footer__brand-sitename {
    grid-column: 2;
    grid-row: 1;
    font-size: 14px;
    margin-top: 0;
    margin-left: 16px;
  }
  .footer__brand-company {
    grid-column: 1;
    grid-row: 2;
    font-size: 10px;
    margin-top: 0;
    margin-left: 0;
    text-align: center;
  }
  .footer__nav {
    width: 100%;
    font-size: 12px;
    line-height: 24px;
    padding: 41px 20px 0;
    white-space: normal;
    margin-top: 0;
  }
  .footer__copyright {
    width: 100%;
    font-size: 9px;
    line-height: 24px;
    padding: 0 20px 52px;
    white-space: normal;
  }
}

.breadcrumb-wrap {
  width: 100%;
  background-color: #f0f4f7;
}

.breadcrumb {
  max-width: 1080px;
  padding: 0 24px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding: 0 16px;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  font-size: 12px;
  color: #848484;
}
.breadcrumb__home-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.breadcrumb__sep {
  color: #848484;
}
.breadcrumb__link {
  color: #848484;
  text-decoration: none;
}
.breadcrumb__link:hover {
  text-decoration: underline;
}
.breadcrumb__current {
  color: #848484;
}

.page-title__band {
  width: 100%;
  background-color: #0f3580;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .page-title__band {
    height: auto;
    padding: 20px;
  }
}
.page-title__heading {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 35px;
  letter-spacing: 0.02em;
  text-align: center;
}
@media (max-width: 768px) {
  .page-title__heading {
    font-size: 26px;
    line-height: 1.4;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

a:hover {
  text-decoration: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
