<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ------------------------------------------------
  追従丸型ボタン表示位置
------------------------------------------------- */
#fixed-btn {
  z-index: 50;
  bottom: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 0;
  opacity: 0;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
#fixed-btn.is-show {
  position: fixed;
  visibility: visible;
  opacity: 1;
}
#fixed-btn.is-show .fixed-btn-inner {
  margin-top: -110px;
}
@media screen and (max-width: 1024px) {
  #fixed-btn.is-show .fixed-btn-inner {
    margin-top: -160px;
  }
}
@media print, screen and (min-width: 1201px) {
  #fixed-btn.is-show .fixed-btn-inner {
    padding-right: 20px;
  }
}
#fixed-btn.is-bottom {
  position: static;
}
#fixed-btn.is-bottom .fixed-btn-inner {
  top: -260px;
  margin-top: 0 !important;
}
@media screen and (max-width: 1024px) {
  #fixed-btn.is-bottom .fixed-btn-inner {
    top: -180px;
  }
}
#fixed-btn .fixed-btn-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 0;
  margin: 0 auto;
  padding-right: 3%;
  padding-left: 3%;
  text-align: right;
}

/* --------------------------------------------------
  追従丸型ボタン
--------------------------------------------------- */
#anchor-area-search {
  z-index: 998;
}
@media screen and (min-width: 1025px) {
  #anchor-area-search .search-area-btn {
  width: 110px;
  height: 110px;
  }
  #anchor-area-search .search-area-btn a {
  font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  #anchor-area-search {
    margin-top: 10px;
    margin-right: 15px;
  }
  #anchor-area-search .search-area-btn {
  width: 90px;
  height: 90px;
  }
  #anchor-area-search .search-area-btn a {
  font-size: 1.2rem;
  }
}
#anchor-area-search .search-area-btn {
  display: table;
}
#anchor-area-search .search-area-btn a {
  display: table-cell;
  width: 100%;
  padding: 5px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  background: #042e60;
  border-radius: 50%;
  -webkit-box-shadow: 4px 8px 17px 0px rgba(53, 53, 53, 0.35);
          box-shadow: 4px 8px 17px 0px rgba(53, 53, 53, 0.35);
}
#anchor-area-search .search-area-btn a:hover {
  background: #08549c;
  opacity: 1;
}
#anchor-area-search .search-area-btn a .icon {
  display: block;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  #anchor-area-search .search-area-btn a .icon {
    padding-top: 4px;
  }
}</pre></body></html>