@charset "UTF-8";
/* ///////////////////////////////////////////////

　common style for modern browser
　Version: 4.0

/////////////////////////////////////////////// */
/* Base
----------------------------------------------- */
/*
　各要素のスタイルを初期化し、デフォルトのスタイルを定義
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=STIX+Two+Text&family=Shippori+Mincho&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border: none;
  background: none;
  outline: none;
  appearance: none;
}

:where(a) {
  text-underline-offset: 0.1ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg) {
  max-inline-size: 100%;
  block-size: auto;
  vertical-align: bottom;
}

:where(p, li, dt, dd, th, td, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(picture) {
  display: block;
}

:where(i, em) {
  font-style: normal;
}

/* Module
----------------------------------------------- */
.ul-disc > li {
  list-style: disc;
  margin-left: 1.5em;
}

.ol-decimal > li {
  list-style: decimal;
  margin-left: 1.5em;
}

/* State
----------------------------------------------- */
.hidden {
  display: none;
}

.hidden-pc {
  display: none;
}

@media (max-width: 960px) {
  .hidden-pc {
    display: block;
  }
  .hidden-pc.inline {
    display: inline-block;
  }
  .hidden-tab {
    display: none;
  }
}
@media (max-width: 520px) {
  .hidden-tab {
    display: block;
  }
  .hidden-tab.inline {
    display: inline-block;
  }
  .hidden-sp {
    display: none;
  }
}
@media (orientation: landscape) and (max-width: 960px) {
  .hidden-land {
    display: none;
  }
}
/* Utillity
----------------------------------------------- */
/* Text */
.taR {
  text-align: right;
}

.taL {
  text-align: left;
}

.taC {
  text-align: center;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* Image */
a img {
  backface-visibility: hidden;
  transition: all 0.2s;
}
@media (hover: hover) {
  a:hover img {
    opacity: 0.8;
  }
}

*[class|=logo] a:hover {
  text-decoration: none;
}
*[class|=logo] a:hover img {
  opacity: 1;
}

a.tel {
  text-decoration: none;
}
a.tel img {
  opacity: 1;
}

/* button */
.btn {
  display: inline-block;
  backface-visibility: hidden;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .btn:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  .btn:hover img {
    opacity: 1;
  }
}

/* ///////////////////////////////////////////////

　サイト全般のスタイル
　header,footer,modules

/////////////////////////////////////////////// */
/*
300 Light
400 Regular
500 Medium
600 SemiBold
700 Bold
800 ExtraBold
900 Black
*/
/*
  FONT
----------------------------------------------- */
:root {
  --color-text-base: #000;
  --color-blue: #287fbd;
  --color-litht-blue: #5399ca;
  --font-gothic: "Noto Sans JP", sans-serif;
  --font-mincho: "Shippori Mincho", serif;
  --font-en: "STIX Two Text", serif;
}
@media screen and (min-width: 961px) {
  :root {
    font-size: 1px;
  }
  :root.fontLarge {
    font-size: 1.2px;
  }
}
@media screen and (max-width: 960px) {
  :root {
    font-size: 0.86px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-text-base);
  font-size: 15rem;
  font-family: var(--font-gothic);
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
}

:is(p) {
  line-height: 1.6;
}

:is(li, dt, dd, th, td) {
  line-height: 1.6;
}

:is(a) {
  color: inherit;
}
:is(a):hover {
  text-decoration: none;
}

.ffE {
  font-family: var(--font-en);
}

.ffM {
  font-family: var(--font-mincho);
}

/*
  LAYOUT
----------------------------------------------- */
@media screen and (max-width: 960px) {
  body.isMenuOpen {
    overflow: hidden;
  }
}

/*
  HEADER
----------------------------------------------- */
.header {
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  padding-inline: calc(50% - 840px);
  padding-block: 15px;
}
@media screen and (max-width: 1720px) {
  .header {
    padding-inline: 20px;
  }
}
@media (max-width: 960px) {
  .header {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 961px) {
  .header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
@media screen and (max-width: 960px) {
  .header {
    position: fixed;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.header .logo a {
  display: block;
  background-size: 100%;
  background-position: center;
  text-indent: -9999px;
}
@media screen and (min-width: 961px) {
  .header .logo {
    grid-area: 1/1/3/2;
  }
  .header .logo a {
    width: 370px;
    height: 44px;
  }
}
@media screen and (max-width: 960px) {
  .header .logo {
    position: relative;
    z-index: 15;
    margin-right: auto;
  }
  .header .logo a {
    width: 185px;
    height: 22px;
  }
}
@media screen and (min-width: 961px) {
  .header-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
@media screen and (max-width: 960px) {
  .header-link {
    z-index: 15;
  }
}
.header-link-menu .menu3 {
  cursor: pointer;
}
.header-link-menu a, .header-link-menu span {
  font-weight: 600;
  white-space: nowrap;
}
.header-link-menu i {
  height: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 961px) {
  .header-link-menu {
    display: flex;
    gap: 1.8em;
  }
  .header-link-menu li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3em;
  }
  .header-link-menu a {
    text-decoration: none;
  }
  .header-link-menu a:hover {
    text-decoration: underline;
  }
  .header-link-menu .menu1 i {
    width: 11.5px;
  }
  .header-link-menu .menu2 i {
    width: 15px;
  }
  .header-link-menu .menu3 i {
    width: 16px;
  }
  .header-link-menu .menu4 i {
    width: 17px;
  }
}
@media screen and (max-width: 960px) {
  .header-link-menu :is(.menu1, .menu2, .menu4) {
    display: none;
  }
  .header-link-menu i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background-color: #4892c7;
    background-size: 18px;
    border-radius: 50%;
    opacity: 0.9;
  }
  .header-link-menu span {
    display: none;
  }
}
.header-link-lang {
  margin-left: 40px;
  margin-right: -1px;
  position: relative;
  position: relative;
}
@media screen and (max-width: 960px) {
  .header-link-lang {
    display: none;
  }
}
.header-link-lang > * {
  font-size: 12rem;
  font-weight: 600;
}
.header-link-lang dt {
  position: relative;
  z-index: 3;
  padding-inline: 24px 12px;
  padding-block: 0 1px;
  background: no-repeat 2px center/15px;
  cursor: pointer;
}
.header-link-lang dd {
  position: absolute;
  z-index: 2;
  top: -3px;
  left: 0;
  right: 0;
  display: grid;
  padding-inline: 7px 12px;
  padding-block: 25px 8px;
  background-color: #e6e6e6;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  color: var(--color-text-base);
  white-space: nowrap;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.header-link-lang dd span {
  padding-left: 16px;
}
.header-link-lang dd > span.active {
  background: url(../img/mrk-lang.svg) no-repeat left center/10px;
}
.header-link-lang.open dt {
  background: none !important;
  color: var(--color-text-base);
}
.header-link-lang.open dd {
  opacity: 1;
  pointer-events: inherit;
}
.header-link-font {
  display: flex;
  align-items: center;
  gap: 3px;
}
.header-link-font > * {
  font-size: 12rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.header-link-font dt {
  margin-right: 5px;
  padding-left: 12px;
  border-left: 1px solid;
}
.header-link-font dd {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 18px;
  border: 1px solid;
  border-radius: 3px;
  padding-bottom: 1px;
  cursor: pointer;
}
.header-link-font dd.active {
  background-color: #fff;
  color: var(--color-text-base);
}
@media screen and (max-width: 960px) {
  .header-link-font {
    display: none;
  }
}
.header-cta {
  display: grid;
}
.header-cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6em;
  text-decoration: none;
  font-weight: 500;
}
@media screen and (min-width: 961px) {
  .header-cta {
    width: fit-content;
    margin-top: 13px;
    margin-left: auto;
    grid-template-columns: auto auto;
    gap: 10px;
  }
  .header-cta a {
    height: 37px;
    padding-inline: 20px;
    border-radius: 40px;
  }
  .header-cta .number {
    transform: translateY(-0.04em);
    font-size: 22px;
  }
}
@media screen and (max-width: 960px) {
  .header-cta {
    position: fixed !important;
    z-index: 15;
    bottom: 0;
    left: 0;
    right: 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .header-cta a {
    height: 46px;
    gap: 3px;
    flex-direction: column;
    border: none !important;
    color: #fff;
    font-size: 11px;
  }
  .header-cta .mainnum {
    background: linear-gradient(90deg, #3283b2, #18757c);
  }
  .header-cta .hotline {
    background: linear-gradient(90deg, #555996, #71468a);
  }
  .header-cta .number {
    font-size: 18px;
  }
}

.home .header {
  position: fixed;
  color: #fff;
}
.home .header .logo, .home .header .header-link, .home .header .header-cta {
  position: relative;
}
.home .header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(#000c1f, rgba(0, 12, 31, 0));
  opacity: 0.6;
  mix-blend-mode: multiply;
  pointer-events: none;
}
@media screen and (min-width: 961px) {
  .home .header {
    position: fixed;
    /* position: absolute; */
  }
  .home .header::before {
    height: 220px;
  }
}
@media screen and (max-width: 960px) {
  .home .header::before {
    height: 94px;
  }
}
.home .header .logo a {
  background-image: url(../img/logo-w.svg);
}
.home .header .menu1 i {
  background-image: url(../img/ico-access-w.svg);
}
.home .header .menu2 i {
  background-image: url(../img/ico-recruit-w.svg);
}
.home .header .menu3 i {
  background-image: url(../img/ico-search-w.svg);
}
.home .header .menu4 i {
  background-image: url(../img/ico-cta-w.svg);
}
.home .header-link-lang dt {
  background-image: url(../img/ico-lang-w.svg);
}
.home .header-link-font dd {
  border-color: #fff;
}
.home .header-link-font dd.active {
  background-color: #fff;
}
.home .header-cta a {
  border: 1px solid currentColor;
}

.subpage .header {
  position: fixed;
  background-color: #fff;
}
.subpage .header .logo a {
  background-image: url(../img/logo-b.svg);
}
.subpage .header-link-menu :is(a, span) {
  color: #3b5997;
}
.subpage .header .menu1 i {
  background-image: url(../img/ico-access-b.svg);
}
.subpage .header .menu2 i {
  background-image: url(../img/ico-recruit-b.svg);
}
.subpage .header .menu3 i {
  background-image: url(../img/ico-search-b.svg);
}
@media screen and (max-width: 960px) {
  .subpage .header .menu3 i {
    background-image: url(../img/ico-search-w.svg);
  }
}
.subpage .header .menu4 i {
  background-image: url(../img/ico-cta-b.svg);
}
.subpage .header-link-lang dt {
  background-image: url(../img/ico-lang-b.svg);
}
.subpage .header-link-font dd {
  border-color: #ccc;
}
.subpage .header-link-font dd.active {
  border-color: #666;
  background-color: #666;
  color: #fff;
}
.subpage .header-cta a {
  color: #fff;
}
.subpage .header-cta .mainnum {
  background: linear-gradient(90deg, #3283b2, #18757c);
}
.subpage .header-cta .hotline {
  background: linear-gradient(90deg, #555996, #71468a);
}

@media screen and (max-width: 960px) {
  .isMenuOpen .header .logo a {
    background-image: url(../img/logo-b.svg);
  }
}

/*
  MENU
----------------------------------------------- */
@media screen and (min-width: 961px) {
  .gnav {
    grid-area: 3/1/4/3;
    margin-top: 10px;
  }
}
@media screen and (max-width: 960px) {
  .gnav {
    position: fixed !important;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 46px;
    padding: 20px;
    padding-top: 83px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    background-color: #fff;
    transition: 0.4s;
  }
}
@media screen and (min-width: 961px) {
  .gnav-sp-menu {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .gnav-sp-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 10px;
  }
  .gnav-sp-menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 28px;
    background-color: #25478c;
    color: #fff;
    text-decoration: none;
  }
  .gnav-sp-menu i {
    scale: 0.85;
  }
}
.gnav-list {
  position: relative;
  display: flex;
}
@media screen and (min-width: 961px) {
  .gnav-list {
    justify-content: center;
    align-items: center;
    gap: 2em;
  }
}
@media screen and (max-width: 960px) {
  .gnav-list {
    flex-direction: column;
  }
}
@media screen and (min-width: 961px) {
  .gnav-list > li:hover > a::after {
    opacity: 1;
  }
  .gnav-list > li:hover .gnav-subpage {
    opacity: 1;
    pointer-events: inherit;
  }
}
@media screen and (max-width: 960px) {
  .gnav-list > li {
    position: relative;
    border-bottom: 1px solid #ccc;
  }
}
.gnav-mainpage {
  position: relative;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
}
@media screen and (min-width: 961px) {
  .gnav-mainpage {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 5px 19px;
    font-size: 17px;
  }
  .gnav-mainpage::after {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
  }
}
@media screen and (max-width: 960px) {
  .gnav-mainpage {
    display: flex;
    align-items: center;
    gap: 13px;
    height: 63px;
    color: var(--color-text-base);
    /* font-size: 14px; */
    font-size: 16px;
  }
  .gnav-mainpage::before, .gnav-mainpage::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    text-rendering: auto;
    flex-shrink: 0;
  }
  .gnav-mainpage::before {
    width: 20px;
    aspect-ratio: 1;
    border: 1px solid #287fbd;
    border-radius: 50%;
    content: "";
  }
  .gnav-mainpage::after {
    position: absolute;
    left: 6px;
    content: "\f061";
    color: #287fbd;
    font-size: 9px;
  }
}
.gnav .btnOpenMenu {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 63px;
  color: #287fbd;
  cursor: pointer;
}
@media screen and (min-width: 961px) {
  .gnav .btnOpenMenu {
    display: none;
  }
}
.gnav .btnOpenMenu::before, .gnav .btnOpenMenu::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.gnav .btnOpenMenu::before {
  content: "+";
}
.gnav .btnOpenMenu.active::before {
  content: "\f068";
}
.gnav .btnOpenMenu::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 17px;
  background-color: #ccc;
}
@media screen and (min-width: 961px) {
  .gnav-subpage {
    display: block !important;
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    right: 0;
    max-width: 1330px;
    margin: auto;
    padding-block: 20px 40px;
    padding-inline: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    color: var(--color-text-base);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
  }
}
@media screen and (max-width: 960px) {
  .gnav-subpage {
    margin-left: 34px;
    margin-bottom: 20px;
    color: var(--color-text-base);
  }
}
.gnav-subpage-title {
  display: flex;
  align-items: center;
  gap: 0.6em;
  color: #287fbd;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
.gnav-subpage-title::before, .gnav-subpage-title::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.gnav-subpage-title::before {
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background-color: currentColor;
}
.gnav-subpage-title::after {
  position: absolute;
  left: 6.5px;
  content: "\f105";
  color: #fff;
  font-size: 11px;
}
@media screen and (min-width: 961px) {
  .gnav-subpage-title {
    max-width: 1100px;
    margin: auto;
    padding-block: 20px;
    border-bottom: 1px solid currentColor;
    font-size: 20rem;
  }
}
@media screen and (max-width: 960px) {
  .gnav-subpage-title {
    display: none;
  }
}
.gnav-subpage-menu {
  font-weight: 500;
}
.gnav-subpage-menu li {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.4;
}
.gnav-subpage-menu li::before, .gnav-subpage-menu li::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.gnav-subpage-menu li::before {
  position: absolute;
  left: 0;
  top: 0.51em;
  content: "\f105";
}
@media screen and (min-width: 961px) {
  .gnav-subpage-menu {
    max-width: 1100px;
    margin: auto;
    margin-top: 10px;
    column-count: 4;
  }
  .gnav-subpage-menu > li {
    padding-top: 0.6em;
    break-inside: avoid;
  }
  .gnav-subpage-menu > li::before {
    top: 1.3em;
    font-size: 11px;
  }
}
@media screen and (max-width: 960px) {
  .gnav-subpage-menu > li {
    margin-bottom: 0.7em;
    /* font-size: 12px; */
    font-size: 15px;
  }
  .gnav-subpage-menu > li::before {
    font-size: 9px;
  }
}
.gnav-subpage a {
  text-decoration: none;
}
.gnav-subpage a:hover {
  text-decoration: underline;
}
.gnav-sub-subpage {
  border-left: 1px solid #ccc;
}
.gnav-sub-subpage > li {
  break-inside: avoid;
}
.gnav-sub-subpage > li::before {
  color: #666;
}
.gnav-sub-subpage > li a {
  font-size: 15rem;
}
@media screen and (min-width: 961px) {
  .gnav-sub-subpage {
    margin-top: 15px;
    padding-left: 20px;
  }
  .gnav-sub-subpage > li {
    font-size: 18rem;
  }
  .gnav-sub-subpage > li::before {
    font-size: 10px;
  }
  .gnav-sub-subpage > li + li {
    margin-top: 0.4em;
  }
}
@media screen and (max-width: 960px) {
  .gnav-sub-subpage {
    margin-top: 15px;
    margin-left: 20px;
    padding-left: 20px;
  }
  .gnav-sub-subpage > li {
    /* font-size: 11rem; */
    font-size: 18rem;
  }
  .gnav-sub-subpage > li::before {
    font-size: 8px;
  }
  .gnav-sub-subpage > li + li {
    margin-top: 0.4em;
  }
}
.gnav .debug {
  opacity: 1;
  pointer-events: inherit;
}

.isMenuOpen .gnav {
  opacity: 1;
  pointer-events: inherit;
}

.home .gnav-mainpage::after {
  background-color: #fff;
}

.subpage .gnav-mainpage::after {
  background-color: #287fbd;
}
@media screen and (max-width: 960px) {
  .subpage .gnav-mainpage::after {
    background-color: #fff;
  }
}

/*
  BUTTON MENU
----------------------------------------------- */
.btnMenu {
  z-index: 12;
  place-items: center;
  width: 42px;
  height: 42px;
  display: none;
  background: #1e293f;
  background: #000c1f;
  opacity: 0.8;
  border-radius: 50%;
  transition: 0.2s;
}
.btnMenu::before, .btnMenu::after, .btnMenu span {
  grid-area: 1/1;
  content: "";
  width: 19px;
  height: 1px;
  background: #fff;
  transition: 0.2s;
}
.btnMenu::before {
  translate: 0 -6px;
}
.btnMenu::after {
  translate: 0 6px;
}
@media screen and (max-width: 960px) {
  .btnMenu {
    display: grid;
  }
}

.isMenuOpen .btnMenu {
  opacity: 0.5;
}
.isMenuOpen .btnMenu::before {
  rotate: 45deg;
  translate: 0;
}
.isMenuOpen .btnMenu::after {
  rotate: -45deg;
  translate: 0;
}
.isMenuOpen .btnMenu span {
  opacity: 0;
}

/*
  FOOTER
----------------------------------------------- */
.footer {
  position: relative;
}
@media screen and (min-width: 961px) {
  .footer-access {
    display: grid;
    grid-template-columns: 51% 1fr;
  }
}
.footer-access .map {
  position: relative;
}
.footer-access .map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .footer-access .map {
    height: 400px;
  }
}
@media screen and (min-width: 961px) {
  .footer-access .info {
    padding-block: 50px;
    padding-inline: 50px 20px;
  }
}
@media screen and (max-width: 960px) {
  .footer-access .info {
    padding-block: 15px 20px;
    padding-inline: 15px;
    font-size: 11px;
  }
  .footer-access .info .logo {
    width: 185px;
  }
}
.footer-access .address {
  padding-block: 1.1em 0.9em;
  font-style: normal;
}
.footer-access .time {
  padding-block: 0.9em 1.1em;
}
.footer-access .link {
  color: #287fbd;
  font-weight: 500;
  text-decoration: none;
}
.footer-access .link:hover {
  text-decoration: underline;
}
.footer-access .link i {
  margin-left: 0.7em;
}
.footer-access .buttons {
  display: grid;
}
.footer-access .buttons a {
  gap: 0.5em;
  white-space: nowrap;
}
.footer-access .buttons a .num {
  font-size: 170%;
  transform: translateY(-0.04em);
}
@media screen and (min-width: 961px) {
  .footer-access .buttons {
    gap: 10px;
    justify-items: start;
  }
  .footer-access .buttons a {
    width: auto;
    height: 37px;
    padding: 0 2em;
    font-size: 16rem;
  }
}
@media screen and (max-width: 960px) {
  .footer-access .buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .footer-access .buttons a {
    border-radius: 15px;
    flex-direction: column;
    height: 60px;
    font-size: 12px;
  }
}
.footer-note {
  background-color: #eeeeef;
  padding: 0.8em;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .footer-note {
    font-size: 10px;
  }
}
.footer-banner {
  padding-inline: calc(50% - 470px);
  display: grid;
}
@media screen and (max-width: 980px) {
  .footer-banner {
    padding-inline: 20px;
  }
}
@media (max-width: 960px) {
  .footer-banner {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 961px) {
  .footer-banner {
    padding-top: 30px;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 960px) {
  .footer-banner {
    padding-top: 20px;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 520px) {
  .footer-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer-pagetop {
  display: flex;
  align-items: center;
  gap: 0.6em;
  color: #287fbd;
}
@media screen and (min-width: 961px) {
  .footer-pagetop {
    position: absolute;
    bottom: 370px;
    right: 50px;
    writing-mode: vertical-rl;
    font-feature-settings: "pkna";
  }
}
@media screen and (max-width: 960px) {
  .footer-pagetop {
    padding-top: 30px;
    flex-direction: column;
  }
}
.footer-pagetop::before {
  content: "";
  background: linear-gradient(#5eacd5, #00609a);
  width: 1px;
  height: 45px;
}
@media screen and (max-width: 960px) {
  .footer-pagetop::before {
    height: 23px;
  }
}
.footer-pagetop a {
  text-decoration: none;
}
.footer-navi {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 961px) {
  .footer-navi {
    gap: 3em;
    padding-top: 60px;
  }
}
@media screen and (max-width: 960px) {
  .footer-navi {
    gap: 1.5em;
    padding-top: 30px;
    font-size: 11px;
  }
}
.footer-copyright {
  display: block;
  color: #666;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .footer-copyright {
    padding-block: 60px 50px;
    font-size: 12rem;
  }
}
@media screen and (max-width: 960px) {
  .footer-copyright {
    padding-block: 35px 85px;
    font-size: 8px;
  }
}

/*
  サイト内検索
----------------------------------------------- */
.search-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  background-color: #fff;
  color: var(--color-text-base);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.search-box.isOpen {
  opacity: 1;
  pointer-events: inherit;
}
@media screen and (min-width: 961px) {
  .search-box {
    width: 620px;
    max-width: 100%;
    border-radius: 10px;
    padding: 25px 60px 30px;
  }
}
@media screen and (max-width: 960px) {
  .search-box {
    width: 335px;
    border-radius: 6px;
    padding: 20px 15px;
  }
}
.search-box-title {
  margin-bottom: 1em;
  color: #25478c;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .search-box-title {
    font-size: 17rem;
  }
}
@media screen and (max-width: 960px) {
  .search-box-title {
    font-size: 14px;
  }
}
.search-box-form {
  position: relative;
}
.search-box-form input[type=text] {
  appearance: none;
  border: 1px solid #25478c;
  border-radius: 2em;
  box-shadow: 0;
  padding: 0 1em;
  width: 100%;
  height: 37px;
}
.search-box-form button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .search-box-form button {
    width: 24px;
  }
}
.search-box .btnSearchClose {
  position: absolute;
  color: #25478c;
}
@media screen and (min-width: 961px) {
  .search-box .btnSearchClose {
    top: 15px;
    right: 15px;
    font-size: 24px;
    line-height: 20px;
  }
}
@media screen and (max-width: 960px) {
  .search-box .btnSearchClose {
    top: 10px;
    right: 10px;
    font-size: 20px;
    line-height: 18px;
  }
}

/*
  重要なお知らせ
----------------------------------------------- */
.important-info {
  position: relative;
  padding-inline: calc(50% - 730px);
}
@media screen and (max-width: 1500px) {
  .important-info {
    padding-inline: 20px;
  }
}
@media (max-width: 960px) {
  .important-info {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 961px) {
  .important-info {
    margin-top: -110px;
  }
}
@media screen and (max-width: 960px) {
  .important-info {
    margin-top: -60px;
  }
}
.important-info-content {
  background-color: #fdf5f4;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  padding-inline: calc(50% - 550px);
}
@media screen and (max-width: 1140px) {
  .important-info-content {
    padding-inline: 20px;
  }
}
@media (max-width: 960px) {
  .important-info-content {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 961px) {
  .important-info-content {
    display: grid;
    gap: 70px;
    grid-template-columns: auto 1fr;
    padding-block: 60px;
  }
}
@media screen and (max-width: 960px) {
  .important-info-content {
    padding-block: 30px;
  }
}
.important-info-title {
  color: #d13026;
}
@media screen and (min-width: 961px) {
  .important-info-title {
    font-size: 25rem;
  }
}
@media screen and (max-width: 960px) {
  .important-info-title {
    margin-bottom: 20px;
    font-size: 17.5px;
    text-align: center;
  }
}
.important-info-list {
  display: grid;
  margin-top: -1.1em;
}
.important-info-list > a {
  padding-block: 1.1em;
  border-bottom: 1px solid #f6d6d4;
  line-height: 1.66;
}

/*
  PARTS
----------------------------------------------- */
.mark::before, .mark::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.mark.circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  aspect-ratio: 1;
  background-color: currentColor;
  border-radius: 50%;
}
.mark.circle::before {
  color: #fff;
  font-size: 11rem;
}
.mark.circle.right::before {
  content: "\f105";
}
.mark.arrow::before {
  font-size: 11rem;
}
.mark.arrow.right::before {
  content: "\f105";
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9em;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  font-weight: 500;
}
@media screen and (min-width: 961px) {
  .button {
    font-size: 17rem;
  }
}
@media screen and (max-width: 960px) {
  .button {
    font-size: 13.5px;
  }
}
.button.grad {
  color: #fff;
  transition: 0.2s;
}
@media screen and (min-width: 961px) {
  .button.grad {
    width: 540px;
    height: 75px;
  }
}
@media screen and (max-width: 960px) {
  .button.grad {
    width: 100%;
    max-width: 480px;
    height: 50px;
  }
}
.button.grad.blue {
  background: linear-gradient(90deg, #2791ba, #07999d);
}
.button.grad.blue:hover {
  background: linear-gradient(-90deg, #2791ba, #07999d);
}
.button.grad.purple {
  background: linear-gradient(90deg, #555996, #71468a);
}
.button.grad.purple:hover {
  background: linear-gradient(-90deg, #555996, #71468a);
}
.button.grad i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}
@media screen and (min-width: 961px) {
  .button.grad i {
    right: 50px;
  }
}
@media screen and (max-width: 960px) {
  .button.grad i {
    right: 30px;
  }
}
.button.border {
  position: relative;
  z-index: 1;
  background: #fff;
  background: linear-gradient(90deg, #5eacd5, #00609a);
  color: #287fbd;
}
.button.border::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px;
  background-color: #fff;
  border-radius: 999px;
  transition: 0.2s;
}
.button.border i {
  background: linear-gradient(90deg, #5eacd5, #00609a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: 0.2s;
}
.button.border:hover {
  color: #fff;
}
.button.border:hover::before {
  opacity: 0;
}
.button.border:hover i {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gnav-list-dept .gnav-subpage-menu {
  column-count:unset;
}
.gnav-list-dept .gnav-sub-subpage{
  column-count:4;
}
@media screen and (max-width: 960px) {
  .gnav-list-dept .gnav-sub-subpage {
      column-count: unset; }
}