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

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

footer.footer_02,
.l-header {
  margin: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fff;
  min-width: 1000px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 40px);
}

/* =========================
  ヘッダー
========================= */
.new_header02 {
  padding: 140px 0 0;
}

.l-header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 10;
  isolation: isolate;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.l-header_inner {
  padding: 12px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 100px;
}

.l-header_hamburger {
  display: none;
}

.l-header_sp_cta {
  display: none;
}

.l-mobile-menu {
  display: none;
}

.l-header_nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.l-header_nav_loginbutton {
  border-left: 1px solid #000;
  padding-left: 24px;
}

.l-header_nav_menu_list,
.l-header_nav_button_list,
.l-header_nav_loginbutton_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.l-header_nav_button_list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 12px;
}

.l-header_nav_button_item {
  min-width: max-content;
}

.l-header_nav_loginbutton_list {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.l-header_nav_menu_item a,
.l-header_nav_button_item a,
.l-header_nav_loginbutton_item a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 6px;
  display: inline-block;
}

.l-header_nav_menu_item a {
  position: relative;
  padding-right: 22px;
}

.l-header_nav_menu_item a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #273f67;
}

.l-header_nav_menu_item a::before {
  content: "";
  position: absolute;
  right: 7px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}

.l-header_nav_button_item a,
.l-header_nav_loginbutton_item a {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.l-header_nav_button_item a {
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  white-space: nowrap;
  transition-property: opacity;
  transition-duration: 0.3s;
}

.l-header_nav_button_item:first-child a:hover {
  opacity: 0.6;
}

.l-header_nav_button_item a:hover {
  opacity: 0.7;
}

.l-header_nav_loginbutton_item a {
  width: 100%;
  text-align: left;
  color: #fff;
  font-size: 12px;
  padding: 8px 16px;
  position: relative;
  transition-property: opacity;
  transition-duration: 0.3s;
}

.l-header_nav_loginbutton_item a:hover {
  opacity: 0.8;
}

.l-header_nav_loginbutton_item a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}

.l-header_nav_loginbutton_item a:hover::after {
  opacity: 1;
}

/* 管理者ログイン */
.l-header_nav_loginbutton_item:first-child a::after {
  content: "法人管理者様向けWeb";
}

/* 利用者ログイン */
.l-header_nav_loginbutton_item:last-child a::after {
  content: "法人利用者様向けWeb";
}

.l-header_nav_loginbutton_item a::after,
.l-header_nav_loginbutton_item a::before {
  pointer-events: none;
}

.l-header_nav_loginbutton_item a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: #000;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.l-header_nav_loginbutton_item a:hover::before {
  opacity: 1;
}

.l-header_nav_loginbutton_item:first-child a {
  background: #315EA8;
  z-index: 2;
}

.l-header_nav_loginbutton_item:last-child a {
  background: #fff;
  box-shadow:
    inset 0 0 0 2px #315EA8,
    0 4px 4px rgba(0, 0, 0, 0.15);
  color: #273F67;
}

/* 資料ダウンロード / 入会申込 */
.l-header_nav_button_item:first-child a {
  background: #fff;
  box-shadow:
    inset 0 0 0 3px #315EA8,
    0 4px 4px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: clip;
  z-index: 1;
  transition: color .3s ease;
  transition-property: opacity;
  transition-duration: 0.3s;
}

.l-header_nav_button_item:first-child a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(/new_common/images/icon_external_bk2.svg) no-repeat center / contain;
  margin-right: 16px;
  vertical-align: middle;
  position: absolute;
  right: -7px;
  top: 40%;
}

.l-header_nav_button_item:last-child a {
  background: #ffd300;
  color: #000;
}

.l-header_nav_menu_item a:hover {
  opacity: 0.9;
}

.l-header_nav_menu_item a:focus-visible,
.l-header_nav_button_item a:focus-visible {
  outline: 3px solid rgba(11, 99, 246, 0.35);
  outline-offset: 2px;
}

.l-header_nav_button_item:last-child a {
  background: #ffd300;
  color: #000;
  position: relative;
  overflow: clip;
  z-index: 1;
}

/* =========================
  フッター
========================= */
footer.footer_02 {
  background: #E9EAED;
  padding: 80px 16px;
  border-top: none;
}

footer.footer_02 .footer_inner {
  max-width: 1200px;
  margin: auto;
}

footer.footer_02 .footer_inner_menu {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  row-gap: 40px;
  padding-bottom: 40px;
}

footer.footer_02 .footer_inner_menu li a {
  position: relative;
  padding-right: 22px;
  color: #000;
}

footer.footer_02 .footer_inner_menu li a:before {
  content: "";
  position: absolute;
  right: 7px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}

footer.footer_02 .footer_inner_menu li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #273f67;
}

footer.footer_02 .footer_inner_sub-menu li {
  width: 100%;
  margin-top: 14px;
}

footer.footer_02 .footer_inner_sub-menu li a {
  font-size: 14px;
  text-decoration: underline;
  color: #000;
  position: relative;
}

footer.footer_02 .footer_inner_sub-menu li a::before,
footer.footer_02 .footer_inner_sub-menu li a::after {
  content: none;
}

footer.footer_02 .footer_inner_sub-menu li .target_blank::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(/new_common/images/icon_external_bk.svg) no-repeat center / contain;
  margin-right: 16px;
  vertical-align: middle;
  position: absolute;
  right: -12px;
  border-radius: 0;
}

footer.footer_02 .footer_inner_menu_title {
  font-size: 16px;
  font-weight: 600;
}

footer.footer_02 .footer_inner_menu_login {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer.footer_02 .company_info {
  padding-top: 40px;
  border-top: solid 1px #000;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

footer.footer_02 .company_info_detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer.footer_02 .company_name {
  font-size: 16px;
  font-weight: 600;
}

footer.footer_02 .company_info_detail_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

footer.footer_02 .company_info_detail_menu li {
  position: relative;
  padding: 0 22px;
}

footer.footer_02 .company_info_detail_menu li:first-child {
  padding-left: 0;
}

footer.footer_02 .company_info_detail_menu li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1em;
  background: #000;
}

footer.footer_02 .company_info_detail_menu li a {
  font-size: 14px;
  color: #000;
  white-space: nowrap;
  position: relative;
}

footer.footer_02 .company_info_detail_menu li .target_blank::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(/new_common/images/icon_external_bk.svg) no-repeat center / contain;
  margin-right: 16px;
  vertical-align: middle;
  position: absolute;
  top: 20%;
  border-radius: 0;
  right: -32px;
}

footer.footer_02 .copyright {
  font-size: 14px;
}

footer.footer_02 .footer_inner_menu li a:before {
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}

footer.footer_02 .footer_inner_menu li a::after {
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}

footer.footer_02 .footer_inner_menu li a:hover::before {
  transform: translate(4px, -50%) rotate(45deg);
}

footer.footer_02 .footer_inner_menu li a:hover::after {
  transform: translate(4px, -50%);
}

footer.footer_02 a::after, .l-header_nav_menu_item a::after {
  transition: transform .25s ease;
}

footer.footer_02 a::before, .l-header_nav_menu_item a::before {
  transition: transform .25s ease;
}

footer.footer_02 a:hover::after, .l-header_nav_menu_item a:hover::after {
  transform: translate(4px, -50%);
}

footer.footer_02 a:hover::before, .l-header_nav_menu_item a:hover::before {
  transform: translate(4px, -50%) rotate(45deg);
}

@media (max-width:1130px) {
  .l-header_inner {
    padding: 12px 20px;
  }

  .l-header_nav {
    gap: 14px;
  }

  .l-header_nav_loginbutton {
    padding-left: 14px;
  }

  .l-header_nav_button_item a {
    padding: 16px 12px;
  }

  .l-header_nav_loginbutton_item a {
    padding: 8px;
  }

  .l-header_nav_menu_item a, .l-header_nav_button_item a {
    font-size: 13px;
  }
}