@charset "UTF-8";
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W0);
  font-weight: 100;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W1);
  font-weight: 200;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W2);
  font-weight: 300;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W3);
  font-weight: 400;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W4);
  font-weight: 500;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W5);
  font-weight: 600;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W6);
  font-weight: 700;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W7);
  font-weight: 800;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W8);
  font-weight: 900;
}

@font-face {
  font-family: "Hiragino Sans W9";
  src: local(HiraginoSans-W9);
  font-weight: 900;
}

#gnav li, #footer .left .btn a {
  font-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
}

/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #333;
  font-size: 14px;
  line-height: 1.4;
  font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN","メイリオ", Meiryo, system-ui, sans-serif;
}

a {
  color: #0a307c;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

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

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

strong {
  color: #ea5514;
  font-weight: 700;
}

.red {
  color: #f00;
}

.opacity a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

/* ----------------------------------------------
sidebnr
------------------------------------------------- */
#sidebnr {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 5;
  transform: translateY(-50%);
}

#sidebnr p + p {
  margin-top: 20px;
}

#sidebnr p a {
  position: relative;
  display: flex;
  align-items: center;
  width: 160px;
  height: 60px;
  padding-left: 14px;
  border-radius: 10px 0 0 10px;
  color: #fff;
  text-decoration: none;
}

#sidebnr p a::after {
  content: '';
  position: absolute;
  display: block;
  top: 5px;
  left: 5px;
  z-index: 1;
  width: 155px;
  height: 50px;
  border: 1px dashed #fff;
  border-right: 0;
  border-radius: 10px 0 0 10px;
  box-sizing: border-box;
  pointer-events: none;
}

#sidebnr p a img {
  margin-right: 12px;
}

#sidebnr p:first-child a {
  background: #c7b299;
}

#sidebnr p:nth-child(2) a {
  background: #f7931e;
}

@media (max-width: 767px) {
  #sidebnr {
    display: none;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header {
  border-top: 5px solid #0071bc;
}

#header .top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  height: 120px;
}

#header h1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  color: #ccc;
  font-size: 10px;
}

#header .links {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  display: flex;
}

#header .links a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  padding: 0 12px;
  color: #333;
  font-weight: 400;
  font-size: 12px;
  text-decoration: none;
}

#header .links p:first-child a {
  background: #a7e3fb;
}

#header .links p:nth-child(2) a {
  background: #fcee21;
}

#header .right {
  padding-top: 35px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  text-align: right;
}

#header .right .info p + p {
  margin-top: 2px;
}

#header .holiday {
  display: inline-block;
  padding: 2px 14px 1px;
  background: #e6e6e6;
}

@media (max-width: 767px) {
  #header .top {
    height: 55px;
  }
  #header h1 {
    display: none;
  }
  #header .logo img {
    width: auto;
    height: 50px;
  }
  #header .right {
    display: none;
  }
}

/* ----------------------------------------------
gnav
------------------------------------------------- */
#gnav {
  position: relative;
  background: #0071bc;
  color: #fff;
}

#gnav::after {
  content: '';
  position: absolute;
  display: block;
  top: 10px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: calc(100% - 20px);
  border-top: 1px dashed #fff;
  border-bottom: 1px dashed #fff;
  box-sizing: border-box;
  pointer-events: none;
}

#gnav ul {
  display: flex;
  width: 100%;
  max-width: 985px;
  margin: 0 auto;
  padding: 10px;
}

#gnav li {
  position: relative;
  flex: 1 0 auto;
}

#gnav li:first-child::before {
  position: absolute;
  top: 22px;
  left: 0;
  z-index: 0;
  content: '|';
}

#gnav li::after {
  position: absolute;
  top: 22px;
  right: 0;
  z-index: 0;
  content: '|';
}

#gnav a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 767px) {
  #gnav::after {
    display: none;
  }
  #gnav ul {
    flex-direction: column;
  }
  #gnav li:first-child::before, #gnav li:after {
    display: none;
  }
  #gnav a {
    height: 45px;
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer .top {
  display: flex;
}

#footer .left {
  flex: 1;
  background: #0071bc;
  color: #fff;
}

#footer .left .inner {
  width: 100%;
  max-width: 500px;
  margin: 0 0 0 auto;
  padding: 42px 10px 52px;
}

#footer .left .logo {
  margin-bottom: 12px;
}

#footer .left .text {
  line-height: 1.71429;
}

#footer .left .btn {
  width: 240px;
  margin-top: 30px;
}

#footer .left .btn a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding-left: 15px;
  border-radius: 10px;
  background: #c7b299;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#footer .left .btn a:hover {
  opacity: 0.6;
}

#footer .left .btn a img {
  margin-right: 10px;
}

#footer .left .btn a::after {
  content: '';
  position: absolute;
  display: block;
  top: 5px;
  left: 5px;
  z-index: 1;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px dashed #fff;
  border-radius: 10px;
  box-sizing: border-box;
  pointer-events: none;
}

#footer .right {
  flex: 1;
}

#footer .right .map {
  width: 100%;
  height: 100%;
}

#footer .right .map iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  #footer .top {
    flex-direction: column;
  }
  #footer .left {
    width: 100%;
  }
  #footer .left .inner {
    margin-right: auto;
  }
  #footer .right {
    width: 100%;
    height: 250px;
  }
}

#fnav {
  background: #fbb03b;
}

#fnav ul {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 862px;
  margin: 0 auto;
  padding: 13px 10px;
}

#fnav li {
  position: relative;
  flex: 1 0 auto;
  color: #fff;
}

#fnav li:first-child::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: '|';
}

#fnav li::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  content: '|';
}

#fnav a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 21px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 767px) {
  #fnav {
    display: none;
  }
}

#copyright {
  padding: 22px 0;
  font-size: 12px;
  text-align: center;
}

/*
     FILE ARCHIVED ON 21:21:05 Jun 11, 2023 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 02:24:42 Feb 16, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.847
  exclusion.robots: 0.076
  exclusion.robots.policy: 0.062
  esindex: 0.012
  cdx.remote: 10.881
  LoadShardBlock: 81.459 (3)
  PetaboxLoader3.datanode: 146.782 (6)
  load_resource: 211.169 (2)
  PetaboxLoader3.resolve: 99.044 (2)
  loaddict: 62.192
*/