@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
.btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 45px 10px 35px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 240px;
  max-width: 100%;
  min-height: 3.25em;
  border: 1px solid #003fab;
  border-radius: 3.75em;
  color: #fff;
  background-color: #003fab;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.75;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 0%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.btn::after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  display: inline-block;
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 16px;
  height: 16px;
  color: inherit;
  font-size: 16px;
}
[target=_blank].btn::after {
  content: "\e908";
}
.back.btn {
  padding-left: 45px;
  padding-right: 35px;
}
.back.btn::after {
  left: 18px;
  right: auto;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.white.btn {
  background-color: #fff;
  color: #003fab;
}
.white.btn::before {
  background-color: #003fab;
}
@media (hover: hover) {
  .white.btn:where(:-webkit-any-link, :enabled, summary):hover {
    color: #fff;
  }
  .white.btn:where(:-moz-any-link, :enabled, summary):hover {
    color: #fff;
  }
  .white.btn:where(:any-link, :enabled, summary):hover {
    color: #fff;
  }
}
.ghost.btn {
  border-color: #fff;
  background-color: transparent;
}
.search.btn::after {
  content: "\e903";
}
.login.btn::after {
  content: "\e904";
}

:root {
  interpolate-size: allow-keywords;
}

html {
  min-height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  color: #333;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.875;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  /*スマホの文字の大きさ一定*/
  -webkit-text-size-adjust: 100%;
  /*アンチエイリアス*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media print, screen and (min-width: 920px) {
  body {
    font-size: 1.6rem;
  }
}
body.locked {
  overflow: hidden;
}

/*breakpoint display*/
.sp_min {
  display: block;
}

.sp_min_inline {
  display: inline;
}

.sp {
  display: block;
}

.sp_inline {
  display: inline;
}

.sp_tab {
  display: block;
}

.sp_tab_inline {
  display: inline;
}

.pc,
.pc_inline {
  display: none !important;
}

.tab,
.tab_inline {
  display: none !important;
}

.pc_tab,
.pc_tab_inline {
  display: none !important;
}

@media print, screen and (min-width: 360px) {
  .sp_min,
  .sp_min_inline {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .sp,
  .sp_inline {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
  .tab_inline {
    display: inline !important;
  }
  .pc_tab {
    display: block !important;
  }
  .pc_tab_inline {
    display: inline !important;
  }
}
@media print, screen and (min-width: 920px) {
  .sp_tab,
  .sp_tab_inline {
    display: none !important;
  }
  .tab,
  .tab_inline {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
  .pc_inline {
    display: inline !important;
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
  word-wrap: break-word;
}
*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*aタグ デフォルト設定*/
a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) {
  a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.5;
  }
  a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.5;
  }
  a:where(:any-link, :enabled, summary):hover {
    opacity: 0.5;
  }
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
button:not(:disabled) {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  button:not(:disabled):where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.5;
  }
  button:not(:disabled):where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.5;
  }
  button:not(:disabled):where(:any-link, :enabled, summary):hover {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  button:not(:disabled).btn:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: unset;
  }
  button:not(:disabled).btn:where(:-moz-any-link, :enabled, summary):hover {
    opacity: unset;
  }
  button:not(:disabled).btn:where(:any-link, :enabled, summary):hover {
    opacity: unset;
  }
}

img {
  max-width: 100%;
  height: auto;
}

/*スマホ時のfocusの青枠削除*/
a,
a:focus,
button,
button:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input,
button,
label,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font-size: 1.6rem;
}
input:hover, input:focus, input:active,
button:hover,
button:focus,
button:active,
label:hover,
label:focus,
label:active,
textarea:hover,
textarea:focus,
textarea:active,
select:hover,
select:focus,
select:active {
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea {
  color: #333;
  line-height: normal;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.4);
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(51, 51, 51, 0.4);
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.4);
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=url]::-ms-input-placeholder, input[type=search]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.4);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
textarea::placeholder {
  color: rgba(51, 51, 51, 0.4);
}

select::-ms-expand {
  display: none;
}

i, address, em, var, cite, dfn, q {
  font-style: normal;
}

details {
  display: block;
}
details[open] {
  padding-bottom: 1px;
}
@supports selector(::details-content) {
  details[open]::details-content {
    overflow: visible;
    block-size: auto;
    opacity: 1;
  }
}
details summary::-webkit-details-marker {
  display: none;
}
@supports selector(::details-content) {
  details::details-content {
    display: block;
    overflow: clip;
    block-size: 0;
    opacity: 0;
    -webkit-transition: block-size 0.3s, opacity 0.3s, content-visibility 0.3s allow-discrete;
    transition: block-size 0.3s, opacity 0.3s, content-visibility 0.3s allow-discrete;
  }
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?20tdwb");
  src: url("../fonts/icomoon.eot?20tdwb#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?20tdwb") format("truetype"), url("../fonts/icomoon.woff?20tdwb") format("woff"), url("../fonts/icomoon.svg?20tdwb#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow0:before {
  content: "\e900";
}

.icon-arrow:before {
  content: "\e901";
}

.icon-tel:before {
  content: "\e902";
}

.icon-search:before {
  content: "\e903";
}

.icon-lock:before {
  content: "\e904";
}

.icon-marker:before {
  content: "\e905";
}

.icon-building:before {
  content: "\e906";
}

.icon-download:before {
  content: "\e907";
}

.icon-external:before {
  content: "\e908";
}

.icon-home:before {
  content: "\e909";
}

.icon-pinch:before {
  content: "\e90a";
}

.inner {
  max-width: 1400px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .inner {
    width: calc(100% - 80px);
  }
}
@media print, screen and (min-width: 1025px) {
  .inner {
    width: calc(100% - 200px);
  }
}

.global_nav__pc {
  display: none;
}
@media print, screen and (min-width: 920px) {
  .global_nav__pc {
    display: block;
  }
}
.global_nav__sp {
  display: block;
}
@media print, screen and (min-width: 920px) {
  .global_nav__sp {
    display: none;
  }
}

#wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  padding-top: 72px;
  min-height: 100%;
}
@media print, screen and (min-width: 920px) {
  #wrapper {
    padding-top: 96px;
  }
}

.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 72px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  will-change: transform;
}
@media print, screen and (min-width: 1025px) {
  .header {
    height: 80px;
  }
}
@media print, screen and (min-width: 1280px) {
  .header {
    height: 96px;
  }
}
.header.nav-open::before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 98;
  width: 100%;
  height: 72px;
  background-color: #003fab;
}
.header.nav-open .logo {
  position: fixed;
}
.header.nav-open .logo img {
  opacity: 0;
}
.header.nav-open .btn_menu {
  position: fixed;
}
.header.nav-open .btn_menu::before, .header.nav-open .btn_menu::after {
  top: 25px;
  width: 30px;
}
.header.nav-open .btn_menu::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header.nav-open .btn_menu::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header.nav-open .btn_menu i {
  opacity: 0;
}
.header.nav-open .nav_menu {
  padding: 30px 20px 40px;
  height: calc(100% - 72px);
  height: calc(var(--vh, 1vh) * 100 - 72px);
  overflow-y: auto;
  z-index: 98;
}
@media print, screen and (min-width: 1025px) {
  .header.nav-open .nav_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #003fab;
    color: #fff;
  }
}
.header.hide {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.header.fixed {
  position: fixed;
  background-color: #e4f0fc;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header .logo {
  display: inline-block;
  position: relative;
  z-index: 99;
  margin-left: 20px;
  width: 220px;
  background: url(../img/common/logo_w.svg) no-repeat left center;
  background-size: auto 100%;
}
@media print, screen and (min-width: 1025px) {
  .header .logo {
    width: 256px;
  }
}
@media print, screen and (min-width: 1280px) {
  .header .logo {
    margin-left: 40px;
    width: 292px;
  }
}
.header .logo img {
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn_menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  width: 72px;
  height: 72px;
  background-color: #003fab;
  color: #fff;
  text-align: center;
}
.btn_menu::before, .btn_menu::after,
.btn_menu i {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 40px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_menu::before {
  content: "";
  top: 15px;
}
.btn_menu::after {
  content: "";
  top: 35px;
}
@media print, screen and (min-width: 1025px) {
  .btn_menu {
    display: none;
  }
}
.btn_menu i {
  top: 25px;
}
.btn_menu span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  margin: 0 auto;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav_menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  position: fixed;
  top: 72px;
  left: 0;
  z-index: 0;
  padding: 0 20px;
  width: 100%;
  height: 0;
  background-color: #003fab;
  color: #fff;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu {
    overflow: visible;
    position: relative;
    top: 0;
    padding: 0 160px 0 0;
    width: auto;
    height: 100%;
    background-color: transparent;
    color: #333;
  }
}
@media print, screen and (min-width: 1280px) {
  .nav_menu {
    padding-right: 192px;
  }
}
.nav_menu .btn_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .btn_wrap {
    position: absolute;
    right: 0;
    top: 0;
  }
}
.nav_menu .btn_wrap a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 47.7611940299%;
  height: 120px;
  border-radius: 12px;
  background-color: #fff;
  color: #003fab;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
}
.nav_menu .btn_wrap a::before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  margin: 0 auto 10px;
  color: #003fab;
  font-size: 32px;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .btn_wrap a {
    width: 80px;
    height: 80px;
    border-radius: 0;
    font-size: 1.2rem;
  }
  .nav_menu .btn_wrap a::before {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 1280px) {
  .nav_menu .btn_wrap a {
    width: 96px;
    height: 96px;
    font-size: 1.3rem;
  }
  .nav_menu .btn_wrap a::before {
    font-size: 24px;
  }
}
.nav_menu .btn_wrap a.login::before {
  content: "\e904";
}
.nav_menu .btn_wrap a.contact::before {
  content: "\e902";
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .btn_wrap a.contact {
    background-color: #003fab;
    color: #fff;
  }
  .nav_menu .btn_wrap a.contact::before {
    color: #fff;
  }
}
.nav_menu .links {
  margin-top: 40px;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
    margin-right: 15px;
    height: 100%;
  }
}
@media print, screen and (min-width: 1280px) {
  .nav_menu .links {
    margin-right: 20px;
  }
}
.nav_menu .sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .sub {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 15px;
  }
}
.nav_menu .sub li {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.4;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .sub li {
    font-size: 1.2rem;
  }
}
@media print, screen and (min-width: 1280px) {
  .nav_menu .sub li {
    font-size: 1.3rem;
  }
}
.nav_menu .sub li + li {
  margin-left: 40px;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .sub li + li {
    margin-left: 15px;
  }
}
@media print, screen and (min-width: 1280px) {
  .nav_menu .sub li + li {
    margin-left: 30px;
  }
}
.nav_menu .sub a {
  display: inline-block;
  position: relative;
  padding-left: 15px;
}
.nav_menu .sub a::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.2em;
  border: 6px solid transparent;
  border-left: 9px solid #fff;
  border-right-width: 0;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .sub a::before {
    border-left-color: #003fab;
  }
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.nav_menu .main > li {
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .main > li {
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 1280px) {
  .nav_menu .main > li {
    font-size: 1.6rem;
  }
}
.nav_menu .main > li + li {
  margin-top: 20px;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .main > li + li {
    margin-top: 0;
    margin-left: 1.2vw;
    margin-left: calc(var(--vw, 1vw) * 1.2);
  }
}
@media print, screen and (min-width: 1280px) {
  .nav_menu .main > li + li {
    margin-left: 2.5vw;
    margin-left: calc(var(--vw, 1vw) * 2.5);
  }
}
.nav_menu .main > li.parent > a::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.nav_menu .main > li.parent.active > a::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media print, screen and (min-width: 920px) {
  .nav_menu .main > li.parent.active > a::after {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@media print, screen and (min-width: 920px) {
  .nav_menu .main > li.parent > a::after {
    opacity: 0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.nav_menu .main > li.active::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 36px;
}
@media print, screen and (min-width: 920px) {
  .nav_menu .main > li.active > a {
    pointer-events: none;
    cursor: default;
  }
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .main > li.active > a {
    display: inline-block;
    position: relative;
    color: #003fab;
    opacity: 1;
  }
}
.nav_menu .main > li.active > div {
  visibility: visible;
  overflow: visible;
  padding: 20px 0;
  height: auto;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .main > li.active > div {
    padding: 25px 20px;
    opacity: 1;
    -webkit-box-shadow: 0 0 20px rgba(0, 23, 56, 0.1);
            box-shadow: 0 0 20px rgba(0, 23, 56, 0.1);
  }
}
@media print, screen and (min-width: 1280px) {
  .nav_menu .main > li.active > div {
    padding: 30px 25px;
  }
}
.nav_menu .main > li > a {
  display: block;
  position: relative;
}
.nav_menu .main > li > a::after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  position: absolute;
  right: 0;
  top: 5px;
  color: #fff;
  font-size: 16px;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .main > li > a::after {
    content: "";
    display: block;
    left: 0;
    right: auto;
    top: auto;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background-color: #003fab;
    opacity: 0;
  }
}
.nav_menu .main > li > div {
  visibility: hidden;
  overflow: hidden;
  height: 0;
  font-weight: 400;
  font-size: 1.6rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .main > li > div {
    position: absolute;
    left: 50%;
    top: calc(100% + 35px);
    padding: 0 20px;
    min-width: 400px;
    background-color: #003fab;
    color: #fff;
    opacity: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .nav_menu .main > li > div::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 50%;
    top: -18px;
    width: 0;
    height: 0;
    border: 14px solid transparent;
    border-bottom: 20px solid #003fab;
    border-top-width: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media print, screen and (min-width: 1280px) {
  .nav_menu .main > li > div {
    padding: 0 25px;
    min-width: 450px;
  }
}
.nav_menu .main > li > div > a {
  display: block;
  position: relative;
  font-weight: 700;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .main > li > div > a {
    font-size: 1.8rem;
  }
  .nav_menu .main > li > div > a::after {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e901";
    position: absolute;
    right: 0;
    top: 7px;
    color: #fff;
    font-size: 16px;
  }
}
@media print, screen and (min-width: 1280px) {
  .nav_menu .main > li > div > a {
    font-size: 2rem;
  }
}
.nav_menu .main > li > div ul {
  margin-top: 25px;
  padding-left: 20px;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .main > li > div ul {
    margin-top: 15px;
    padding-left: 17px;
    padding-top: 20px;
    border-top: 1px solid #fff;
  }
}
.nav_menu .main > li > div ul li {
  font-size: 1.6rem;
}
.nav_menu .main > li > div ul li + li {
  margin-top: 25px;
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .main > li > div ul li + li {
    margin-top: 15px;
  }
}
@media print, screen and (min-width: 1025px) {
  .nav_menu .main > li > div ul li a {
    display: inline-block;
    position: relative;
    padding-right: 25px;
  }
  .nav_menu .main > li > div ul li a::after {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e901";
    position: absolute;
    right: 0;
    top: 4px;
    color: #fff;
    font-size: 16px;
  }
}

.main_contents {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
  background-color: #003fab;
  color: #fff;
}
@media print, screen and (min-width: 1025px) {
  .footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    min-height: 460px;
  }
}
.footer .page-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 20px;
  top: -32px;
  z-index: 97;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #003fab;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}
.footer .page-top::before {
  content: "";
  display: inline-block;
  margin-bottom: 2px;
  width: 14px;
  height: 14px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.footer .page-top.show {
  visibility: visible;
  opacity: 1;
}
.footer .page-top.fixed {
  position: fixed;
  top: auto;
  bottom: 20px;
}
.footer .info {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  padding: 40px 20px 25px;
}
@media print, screen and (min-width: 1025px) {
  .footer .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-ordinal-group: unset;
    -webkit-order: unset;
        -ms-flex-order: unset;
            order: unset;
    padding: 40px 3%;
    width: 35%;
    max-width: 560px;
  }
}
@media print, screen and (min-width: 1280px) {
  .footer .info {
    padding: 40px 7%;
  }
}
.footer .info address {
  display: block;
  font-size: 1.3rem;
  line-height: 1.5;
}
.footer .logo {
  display: inline-block;
  margin-bottom: 20px;
  width: 292px;
  max-width: 100%;
}
@media print, screen and (min-width: 920px) {
  .footer .logo {
    margin-bottom: 40px;
  }
}
.footer .logo img {
  width: 100%;
}
.footer .copyright {
  display: block;
  position: relative;
  margin: 20px 0 0;
  padding: 25px 0 0;
  font-size: 1rem;
  line-height: 1.5;
}
.footer .copyright::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.2;
}
@media print, screen and (min-width: 1025px) {
  .footer .copyright {
    margin-top: 40px;
    padding-top: 40px;
    width: 100%;
  }
}
.footer .nav_links {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  background-color: #3265bc;
}
@media print, screen and (min-width: 1025px) {
  .footer .nav_links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-ordinal-group: unset;
    -webkit-order: unset;
        -ms-flex-order: unset;
            order: unset;
    padding: 40px 4%;
    width: 65%;
  }
}
@media print, screen and (min-width: 1280px) {
  .footer .nav_links {
    padding: 40px 8%;
  }
}
.footer .nav_links .main {
  display: none;
}
@media print, screen and (min-width: 1025px) {
  .footer .nav_links .main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(47%, 1fr));
    gap: 25px 6%;
    width: 100%;
  }
}
@media print, screen and (min-width: 1500px) {
  .footer .nav_links .main {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 30px;
    gap: 25px 5.7692307692%;
  }
}
.footer .nav_links .main > li {
  line-height: 1.5;
}
.footer .nav_links .main > li.search {
  grid-area: 1/1;
}
@media print, screen and (min-width: 1500px) {
  .footer .nav_links .main > li.search {
    grid-area: 1/1;
  }
}
.footer .nav_links .main > li.service {
  grid-area: 2/1;
  margin-top: -75px;
}
@media print, screen and (min-width: 1500px) {
  .footer .nav_links .main > li.service {
    grid-area: 2/1;
    margin-top: 0;
  }
}
.footer .nav_links .main > li.fare {
  grid-area: 3/1;
}
@media print, screen and (min-width: 1500px) {
  .footer .nav_links .main > li.fare {
    grid-area: 1/2;
  }
}
.footer .nav_links .main > li.activity {
  grid-area: 1/2;
}
@media print, screen and (min-width: 1500px) {
  .footer .nav_links .main > li.activity {
    grid-area: 2/2;
  }
}
.footer .nav_links .main > li.about {
  grid-area: 2/2;
}
@media print, screen and (min-width: 1500px) {
  .footer .nav_links .main > li.about {
    grid-area: 1/3;
  }
}
.footer .nav_links .main > li.contact {
  grid-area: 3/2;
}
@media print, screen and (min-width: 1500px) {
  .footer .nav_links .main > li.contact {
    grid-area: 4/3;
  }
}
.footer .nav_links .main > li.login {
  grid-area: 4/2;
}
@media print, screen and (min-width: 1500px) {
  .footer .nav_links .main > li.login {
    grid-area: 5/3;
  }
}
.footer .nav_links .main > li > a {
  display: block;
  position: relative;
  padding: 0 25px 10px 10px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  font-size: 1.6rem;
}
.footer .nav_links .main > li > a::after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  position: absolute;
  right: 0;
  top: 5px;
  font-size: 16px;
}
.footer .nav_links .main > li ul {
  margin-top: 20px;
  padding-left: 10px;
}
.footer .nav_links .main > li ul li {
  font-size: 1.3rem;
}
.footer .nav_links .main > li ul li + li {
  margin-top: 10px;
}
.footer .nav_links .sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 15px;
  padding: 35px 20px;
}
@media print, screen and (min-width: 1025px) {
  .footer .nav_links .sub {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 0 25px;
    margin: 50px 0 0 auto;
    padding: 0;
  }
}
.footer .nav_links .sub > li {
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .footer .nav_links .sub > li {
    width: auto;
    font-size: 1.3rem;
  }
}

@media (hover: hover) {
  .btn:where(:-webkit-any-link, :enabled, summary):hover {
    color: #003fab;
    opacity: unset;
  }
  .btn:where(:-moz-any-link, :enabled, summary):hover {
    color: #003fab;
    opacity: unset;
  }
  .btn:where(:any-link, :enabled, summary):hover {
    color: #003fab;
    opacity: unset;
  }
  .btn:where(:-webkit-any-link, :enabled, summary):hover::before {
    width: 100%;
  }
  .btn:where(:-moz-any-link, :enabled, summary):hover::before {
    width: 100%;
  }
  .btn:where(:any-link, :enabled, summary):hover::before {
    width: 100%;
  }
}

.news_list li {
  position: relative;
  border-bottom: 1px solid rgba(0, 63, 171, 0.2);
  font-size: 1.6rem;
}
.news_list li::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 60px;
  height: 2px;
  background-color: #003fab;
}
.news_list li + li {
  margin-top: 17px;
}
.news_list a {
  display: block;
  position: relative;
  padding: 0 60px 17px 0;
  height: 100%;
}
.news_list a::after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto 0;
  width: 24px;
  height: 24px;
  color: #003fab;
  font-size: 24px;
}
.news_list time {
  display: block;
  margin-bottom: 8px;
  color: #003fab;
  font-weight: 700;
  line-height: 1.5;
}

.region_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px 13px;
}
.region_list li {
  width: calc(50% - 6.5px);
  font-weight: 700;
  font-size: 1.6rem;
}
.region_list li.central a {
  border-color: #ea9cd9;
  background-color: rgba(234, 156, 217, 0.15);
}
.region_list li.central a::after {
  color: #eb9bd9;
}
.region_list li.southern a {
  border-color: #b9a1e0;
  background-color: rgba(185, 161, 224, 0.15);
}
.region_list li.southern a::after {
  color: #b9a1e0;
}
.region_list li.northern a {
  border-color: #6bd4db;
  background-color: rgba(107, 212, 219, 0.15);
}
.region_list li.northern a::after {
  color: #6cd4db;
}
.region_list li.eastern a {
  border-color: #f4b869;
  background-color: rgba(244, 184, 105, 0.15);
}
.region_list li.eastern a::after {
  color: #f4b869;
}
.region_list li.tokachi a {
  border-color: #6cc85d;
  background-color: rgba(108, 200, 93, 0.15);
}
.region_list li.tokachi a::after {
  color: #6cc85d;
}
.region_list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 3.5em;
  text-align: center;
  -webkit-box-shadow: 1px 2px 0 rgba(0, 63, 171, 0.1);
          box-shadow: 1px 2px 0 rgba(0, 63, 171, 0.1);
}
.region_list li a::after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 16px;
  height: 16px;
  font-size: 16px;
}
@media print, screen and (min-width: 920px) {
  .region_list li a::after {
    right: 7px;
  }
}
.region_list li a.hover {
  opacity: 0.5;
}

@media print, screen and (min-width: 920px) {
  .region .map {
    position: relative;
    margin: 0 auto;
  }
}
.region .map svg a.hover path {
  opacity: 0.5;
}
.region .map svg a path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media print, screen and (min-width: 920px) {
  .region .region_list {
    position: absolute;
    z-index: 2;
  }
}
@media print, screen and (min-width: 920px) {
  .region .region_list li {
    position: absolute;
    width: 120px;
  }
}
@media print, screen and (min-width: 920px) {
  .region .region_list li.central {
    left: 0px;
    top: 63px;
    text-indent: -4px;
  }
}
@media print, screen and (min-width: 920px) {
  .region .region_list li.central a::after {
    right: 3px;
  }
}
@media print, screen and (min-width: 920px) {
  .region .region_list li.southern {
    left: 0px;
    top: 139px;
  }
}
@media print, screen and (min-width: 920px) {
  .region .region_list li.northern {
    left: 332px;
    top: 5px;
  }
}
@media print, screen and (min-width: 920px) {
  .region .region_list li.eastern {
    left: 370px;
    top: 91px;
  }
}
@media print, screen and (min-width: 920px) {
  .region .region_list li.tokachi {
    left: 299px;
    top: 139px;
  }
}
@media print, screen and (min-width: 920px) {
  .region .region_list li a {
    min-height: 32px;
  }
}