@charset "UTF-8";
/*------------------------------------------------------------------------
// Foundation
------------------------------------------------------------------------*/
/*----------------------------------------
	include
----------------------------------------*/
.l-header,
.l-hamburger,
.l-global-nav,
.l-overlay,
.l-footer {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "Osaka", sans-serif;
  font-weight: 500;
  line-height: 1.5;
}
.l-header a,
.l-hamburger a,
.l-global-nav a,
.l-overlay a,
.l-footer a {
  text-decoration: initial;
}
.l-header img,
.l-hamburger img,
.l-global-nav img,
.l-overlay img,
.l-footer img {
  width: 100%;
  height: auto;
}
.l-header button,
.l-hamburger button,
.l-global-nav button,
.l-overlay button,
.l-footer button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  background: none;
}

/*------------------------------------------------------------------------
// Component
------------------------------------------------------------------------*/
/* 見出し
------------------------------------------------------ */
.c-heading-lv1 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #000;
}
.c-heading-lv1 + * {
  margin-top: 48px;
}

.c-heading-lv2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #000;
}
.c-heading-lv2 + * {
  margin-top: 32px;
}

.c-heading-lv3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #000;
}
.c-heading-lv3 + * {
  margin-top: 32px;
}

/* ボタン
------------------------------------------------------ */
.c-button {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: var(--color);
  background-color: var(--background-color);
  cursor: pointer;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}

.c-button--rounded {
  border-radius: 100vmax;
}

.c-button--fit {
  width: auto;
}

.c-button--xs {
  font-size: 12px;
}

.c-button--sm {
  font-size: 14px;
  line-height: 20px;
}

.c-button--lg {
  font-size: 18px;
  line-height: 28px;
}

.c-button--xl {
  font-size: 20px;
}

.c-button--py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.c-button--py-13 {
  padding-top: 13px;
  padding-bottom: 13px;
}

.c-button--px-32 {
  padding-left: 32px;
  padding-right: 32px;
}

.c-button--primary {
  --color: #fff;
  --background-color: #004098;
}
@media (any-hover: hover) {
  .c-button--primary:hover {
    background: rgba(0, 64, 152, 0.9);
  }
}

.c-button--secondary {
  --color: #004098;
  --background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid #004098;
}
@media (any-hover: hover) {
  .c-button--secondary:hover {
    background: rgba(0, 64, 152, 0.1);
  }
}

.c-button--accent {
  --background-color: #68aeed;
}
@media (any-hover: hover) {
  .c-button--accent:hover {
    background: rgba(104, 174, 237, 0.9);
  }
}

.c-button--accent-light {
  --color: #004098;
  --background-color: #e3f1fc;
}
@media (any-hover: hover) {
  .c-button--accent-light:hover {
    background: rgba(227, 241, 252, 0.9);
  }
}

.c-button--grey {
  --color: #000;
  border: 1px solid #ededed;
}
@media (any-hover: hover) {
  .c-button--grey:hover {
    background: #f8f8f8;
  }
}

.c-button--disabled {
  cursor: default;
  color: rgba(0, 0, 0, 0.6);
  background: #eee;
}

.c-button--action {
  color: #fff;
  --background-color: #009944;
}
@media (any-hover: hover) {
  .c-button--action:hover {
    background: rgba(0, 153, 68, 0.9);
  }
}

.c-button--alert {
  color: #dc2626;
  border: 1px solid #dc2626;
}
@media (any-hover: hover) {
  .c-button--alert:hover {
    background: rgba(220, 38, 38, 0.05);
  }
}

.c-search-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: 100%;
  padding: 15px 48px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #004098;
  background: #fff;
  border: 1px solid #004098;
  cursor: pointer;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}
.c-search-button::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #004098;
  -webkit-mask: url("/assets/images/icon_search.svg") center/contain no-repeat;
          mask: url("/assets/images/icon_search.svg") center/contain no-repeat;
}
@media (any-hover: hover) {
  .c-search-button:hover {
    color: #222;
    background: rgba(0, 64, 152, 0.1);
  }
}

.c-button--edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
.c-button--edit::before {
  content: "";
  width: 1em;
  height: 1em;
  background: var(--color);
  -webkit-mask: url("/assets/images/icon_pencil.svg") center/contain no-repeat;
          mask: url("/assets/images/icon_pencil.svg") center/contain no-repeat;
}

.c-button--add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
.c-button--add::before {
  content: "";
  width: 1em;
  height: 1em;
  background: var(--color);
  -webkit-mask: url("/assets/images/icon_plus.svg") center/contain no-repeat;
          mask: url("/assets/images/icon_plus.svg") center/contain no-repeat;
}

.c-button[disabled] {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}

/* リンク
------------------------------------------------------ */
.c-link {
  width: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color);
  cursor: pointer;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}

.c-link--xs {
  font-size: 12px;
}

.c-link--sm {
  font-size: 14px;
  line-height: 20px;
}

.c-link--lg {
  font-size: 18px;
  line-height: 28px;
}

.c-link--xl {
  font-size: 20px;
}

.c-link--primary {
  --color: #004098;
}
@media (any-hover: hover) {
  .c-link--primary:hover {
    text-decoration: underline;
  }
}

.c-link--grey {
  --color: #666;
}
@media (any-hover: hover) {
  .c-link--grey:hover {
    --color: #222;
  }
}

.c-link--alert {
  --color: #dc2626;
}
@media (any-hover: hover) {
  .c-link--alert:hover {
    --color: #b91c1c;
  }
}

.c-link--prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25em;
}
.c-link--prev::before {
  content: "";
  width: 1em;
  height: 1em;
  background: var(--color);
  -webkit-mask: url("/assets/images/icon_chevron-left.svg") center/contain no-repeat;
          mask: url("/assets/images/icon_chevron-left.svg") center/contain no-repeat;
}

.c-link--next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25em;
}
.c-link--next::after {
  content: "";
  width: 1em;
  height: 1em;
  background: var(--color);
  -webkit-mask: url("/assets/images/icon_chevron-right.svg") center/contain no-repeat;
          mask: url("/assets/images/icon_chevron-right.svg") center/contain no-repeat;
}

@media (any-hover: hover) {
  .c-link--prev.c-link--primary:hover,
  .c-link--next.c-link--primary:hover {
    text-decoration: none;
    color: rgba(0, 64, 152, 0.8);
  }
}

.c-link--edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25em;
}
.c-link--edit::before {
  content: "";
  width: 1em;
  height: 1em;
  background: var(--color);
  -webkit-mask: url("/assets/images/icon_pencil.svg") center/contain no-repeat;
          mask: url("/assets/images/icon_pencil.svg") center/contain no-repeat;
}

/* タグ
------------------------------------------------------ */
.c-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100vmax;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  background: #f0f2f5;
}

/* ページタイトル
------------------------------------------------------ */
.c-page-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: normal;
}
.c-page-title + * {
  margin-top: 24px;
}

/* タブ
------------------------------------------------------ */
[role=tabpanel][aria-hidden=true] {
  display: none;
}

.c-tab {
  margin-bottom: 24px;
}

.c-tab__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.c-tab__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.c-tab__link {
  display: block;
  padding: 16px;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  font-size: 16px;
  text-align: center;
  color: #6b7280;
  border-bottom: 3px solid transparent;
}

.c-tab__link[aria-selected=true] {
  color: #004098;
  background: #f3f6ff;
  border-color: currentColor;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* ページネーション
------------------------------------------------------ */
.p-pagination {
  margin-top: 32px;
}

.p-pagination__link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.p-pagination__link {
  --color: #222;
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition-property: color, background-color, opacity;
  transition-property: color, background-color, opacity;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}
@media (any-hover: hover) {
  .p-pagination__link:hover {
    background: #f0f2f5;
  }
}

.p-pagination__first,
.p-pagination__prev,
.p-pagination__next,
.p-pagination__last {
  position: relative;
}
.p-pagination__first::before,
.p-pagination__prev::before,
.p-pagination__next::before,
.p-pagination__last::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  width: 16px;
  height: 16px;
  background: var(--color);
}

.p-pagination__first::before {
  -webkit-mask: url("/assets/images/icon_first-page.svg") center/contain no-repeat;
          mask: url("/assets/images/icon_first-page.svg") center/contain no-repeat;
}

.p-pagination__prev::before {
  -webkit-mask: url("/assets/images/icon_chevron-left.svg") center/contain no-repeat;
          mask: url("/assets/images/icon_chevron-left.svg") center/contain no-repeat;
}

.p-pagination__next::before {
  -webkit-mask: url("/assets/images/icon_chevron-right.svg") center/contain no-repeat;
          mask: url("/assets/images/icon_chevron-right.svg") center/contain no-repeat;
}

.p-pagination__last::before {
  -webkit-mask: url("/assets/images/icon_last-page.svg") center/contain no-repeat;
          mask: url("/assets/images/icon_last-page.svg") center/contain no-repeat;
}

.p-pagination__current {
  pointer-events: none;
  color: #fff;
  background: #004098;
  border-color: #004098;
}

/*------------------------------------------------------------------------
// Layout
------------------------------------------------------------------------*/
/* ヘッダー
------------------------------------------------------ */
.l-header {
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #ededed;
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__logo {
  width: 140px;
}
.l-header__logo a {
  opacity: 1;
}

.l-header__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__button {
  min-width: 111px;
  margin-right: 16px;
}

/* ハンバーガーメニュー
------------------------------------------------------ */
.l-hamburger {
  position: relative;
  display: grid !important;
  place-content: center;
  width: 24px !important;
  height: 24px;
  cursor: pointer;
}
.l-hamburger span {
  position: relative;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: #333333;
}
.l-hamburger span::before,
.l-hamburger span::after {
  position: absolute;
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: #333;
}

.l-hamburger--open span::before {
  top: -6px;
}
.l-hamburger--open span::after {
  bottom: -6px;
}

.l-hamburger--close {
  width: 40px !important;
  height: 40px;
}
.l-hamburger--close span {
  background: transparent;
}
.l-hamburger--close span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-hamburger--close span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* グローバルナビゲーション
------------------------------------------------------ */
.l-global-nav {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  visibility: hidden;
  -webkit-transition-property: visibility, -webkit-transform;
  transition-property: visibility, -webkit-transform;
  transition-property: transform, visibility;
  transition-property: transform, visibility, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
@media (min-width: 640px) {
  .l-global-nav {
    -webkit-transform: translateX(320px);
            transform: translateX(320px);
    width: 320px;
  }
}
.l-global-nav.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
}

.l-global-nav__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #ededed;
}

.l-global-nav__body {
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 32px;
  height: calc(100% - 105px);
}

.l-global-nav__list li:not(:first-child) {
  margin-top: 32px;
}

.l-global-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 16px;
  color: #333333;
}

.l-global-nav img {
  width: 24px;
  height: 24px;
  -webkit-filter: invert(18%) sepia(60%) saturate(0%) hue-rotate(181deg) brightness(92%) contrast(96%);
          filter: invert(18%) sepia(60%) saturate(0%) hue-rotate(181deg) brightness(92%) contrast(96%);
}

.l-global-nav__link--external::after {
  content: "";
  width: 16px;
  height: 16px;
  background: #333333;
  -webkit-mask: url("/assets/images/icon_external-link.svg") center/contain no-repeat;
          mask: url("/assets/images/icon_external-link.svg") center/contain no-repeat;
}

/* 背景固定
------------------------------------------------------ */
.l-overlay {
  display: none;
  position: fixed;
  z-index: 40;
  inset: 0;
  background: #000;
  opacity: 0.5;
}

/* l-main
------------------------------------------------------ */
.l-main {
  padding: 32px 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-main--top {
  padding: 0;
}
.l-main-mypage {
  padding: 24px 0;
}

/* l-footer
------------------------------------------------------ */
.l-footer {
  margin-top: 40px;
  padding: 32px 0;
  background: none !important;
}
.l-footer--white {
  background: #fff !important;
}

.l-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px 16px;
  font-weight: 500 !important;
}
.l-footer__list li {
  font-size: 14px;
  text-align: center;
}
@media (any-hover: hover) {
  .l-footer__list a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}

.l-footer__copyright {
  margin-top: 24px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #666;
  text-align: center;
}

@media (min-width: 640px) {
  .l-footer__list {
    gap: 8px 32px;
  }
  .l-footer__list li {
    width: auto;
  }
  .l-footer__copyright {
    margin-top: 16px;
  }
}
/* l-wrapper
------------------------------------------------------ */
.l-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
.l-wrapper.is-noscroll {
  overflow: auto;
  scrollbar-gutter: stable;
}/*# sourceMappingURL=group-3.css.map */