@charset "UTF-8";

/* ============================================================
   ゼンショー ヘッダー / フッター 専用スタイル（スコープ化）
   ------------------------------------------------------------
   スコープクラス : .zensho-hf
   使い方 : header / .global--overlay / footer をまとめて
            <div class="zensho-hf"> ... </div> で囲む
   ============================================================ */

/* --- 固定ヘッダーのスクロール位置調整（ページ全体に効くためスコープ外） ---
   コンテンツが固定ヘッダーに隠れるのを防ぐためのもの。不要なら削除可。 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 166px;
}
@media screen and (max-width: 1400px) {
  html {
    scroll-padding-top: 228px;
  }
}
@media screen and (max-width: 1199px) {
  html {
    scroll-padding-top: 104px;
  }
}

/* ===== ベース（旧 html / body / * の値をスコープへ移植） ===== */
.zensho-hf {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  color: #000;
  letter-spacing: -4%;
  font-size: 16px;
}
.zensho-hf * {
  position: relative;
  box-sizing: border-box;
  word-break: break-all;
}
html:lang(en) .zensho-hf * {
  word-break: normal;
}

.zensho-hf .search--btn,
.zensho-hf .search--input {
  font-size: 16px;
}

.zensho-hf h1,
.zensho-hf h2,
.zensho-hf h3,
.zensho-hf h4,
.zensho-hf h5 {
  font-weight: 650;
  line-height: 1;
}

.zensho-hf a {
  color: #0046ad;
}
.zensho-hf img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* text-decoration 解除（ヘッダー / フッター該当分のみ） */
.zensho-hf a:hover,
.zensho-hf footer .footer--item,
.zensho-hf footer a,
.zensho-hf header .global--item,
.zensho-hf header .sub-menu a {
  text-decoration: none;
}

/* ===== category-title ===== */
.zensho-hf .category-title {
  padding-left: 1.5rem;
}
.zensho-hf .category-title::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0046ad;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

/* btn--ul 系の擬似要素 content */
.zensho-hf .btn--ul-none::after,
.zensho-hf .btn--ul::after,
.zensho-hf .btn--ul::before {
  content: "";
}

/* ============================================================
   HEADER
   ============================================================ */
.zensho-hf header {
  display: grid;
  gap: 32px;
  padding: 32px 40px 0;
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 100000;
}
.zensho-hf header .logo,
.zensho-hf header .logo a {
  display: inline-flex;
}
.zensho-hf header .header--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.zensho-hf header .sub-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 32px;
  border-right: 1px solid #ccc;
  line-height: 1;
}
.zensho-hf header .sub-menu a {
  color: #000;
  transition: 0.3s ease;
}
.zensho-hf header .sub-menu a:hover {
  color: #0046ad;
  transition: 0.3s ease;
}
.zensho-hf header .top-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.zensho-hf header .top-menu .language,
.zensho-hf header .top-menu .search {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: #000;
  transition: 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-top: 2px;
}
.zensho-hf header .top-menu .language:hover,
.zensho-hf header .top-menu .search:hover {
  color: #0046ad;
  transition: 0.3s ease;
}
.zensho-hf header .top-menu .search[aria-expanded="true"] {
  border-bottom: 2px solid #0046ad;
}
.zensho-hf header .global {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.zensho-hf header .global--item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 0 18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #0046ad;
  white-space: nowrap;
  background: 0 0;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s ease;
}
.zensho-hf header .global--item:hover,
.zensho-hf header .global--item[aria-expanded="true"] {
  color: #0046ad;
  border-bottom-color: #0046ad;
}
.zensho-hf header .global--body {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 80px 32px;
  background: #f8f8f8;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.16);
  z-index: 99;
}
.zensho-hf header .global--body[hidden] {
  display: block;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease;
}
.zensho-hf header .global--body.is-open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  display: block;
}
.zensho-hf header .global--body .btn--close {
  position: absolute;
  top: 0;
  right: 0;
}
.zensho-hf header .global--body [class*="ul"],
.zensho-hf header .global--body [class*="ul"]:hover {
  background: 0 0;
}
.zensho-hf header .global--child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.zensho-hf .global--overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}
.zensho-hf .global--overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.zensho-hf .global--chevron {
  transition: 0.3s ease;
  transform: scaleY(-1);
}
.zensho-hf .global--item[aria-expanded="true"] .global--chevron {
  transform: scaleY(1);
}

.zensho-hf .search--form {
  display: flex;
  align-items: stretch;
  margin: 0 auto;
}
.zensho-hf .search--input {
  flex: 1;
  height: 60px;
  font-family: inherit;
  color: #000;
  border: 1px solid #ccc;
  border-right: none;
  outline: 0;
  background: 0 0;
}
.zensho-hf .search--input::-moz-placeholder {
  color: grey;
}
.zensho-hf .search--input::placeholder {
  color: grey;
}
.zensho-hf .search--input:focus {
  border-color: #0046ad;
}
.zensho-hf .search--btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 60px;
  background: #0046ad;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.zensho-hf .search--btn:hover {
  background: #002e6d;
  transition: 0.3s ease;
}

/* ============================================================
   FOOTER
   ============================================================ */
.zensho-hf footer {
  background: #f8f8f8;
  padding: 80px 0 40px;
}
.zensho-hf footer .footer--menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: flex-start;
}
.zensho-hf footer .footer--item {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 650;
  padding: 0 0 12px;
  border: 0;
  width: auto;
  line-height: 1.5;
  transition: 0.3s ease;
}
.zensho-hf footer .footer--item .arrow {
  transform: translateX(0);
  transition: 0.3s ease;
}
.zensho-hf footer .footer--item::after,
.zensho-hf footer .footer--item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
}
.zensho-hf footer .footer--item::before {
  width: 100%;
  background: #0046ad;
}
.zensho-hf footer .footer--item::after {
  width: 0;
  background: #0046ad;
  transition: 0.3s ease;
}
.zensho-hf footer .footer--item:hover {
  transition: 0.3s ease;
}
.zensho-hf footer .footer--item:hover::before {
  width: 0;
}
.zensho-hf footer .footer--item:hover::after {
  width: 100%;
  transition: 0.3s ease;
}
.zensho-hf footer .footer--item:hover .arrow {
  transform: translateX(4px);
  transition: 0.3s ease;
}
.zensho-hf footer .footer--body {
  display: grid;
  gap: 12px;
}
.zensho-hf footer .footer--body a {
  color: #000;
}
.zensho-hf footer .footer--body a:hover {
  color: #0046ad;
  text-decoration: underline;
}
.zensho-hf footer .footer--btn a {
  color: #666;
  border: 1px solid grey;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  margin-left: -1px;
  font-size: 14px;
  transition: 0.3s ease;
  text-decoration: none;
}
.zensho-hf footer .footer--btn a:hover {
  color: #fff;
  background: grey;
  transition: 0.3s ease;
}
.zensho-hf footer .footer--policy a {
  color: #000;
  font-size: 12px;
  padding: 28px 0;
}
.zensho-hf footer .footer--policy a:hover {
  color: #0046ad;
  text-decoration: underline;
}
.zensho-hf footer .footer--brand {
  margin: 0 40px;
  border-radius: 8px;
  background: #fff;
  padding: 32px 32px 40px;
}

/* ============================================================
   CONTAINER（ヘッダー / フッターで使用する分のみ）
   ============================================================ */

.zensho-hf .container--global {
  max-width: 900px;
  margin: 0 auto;
}
.zensho-hf .container--brand {
  padding: 0 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.zensho-hf .container--brand a {
  width: 60px;
  height: 60px;
  transition: 0.3s ease;
}
.zensho-hf .container--brand a:hover {
  opacity: 0.5;
  transition: 0.3s ease;
}

/* ============================================================
   BUTTON（ヘッダー / フッターで使用する分のみ）
   ============================================================ */
.zensho-hf .btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 650;
  line-height: 1;
  border: 1px solid #0046ad;
  color: #0046ad;
  background: #fff;
  transition: 0.3s ease;
}
.zensho-hf .btn .arrow {
  transform: translateX(0);
  transition: 0.3s ease;
  display: grid;
}
.zensho-hf .btn:not(.btn--ul, .btn--ul-none, .btn--ul-global, .btn--close, .btn--top):hover {
  color: #fff;
  background: #0046ad;
  transition: 0.3s ease;
}
.zensho-hf .btn:hover .arrow {
  transform: translateX(4px);
  transition: 0.3s ease;
}
.zensho-hf .btn--md {
  font-size: 16px;
  padding: 0 20px;
  width: 320px;
  height: 70px;
}
.zensho-hf .btn--lg {
  font-size: 18px;
  padding: 0 32px;
  width: 420px;
  height: 100px;
}
.zensho-hf .btn--ul,
.zensho-hf .btn--ul-none {
  width: -webkit-fit-content;
}
.zensho-hf .btn--ul {
  padding: 12px 0;
  border: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  line-height: 1.5;
  color: #0046ad;
  background: 0 0;
}
.zensho-hf .btn--ul-global,
.zensho-hf .btn--ul-none {
  padding: 4px 0;
  line-height: 1.5;
  border: 0;
}
.zensho-hf .btn--ul::after,
.zensho-hf .btn--ul::before {
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
}
.zensho-hf .btn--ul::before {
  width: 100%;
  background: currentColor;
}
.zensho-hf .btn--ul::after {
  width: 0;
  background: currentColor;
  transition: 0.3s ease;
}
.zensho-hf .btn--ul:hover {
  color: #0046ad;
  transition: 0.3s ease;
}
.zensho-hf .btn--ul:hover::before {
  width: 0;
}
.zensho-hf .btn--ul:hover::after {
  width: 100%;
  transition: 0.3s ease;
}
.zensho-hf .btn--ul-none {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  background: 0 0;
}
.zensho-hf .btn--ul-none::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: currentColor;
  transition: 0.3s ease;
}
.zensho-hf .btn--ul-none:hover {
  color: #0046ad;
  background: 0 0;
  transition: 0.3s ease;
}
.zensho-hf .btn--ul-none:hover::after {
  width: 100%;
  transition: 0.3s ease;
}
.zensho-hf .btn--ul-global {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  color: #000;
  background: 0 0;
}
.zensho-hf .btn--ul-global:hover {
  color: #0046ad;
  transition: 0.3s ease;
}
.zensho-hf .btn--close,
.zensho-hf .btn--top {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0046ad;
  transition: 0.3s ease;
  color: #fff;
}
.zensho-hf .btn--close:hover,
.zensho-hf .btn--top:hover {
  background: #002e6d;
  transition: 0.3s ease;
}
.zensho-hf .btn span {
  flex: 1;
  text-align: center;
}
.zensho-hf .btn--ul span,
.zensho-hf .btn--ul-global span {
  text-align: left;
}

/* ============================================================
   TEXT ユーティリティ（使用分のみ）
   ============================================================ */
.zensho-hf .text--md {
  font-weight: 500;
}
.zensho-hf .text--bold {
  font-weight: 650;
}
.zensho-hf .text--center {
  text-align: center !important;
}
.zensho-hf .text--left {
  text-align: left !important;
}
.zensho-hf .text--right {
  text-align: right !important;
}
.zensho-hf .text--main {
  color: #0046ad;
}
.zensho-hf .text--12 {
  font-size: 12px;
}
.zensho-hf .text--14 {
  font-size: 14px;
}
.zensho-hf .text--16 {
  font-size: 16px;
}
.zensho-hf .text--18 {
  font-size: 18px;
}
.zensho-hf .text--20 {
  font-size: 20px;
}
.zensho-hf .text--40 {
  font-size: 40px;
}
.zensho-hf .text--en {
  font-family: Oswald, sans-serif;
  font-weight: 460 !important;
  letter-spacing: 0;
}

/* ============================================================
   LAYOUT ユーティリティ
   ============================================================ */
.zensho-hf .flex {
  display: flex;
  gap: 16px;
}
.zensho-hf .grid {
  display: grid;
  align-content: flex-start;
  gap: 32px 16px;
}
.zensho-hf .cc {
  justify-content: center;
  align-items: center;
}
.zensho-hf .ac {
  align-items: center;
}
.zensho-hf .ab {
  align-items: baseline;
}
.zensho-hf .between {
  justify-content: space-between;
  flex-wrap: wrap;
}
.zensho-hf .end {
  justify-content: flex-end;
}
.zensho-hf .gap--0 {
  gap: 0;
}
.zensho-hf .gap--8 {
  gap: 8px;
}
.zensho-hf .gap--16 {
  gap: 16px;
}
.zensho-hf .gap--24 {
  gap: 24px;
}
.zensho-hf .gap--32 {
  gap: 32px;
}
.zensho-hf .gap--40 {
  gap: 40px;
}
.zensho-hf .gap--48 {
  gap: 48px;
}
.zensho-hf .gap--64 {
  gap: 64px;
}
.zensho-hf .gap--80 {
  gap: 80px;
}
.zensho-hf .gap--120 {
  gap: 120px;
}

/* ===== SP / PC 表示切替 ===== */
.zensho-hf .sp,
.zensho-hf .sp--br {
  display: none;
}

/* ============================================================
   WOVN 言語切替
   ============================================================ */
.zensho-hf header .top-menu .language .wovn-languages {
  display: none !important;
}
.zensho-hf header .top-menu .language .wovn-languages[data-ready="true"] {
  display: inline-flex !important;
  align-items: center;
  line-height: 1;
}
.zensho-hf header .top-menu .language .wovn-switch {
  cursor: pointer;
  color: #000;
  transition: 0.3s ease;
}
.zensho-hf header .top-menu .language .wovn-switch svg {
  vertical-align: middle;
}
.zensho-hf header .top-menu .language .wovn-switch:hover {
  color: #0046ad;
}
.zensho-hf header .top-menu .language .wovn-switch.selected {
  display: none;
}
.zensho-hf .sp-menu--sub-nav .wovn-languages.sp-lang {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  grid-column: span 6;
  border: 1px solid grey;
  height: 60px;
  margin-top: -1px;
  font-size: 14px;
  color: #666;
}
.zensho-hf .sp-menu--sub-nav .wovn-languages.sp-lang .wovn-switch {
  cursor: pointer;
  color: #666;
}
.zensho-hf .sp-menu--sub-nav .wovn-languages.sp-lang .wovn-switch.selected {
  display: none;
}
html:lang(en) .zensho-hf .english_none {
  display: none;
}
html:lang(ja) .zensho-hf .japanese_none {
  display: none;
}

.zensho-hf .container {
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ============================================================
   @media (max-width: 1919px)
   ============================================================ */
@media screen and (max-width: 1919px) {
}

/* ============================================================
   @media (max-width: 1199px)
   ============================================================ */
@media screen and (max-width: 1199px) {
  /* HEADER (SP) */
  .zensho-hf header .menu--toggle,
  .zensho-hf header .search {
    background: 0 0;
    font-family: inherit;
    display: flex;
  }
  .zensho-hf header.sp {
    display: grid;
    padding: 0;
  }
  .zensho-hf header .header--top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 72px;
  }
  .zensho-hf header .logo img {
    display: block;
    height: 24px;
  }
  .zensho-hf header .top-menu {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .zensho-hf header .search {
    align-items: center;
    gap: 4px;
    border: none;
    font-size: 14px;
    cursor: pointer;
  }
  .zensho-hf header .search--form {
    display: grid;
    gap: 16px;
  }
  .zensho-hf header .search--btn {
    justify-content: center;
  }
  .zensho-hf header .btn--close,
  .zensho-hf header .menu--toggle {
    align-items: center;
    border: none;
    cursor: pointer;
  }
  .zensho-hf header .menu--toggle {
    gap: 6px;
    font-size: 18px;
    color: #0046ad;
    border-left: 1px solid #ccc;
    padding: 0 0 0 16px;
  }
  .zensho-hf header .menu--toggle .menu--open {
    display: block;
  }
  .zensho-hf header .menu--toggle .menu--close,
  .zensho-hf header .menu--toggle[aria-expanded="true"] .menu--open {
    display: none;
  }
  .zensho-hf header .menu--toggle[aria-expanded="true"] .menu--close {
    display: block;
  }
  .zensho-hf header .sp-menu {
    position: fixed;
    top: 72px;
    left: 0;
    height: calc(100vh - 72px);
    overflow-y: auto;
    z-index: 1000;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;
  }
  .zensho-hf header .sp-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .zensho-hf header .sp-menu--body {
    overflow: hidden;
  }
  .zensho-hf header .sp-menu--sub-nav a:nth-child(n + 3) {
    grid-column: span 2;
  }
  .zensho-hf header .global--body {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s ease;
  }
  .zensho-hf header .global--body.is-open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transition: 0.3s ease;
  }
  .zensho-hf header .global--overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }
  .zensho-hf header .global--overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .zensho-hf header .btn--close {
    display: flex;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #1a4fa0;
    color: #fff;
    margin-left: auto;
  }

  /* SP MENU 共通（header / footer 両方で使用） */
  .zensho-hf .sp-menu {
    display: grid;
    width: 100%;
    background: #f8f8f8;
    padding: 16px 32px 40px;
    gap: 16px;
  }
  .zensho-hf .sp-menu--item {
    background: 0 0 !important;
    padding: 20px 0;
  }
  .zensho-hf .sp-menu--arrow {
    flex-shrink: 0;
  }
  .zensho-hf .sp-menu--icon {
    flex: 0 0 24px !important;
    display: flex;
    align-items: center;
    position: relative;
    width: 24px;
    height: 24px;
  }
  .zensho-hf .sp-menu--icon svg {
    position: absolute;
    inset: 0;
    transition: 0.3s ease;
  }
  .zensho-hf .sp-menu--icon .icon-minus,
  .zensho-hf [aria-expanded="true"] .sp-menu--icon .icon-plus {
    opacity: 0;
  }
  .zensho-hf [aria-expanded="true"] .sp-menu--icon .icon-minus {
    opacity: 1;
  }
  .zensho-hf .sp-menu--sub--item {
    display: block;
    padding: 12px 0 12px 16px;
    text-decoration: none;
    color: #000;
    line-height: 1.5;
  }
  .zensho-hf .sp-menu--sub--top {
    font-weight: 650;
    padding: 24px 0 12px;
  }
  .zensho-hf .sp-menu--sub-nav {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 16px;
  }
  .zensho-hf .sp-menu--sub-nav a {
    color: #666;
    border: 1px solid grey;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: calc(100% + 1px);
    height: 60px;
    margin-top: -1px;
    font-size: 14px;
    transition: 0.3s ease;
    grid-column: span 3;
    text-decoration: none;
  }
  .zensho-hf .sp-menu .btn {
    width: 100%;
  }

  /* FOOTER (SP) */
  .zensho-hf footer.sp {
    display: grid;
  }
  .zensho-hf footer .footer--bottom {
    padding-top: 16px;
  }
  .zensho-hf footer .footer--policy a {
    padding: 0;
    font-size: 14px;
  }
  .zensho-hf footer .footer--copy {
    padding-top: 32px;
  }
  .zensho-hf footer .sp-menu {
    padding: 0 20px;
  }

  /* CONTAINER */
  .zensho-hf .container {
    width: 100%;
    padding: 0 20px;
  }

  /* LAYOUT */
  .zensho-hf .flex,
  .zensho-hf .grid {
    width: 100%;
  }
  .zensho-hf .flex {
    display: grid;
  }
  .zensho-hf .gap--32 {
    gap: 24px;
  }
  .zensho-hf .gap--48 {
    gap: 32px;
  }
  .zensho-hf .gap--64 {
    gap: 48px;
  }
  .zensho-hf .gap--80 {
    gap: 64px;
  }

  /* TEXT */
  .zensho-hf .text--40 {
    font-size: 34px;
  }

  /* SP / PC */
  .zensho-hf .sp {
    display: block;
  }
  .zensho-hf .sp--br {
    display: inline;
  }
  .zensho-hf .pc {
    display: none !important;
  }
}

/* ============================================================
   @media (max-width: 767px)
   ============================================================ */
@media screen and (max-width: 767px) {
  .zensho-hf .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
}
