@charset "UTF-8";
/* fixed css */
.flex {
  display: flex;
}

.eyecatch:not(.front) {
  margin-top: 150px;
}
@media (max-width: 896px) {
  .eyecatch:not(.front) {
    margin-top: 13vw;
  }
}

.eyecatch:not(.front) .eyecatch-wrap {
  width: 100%;
}
@media (min-width: 897px) {
  .eyecatch:not(.front) .eyecatch-wrap {
    display: flex;
    max-height: 450px;
  }
}
@media (max-width: 896px) {
  .eyecatch:not(.front) .eyecatch-wrap {
    position: relative;
  }
}

@media (min-width: 897px) {
  .img-wrap,
  .eye_content {
    width: 50%;
  }
}

.img-wrap img {
  height: 100%;
  object-fit: cover;
}

.eye_content {
  background-color: #004082;
  display: grid;
  place-content: center;
}
@media (max-width: 896px) {
  .eye_content {
    width: min-content;
    position: absolute;
    top: 20px;
    left: 0;
    padding: 20px 30px;
    text-align: center;
  }
}
@media (min-width: 897px) {
  .eye_content {
    writing-mode: vertical-lr;
    text-align: center;
  }
}

.eye_content h2 {
  font-size: 5.2vw;
  font-family: "a-otf-shingopro-bold";
  color: #fff;
}
@media (min-width: 897px) {
  .eye_content h2 {
    font-size: clamp(45px, 2.6vw, 20.6px);
  }
}
@media (max-width: 896px) {
  .eye_content h2 {
    white-space: nowrap;
  }
}

.eye_content h3 {
  font-size: 4.2vw;
  font-family: "a-otf-shingopro-bold";
  color: #92C8FF;
  letter-spacing: 0.1em;
}
@media (min-width: 897px) {
  .eye_content h3 {
    font-size: clamp(14.05px, 1.04vw, 24.65px);
    margin-left: 15px;
  }
}
@media (max-width: 896px) {
  .eye_content h3 {
    white-space: nowrap;
  }
}

/*__ header _______________________*/
.site-header {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
}
@media (max-width: 896px) {
  .site-header {
    padding-top: 8px;
    padding-bottom: 7px;
  }
}
.site-header .masthead {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 897px) {
  .site-header .masthead {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.site-header .masthead .brand-logo {
  width: 100%;
  max-width: 280px;
  position: relative;
  z-index: 2;
  margin-inline: 10px;
  display: block;
}
@media (max-width: 896px) {
  .site-header .masthead .brand-logo {
    max-width: 100px;
  }
}
.site-header .masthead .brand__title {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.6em;
  white-space: nowrap;
  margin-left: 5px;
}

.globalnav-list {
  display: flex;
  align-items: center;
  text-align: center;
}
@media (min-width: 897px) {
  .globalnav-list {
    flex-wrap: wrap;
    align-items: flex-end;
  }
}
.globalnav__item {
  word-break: auto-phrase;
  font-size: 1.6rem;
}
@media (max-width: 896px) {
  .globalnav__item {
    width: 100%;
  }
}
.globalnav__item a {
  padding: 20px 18px;
  display: inline-block;
  line-height: 1;
  color: #333;
}
@media (max-width: 896px) {
  .globalnav__item a {
    color: #fff;
  }
}
@media (max-width: 896px) {
  .globalnav__item a {
    line-height: 1;
    padding-top: 22px;
    padding-bottom: 22px;
    width: 100%;
    text-align: center;
  }
}
.globalnav__item.contact {
  border-radius: 3px;
}
@media (min-width: 897px) {
  .globalnav__item.contact:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}
@media (max-width: 896px) {
  .globalnav__item.contact {
    margin-bottom: 20px;
  }
}
@media (min-width: 897px) {
  .globalnav__item.button a {
    background-color: #004082;
    color: #fff;
    padding: 11px 18px 16px;
    margin-bottom: 4px;
  }
}
@media (max-width: 896px) {
  .globalnav {
    /* メニューコンテナ全体のスタイル */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .globalnav-list {
    flex-direction: column;
    margin-top: 50px;
    font-family: "a-otf-shingopro-medium";
  }
  .globalnav-inner {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
  }
}

@media (max-width: 896px) {
  .nav-button {
    display: block;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    cursor: pointer;
    z-index: 2;
    background-color: #004082;
    border-radius: 50px;
    padding: 6px 4px;
  }
  .nav-bar {
    display: block;
    width: 26px;
    height: 1px;
    margin: 5px 0;
    background-color: #fff;
  }
  #nav-toggle:checked + .nav-button .nav-bar:nth-of-type(1) {
    transform: rotate(45deg) translate(3px, 2px);
  }
  #nav-toggle:checked + .nav-button .nav-bar:nth-of-type(2) {
    opacity: 0;
  }
  #nav-toggle:checked + .nav-button .nav-bar:nth-of-type(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  /* メニュートグルのスタイル */
  #nav-toggle {
    display: none;
  }
  /* メニュートグルがチェックされた場合のメニューの表示アニメーション */
  #nav-toggle:checked ~ .globalnav-inner {
    height: fit-content;
    background-image: url(../img/common/sp_nav_back.png);
    background-size: 100%;
    background-position-y: 40px;
    color: #fff;
    padding-bottom: 10px;
    visibility: visible;
    opacity: 1;
  }
  .is-close,
  .is-open {
    transition: all 0.3s;
  }
  .is-open {
    display: none;
  }
}
.inner-list span {
  padding-bottom: 20px;
  display: inline-block;
}

.inner-list:hover .globalnav-inner-list {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s;
}

.globalnav-inner-list {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: 1;
  width: max-content;
  z-index: 1;
}
@media (max-width: 896px) {
  .globalnav-inner-list {
    width: 90%;
  }
}

.inner-list a {
  align-items: center;
  color: #fff;
  display: flex;
  height: 50px;
  justify-content: center;
  background-color: #004082;
}
@media (max-width: 896px) {
  .inner-list a {
    background-color: #fff;
    color: #004082;
  }
}

/* ドロップダウンメニュー */
.inner-list {
  position: relative;
}
@media (max-width: 896px) {
  .inner-list {
    padding-top: 20px;
  }
}

.globalnav__item.inner-list::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #004082;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  margin-left: 5px;
  transform: translateY(-25%) rotate(135deg);
}
@media (max-width: 896px) {
  .globalnav__item.inner-list::after {
    color: #fff;
  }
}

#toggle,
#toggle02 {
  display: none;
}

@media (max-width: 896px) {
  .globalnav-inner-list {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    max-height: 0;
  }
  #toggle:checked + label ~ .globalnav-inner-list,
  #toggle02:checked + label ~ .globalnav-inner-list {
    display: block;
    position: relative;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
    max-height: initial;
  }
  #toggle:checked + label,
  #toggle02:checked + label {
    transition: all 0.3s;
  }
  #toggle:checked + label span,
  #toggle02:checked + label span {
    margin-left: -18px;
  }
  .inner-list:has(#toggle:checked)::after,
  .inner-list:has(#toggle02:checked)::after {
    position: absolute;
    transform: translateY(-25%) rotate(-45deg);
  }
  .inner-list:has(#toggle:checked)::after {
    left: calc(50% + 62px);
    top: 20%;
  }
  .inner-list:has(#toggle02:checked)::after {
    left: calc(50% + 30px);
    top: 8.5%;
  }
}
/* old css */
@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 80px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes view-slideright {
  0% {
    opacity: 0;
    transform: translate(-100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes view-slideleft {
  0% {
    opacity: 0;
    transform: translate(200%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* tab */
/* PCサイト SPと1つにまとめる */
@media (min-width: 897px) {
  a {
    transition: opacity 1s ease-out;
  }
  a:hover,
  a.selected {
    opacity: 0.8;
  }
  body {
    margin: 0;
    padding: 0;
    cursor: none;
    overflow-x: hidden;
  }
  .cursor,
  .follower span {
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    cursor: none;
    pointer-events: none;
    z-index: 99999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform ease-out 1s, background ease-out 1s;
    text-align: center;
  }
  .cursor {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 64, 130, 0.8);
    border: 1px solid #fff;
  }
  .follower span {
    width: 20px;
    height: 20px;
    background-color: rgba(0, 64, 130, 0.15);
    z-index: 1000;
  }
  .is-active span {
    transform: scale(2.8);
    background-color: rgba(191, 211, 253, 0.2);
  }
  .view-slideup {
    opacity: 0;
  }
  .view-slideup.on {
    opacity: 1;
    animation: view-slideup 1s ease-out;
  }
  .view-slideright {
    opacity: 0;
  }
  .view-slideright.on {
    opacity: 1;
    animation: view-slideright 1s cubic-bezier(0.2, 1, 0.2, 1);
  }
  .view-slideleft {
    opacity: 0;
  }
  .view-slideleft.on {
    opacity: 1;
    animation: view-slideleft 1s cubic-bezier(0.2, 1, 0.2, 1);
  }
  .view-zoomin {
    opacity: 0;
  }
  .view-zoomin.on {
    opacity: 1;
    animation: view-zoomin 1.5s cubic-bezier(0.2, 1, 0.2, 1);
  }
  .sp {
    display: none !important;
  }
  /*============================
  #wraper
  ============================*/
  #wraper {
    margin-inline: auto;
    width: 100%;
  }
  .disp {
    display: block;
  }
  .visible {
    visibility: visible;
    opacity: 1;
  }
  /* =========================================================
  breadcrumbs
  ========================================================= */
  .breadcrumbs {
    margin-inline: auto;
    padding-top: clamp(13.5px, 1vw, 23.7px);
    padding-bottom: clamp(13.5px, 1vw, 23.7px);
    overflow: hidden;
    text-align: right;
  }
  .breadcrumbs ol {
    display: inline-block;
    padding-right: 0.25%;
    width: 100%;
  }
  .breadcrumbs li {
    display: inline-block;
    vertical-align: middle;
    padding-top: 1%;
    color: #555;
  }
  .breadcrumbs li:after {
    content: ">";
    font-size: clamp(9.45px, 0.7vw, 16.5px);
    padding: 0 clamp(1.3px, 0.1vw, 2.35px);
    padding-top: 8.5%;
    display: inline-block;
    vertical-align: top;
  }
  .breadcrumbs li:last-of-type:after {
    content: "";
  }
  .breadcrumbs a {
    color: #555;
  }
  .breadcrumbs li:last-of-type a span {
    text-decoration: none;
  }
  .breadcrumbs a span {
    font-size: clamp(12.9px, 1.2vw, 28.6px);
    display: inline-block;
    padding-top: 0.1vw;
    text-decoration: underline;
    font-weight: 300;
    font-style: normal;
  }
  /*============================
  .jisseki
  ============================*/
  .jisseki {
    margin-top: 110px;
    background-color: #fff;
  }
  .jisseki > h2 {
    font-size: 45px;
    color: #004082;
    font-family: "a-otf-shingopro-bold";
    text-align: center;
    padding-top: 60px;
  }
  .jisseki .cms {
    width: 1200px;
    margin-inline: auto;
    margin-top: 50px;
    text-align: center;
  }
  .jisseki ul {
    overflow: hidden;
  }
  .jisseki li {
    float: left;
    width: 361px;
    margin-right: 58px;
    margin-bottom: 40px;
  }
  .jisseki li:nth-of-type(3n) {
    margin-right: 0;
  }
  .jisseki .cms_img {
    overflow: hidden;
  }
  .jisseki .cms_img img {
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
  }
  .jisseki a:hover .cms_img img {
    -webkit-transform: scale(1.11);
    transform: scale(1.11);
  }
  .jisseki .cms_cont .entry-title {
    font-size: 18px;
    margin-top: 10px;
    color: #333333;
    font-family: "a-otf-shingopro-medium";
  }
  .jisseki .cms > a {
    display: inline-block;
    margin-top: 40px;
    opacity: 1;
  }
  .jisseki .cms > a span {
    font-size: 30px;
    color: #333333;
    font-family: "a-otf-shingopro-medium";
    display: inline-block;
    vertical-align: top;
  }
  .jisseki .cms > a img {
    display: inline-block;
    vertical-align: middle;
    width: 129px;
    margin-top: 3px;
    margin-left: 5px;
  }
  /*footer*/
  footer {
    background-color: #fff;
    padding: 120px 0 30px;
  }
  footer .inner {
    width: 1200px;
    margin-inline: auto;
  }
  footer .top {
    overflow: hidden;
  }
  footer .top a {
    float: left;
    width: 210px;
  }
  footer .top .left {
    float: left;
    margin-left: 60px;
    margin-top: 10px;
    width: 270px;
  }
  footer .top .left h2 {
    font-family: "a-otf-shingopro-bold";
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-bottom: 7px;
  }
  footer .top .left address {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  footer .top .left address dt {
    display: inline-block;
    vertical-align: middle;
  }
  footer .top .left address dd {
    display: inline-block;
    vertical-align: middle;
  }
  footer .top .left address dd a {
    color: #333;
    text-decoration: underline;
  }
  footer .top .left dl {
    font-size: 16px;
    line-height: 1.8;
    display: flex;
  }
  footer .top .left dt {
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 0.1em;
  }
  footer .top .left dd {
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 0.1em;
  }
  footer .top .center {
    float: left;
    margin-left: 60px;
    margin-top: 10px;
    width: 183.4px;
  }
  footer .top .center h2 {
    font-family: "a-otf-shingopro-bold";
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-bottom: 7px;
  }
  footer .top .center li h3 {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  footer .top .right {
    float: left;
    margin-top: 10px;
    margin-left: 28px;
    width: 369px;
  }
  footer .top .right dl {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 3px;
  }
  footer .top .right dt {
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
  footer .top .right dd {
    letter-spacing: 0.1em;
    margin-left: 5%;
  }
  footer .middle {
    overflow: hidden;
    margin-top: 67px;
  }
  footer .middle .left {
    float: left;
    width: 47.5%;
  }
  footer .middle .right {
    float: right;
    width: 47.5%;
  }
  /*============================
  #footer_nav
  ============================*/
  #footer_nav {
    text-align: center;
    margin-top: 80px;
  }
  #footer_nav ul {
    display: inline-block;
  }
  #footer_nav li {
    display: inline-block;
    vertical-align: middle;
    padding: 3px 3px;
  }
  #footer_nav li:after {
    content: "／";
    display: inline-block;
    vertical-align: middle;
    margin-left: 3px;
  }
  #footer_nav li:last-of-type:after {
    content: "";
  }
  #footer_nav li a {
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 1px;
  }
  #footer_nav li a h2 {
    font-size: 16px;
    color: #333333;
  }
  footer p {
    margin-top: 25px;
    text-align: center;
  }
  footer p small {
    font-size: 16px;
  }
  /*ページトップスクロール*/
  #page_top {
    width: 60.5px;
    position: fixed;
    bottom: 75px;
    right: 30px;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.5s ease-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: #fff;
    z-index: 99;
  }
  #page_top.show {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
/* スマホ */
@media (max-width: 896px) {
  .view-slideup {
    opacity: 0;
  }
  .view-slideup.on {
    opacity: 1;
    animation: view-slideup 1s cubic-bezier(0.2, 1, 0.2, 1);
  }
  .view-slideright {
    opacity: 0;
  }
  .view-slideright.on {
    opacity: 1;
    animation: view-slideright 1s cubic-bezier(0.2, 1, 0.2, 1);
  }
  .view-slideleft {
    opacity: 0;
  }
  .view-slideleft.on {
    opacity: 1;
    animation: view-slideleft 1s cubic-bezier(0.2, 1, 0.2, 1);
  }
  .view-zoomin {
    opacity: 0;
  }
  .view-zoomin.on {
    opacity: 1;
    animation: view-zoomin 1.5s cubic-bezier(0.2, 1, 0.2, 1);
  }
  .pc {
    display: none !important;
  }
  .disp {
    background-color: #fff;
  }
  .visible {
    visibility: visible;
    opacity: 1;
  }
  /* =========================================================
  breadcrumbs
  ========================================================= */
  .breadcrumbs {
    margin-inline: auto;
    padding-top: 2vw;
    padding-bottom: 2vw;
    overflow: hidden;
    text-align: right;
  }
  .breadcrumbs ol {
    display: inline-block;
    padding: 0 1%;
  }
  .breadcrumbs li {
    display: inline-block;
    vertical-align: middle;
    font-size: 4.2vw;
    padding-top: 0.1vw;
    color: #555;
  }
  .breadcrumbs li:after {
    content: ">";
    font-size: 2vw;
    padding: 1.1vw 0.1vw 0;
    display: inline-block;
    vertical-align: top;
  }
  .breadcrumbs li:last-of-type:after {
    content: "";
  }
  .breadcrumbs a {
    color: #555;
  }
  .breadcrumbs li:last-of-type a span {
    text-decoration: none;
  }
  .breadcrumbs a span {
    font-size: 4.2vw;
    display: inline-block;
    padding-top: 0.1vw;
    text-decoration: underline;
    font-weight: 300;
    font-style: normal;
  }
  /*============================
  .jisseki
  ============================*/
  .jisseki {
    background-color: #fff;
    margin-top: 9vw;
  }
  .jisseki > h2 {
    font-size: 8vw;
    color: #004082;
    font-family: "a-otf-shingopro-bold";
    text-align: center;
    padding-top: 5vw;
  }
  .jisseki .cms {
    width: 95%;
    margin-inline: auto;
    margin-top: 6%;
    text-align: center;
  }
  .jisseki ul {
    overflow: hidden;
  }
  .jisseki li {
    float: left;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
  .jisseki li:nth-of-type(2n) {
    margin-right: 0;
  }
  .jisseki .cms_img {
    overflow: hidden;
  }
  .jisseki .cms_img img {
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
  }
  .jisseki a:hover .cms_img img {
    -webkit-transform: scale(1.11);
    transform: scale(1.11);
  }
  .jisseki .cms_cont .entry-title {
    font-size: 4.3vw;
    line-height: 1.3;
    margin-top: 8px;
    color: #333333;
    font-family: "a-otf-shingopro-medium";
  }
  .jisseki .cms > a {
    display: inline-block;
    margin-top: 40px;
  }
  .jisseki .cms > a span {
    font-size: 6vw;
    color: #333333;
    font-family: "a-otf-shingopro-medium";
    display: inline-block;
    vertical-align: top;
  }
  .jisseki .cms > a img {
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    margin-top: 0;
    margin-left: 2%;
  }
  /*footer*/
  footer {
    background-color: #fff;
    padding: 10% 0 4%;
    border-top: 1px solid #333;
    margin-top: 20%;
  }
  footer .inner {
    width: 95%;
    margin-inline: auto;
  }
  footer .top {
    overflow: hidden;
  }
  footer .top > a {
    width: 50%;
    display: block;
    margin-inline: auto;
  }
  footer .top .left {
    text-align: center;
    margin-top: 7%;
  }
  footer .top .left h2 {
    font-family: "a-otf-shingopro-bold";
    font-size: 5.5vw;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-bottom: 3%;
  }
  footer .top .left address {
    font-size: 4.2vw;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  footer .top .left address dl {
    width: 100%;
    display: inline-block;
  }
  footer .top .left address dt {
    display: inline-block;
    vertical-align: middle;
    font-size: 4.2vw;
  }
  footer .top .left address dd {
    display: inline-block;
    vertical-align: middle;
    font-size: 4.2vw;
  }
  footer .top .left dl {
    line-height: 1.8;
  }
  footer .top .left dt {
    font-size: 4.2vw;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 0.1em;
  }
  footer .top .left dd {
    font-size: 4.2vw;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 0.1em;
  }
  footer .top .left dd a {
    font-size: 4.2vw;
    color: #333;
    text-decoration: underline;
    display: block;
    white-space: nowrap;
  }
  footer .top .left dd a {
    display: block;
  }
  footer .top .center {
    margin-top: 5%;
    text-align: center;
  }
  footer .top .center h2 {
    font-family: "a-otf-shingopro-bold";
    font-size: 5.5vw;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-bottom: 3%;
  }
  footer .top .center li h3 {
    font-size: 4.2vw;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  footer .top .right {
    margin-top: 5%;
    text-align: center;
  }
  footer .top .right dl {
    font-size: 4.2vw;
    line-height: 1.8;
    margin-bottom: 3px;
  }
  footer .top .right dt {
    font-size: 4vw;
    letter-spacing: 0.1em;
  }
  footer .top .right dd {
    font-size: 4vw;
    letter-spacing: 0.1em;
    margin-left: 5%;
  }
  footer .middle {
    overflow: hidden;
    margin-top: 10%;
  }
  footer .middle .right {
    margin-top: 5%;
  }
  /*============================
  #footer_nav
  ============================*/
  #footer_nav {
    text-align: center;
    margin-top: 10%;
  }
  #footer_nav li:nth-of-type(1) a {
    border-top: 1px solid #fff;
  }
  #footer_nav li a {
    padding: 10% 0;
    border-bottom: 1px solid #fff;
    display: block;
    background-color: #004082;
  }
  #footer_nav li a h2 {
    font-size: 6.2vw;
    color: #fff;
    letter-spacing: 0.1em;
  }
  footer p {
    margin-top: 4%;
    text-align: center;
  }
  footer p small {
    font-size: 5vw;
    line-height: 1.3;
  }
  /*ページトップスクロール*/
  #page_top {
    width: 50px;
    position: fixed;
    bottom: 62px;
    right: 15px;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.5s ease-out;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  #page_top.show {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}/*# sourceMappingURL=admin.css.map */