@charset "UTF-8";
html, body {
  background-color: #eee;
  line-height: 1.9;
  font-size: 16px;
}
body, input, textarea, select, option, button {
  font-family: "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", sans-serif, system-ui;
}
img, svg, video {
  max-width: 100%;
  height: auto;
}
dl {
  padding-left: 20px;
}
dl dt {
  margin: 0.1em 0 0.1em 0.5em;
}
dl dd {
  margin: 0.5em 0 0.5em 2em;
}
pre {
  margin-top: 1em;
  white-space: pre;
  overflow: auto;
  border: none;
  border-radius: 0;
}
code {
  white-space: inherit;
  word-break: break-all;
  word-wrap: break-word;
  border: none;
  border-radius: 0;
  color: #b1143b;
}
pre code {
  display: block;
  border: none;
  padding: 10px 20px;
  margin: 0;
  white-space: pre;
  word-break: normal;
  word-wrap: normal;
  background-color: #f6f6f6;
  color: inherit;
  overflow: auto;
  border-radius: 7px;
}
@media (max-width: 340px) {
  pre code {
    white-space: pre-wrap;
    word-break: break-all;
    word-wrap: break-word;
  }
}
a, a:link, a:visited {
  color: #00a0e6;
}
.theme-container {
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
}
/**
 * ヘッダー
 */
.theme-header {
  background-color: #00a0e6;
  padding: 16px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 15000;
  box-sizing: border-box;
  border-bottom: 1px solid #fff;
}
.theme-header a {
  text-decoration: none;
}
.theme-header a:hover {
  text-decoration: underline;
}
.theme-header__inner {
  max-width: 1220px;
  margin: 0 auto;
}
body.top .theme-header {
  position: relative;
}
/**
 * ハンバーガーメニュー
 */
.theme-hamburger-menu {
  display: none;
  position: fixed;
  top: 5px;
  right: 5px;
  width: 48px;
  height: 48px;
}
.theme-hamburger-menu__open-btn {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 3px;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 50%;
  background-color: #fff;
  border: 0px none transparent;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  cursor: pointer;
}
.theme-hamburger-menu__open-btn-inner {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px solid var(--theme-keycolor, #00a0e6);
  border-radius: 50%;
  box-sizing: border-box;
}
.theme-hamburger-menu__open-btn-inner::before {
  content: "";
}
.theme-hamburger-menu__open-btn-inner::after {
  content: "";
}
.theme-hamburger-menu__open-btn-inner span.theme-hamburger-menu__open-btn-decoration-a, .theme-hamburger-menu__open-btn-inner::after, .theme-hamburger-menu__open-btn-inner::before {
  display: block;
  border-top: 2px solid var(--theme-keycolor, #00a0e6);
  position: absolute;
  width: calc(60%);
  top: calc(50% - 1px);
  left: calc(20%);
  box-sizing: border-box;
  text-indent: -9999px;
  font-size: 0.1px;
  transition: all 0.3s ease-in-out;
}
.theme-hamburger-menu__open-btn-inner::after {
  top: calc(50% - 1px - 18%);
}
.theme-hamburger-menu__open-btn-inner::before {
  top: calc(50% - 1px + 18%);
}
.theme-hamburger-menu__menu {
  display: none;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #f6f6f6;
}
.theme-hamburger-menu__menu ul {
  margin: 10px 0;
  padding: 0;
}
.theme-hamburger-menu__menu ul > li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.theme-hamburger-menu__menu ul > li a {
  display: block;
  padding: 5px 20px;
}
.theme-hamburger-menu__menu ul > li a:hover {
  background-color: #fff;
}
.theme-hamburger-menu__menu ul > li > ul > li a {
  padding-left: 35px;
}
.theme-hamburger-menu__menu ul > li > ul > li > ul > li a {
  padding-left: 60px;
}
.theme-hamburger-menu__menu-ci {
  text-align: center;
  background: #0083bb;
  padding: 10px 10px 2px 10px;
}
.theme-hamburger-menu__menu-ci img {
  width: 160px;
  max-width: 60%;
}
.theme-hamburger-menu #theme-hamburger-menu__trigger {
  display: none;
}
.theme-hamburger-menu #theme-hamburger-menu__trigger:checked ~ .theme-hamburger-menu__open-btn .theme-hamburger-menu__open-btn-inner span.theme-hamburger-menu__open-btn-decoration-a {
  opacity: 0;
}
.theme-hamburger-menu #theme-hamburger-menu__trigger:checked ~ .theme-hamburger-menu__open-btn .theme-hamburger-menu__open-btn-inner::after {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}
.theme-hamburger-menu #theme-hamburger-menu__trigger:checked ~ .theme-hamburger-menu__open-btn .theme-hamburger-menu__open-btn-inner::before {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}
.theme-hamburger-menu #theme-hamburger-menu__trigger:checked ~ .theme-hamburger-menu__menu {
  display: block;
}
/**
 * メインエリア
 */
.theme-mainblock {
  background-color: #fff;
  padding: 18px 15px 1em;
  margin-top: 71px;
}
.theme-mainblock__inner {
  margin: 0 auto;
  max-width: 1024px;
}
body.top .theme-mainblock, body.fullcolumn .theme-mainblock {
  margin-top: 0;
}
body.top .theme-mainblock .contents, body.fullcolumn .theme-mainblock .contents {
  max-width: 1024px;
  margin: 0 auto;
}
/**
 * Site Identity
 */
.theme-si {
  float: left;
  width: 160px;
  max-width: 90%;
  box-sizing: content-box;
}
.theme-si, .theme-si * {
  display: block;
  font-size: xx-large;
  margin: 0;
  padding: 0;
  color: #fff;
  line-height: 1.3;
  white-space: nowrap;
}
.theme-si *:hover {
  color: #eee;
  text-decoration: none;
  opacity: 0.9;
}
.theme-si {
  padding: 0 1em 0 0;
}
/**
 * グローバルメニュー
 */
.theme-globalnavi {
  float: left;
  font-size: 13px;
}
.theme-globalnavi ul {
  margin: 0;
  padding: 0 1em 0 1em;
}
.theme-globalnavi ul li {
  margin: 0.2em 5px 0 5px;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}
.theme-globalnavi ul li a {
  padding: 0.5em 1em 0.4em 1em;
  display: block;
  color: #fff;
  font-weight: normal;
  border-radius: 1em;
}
.theme-globalnavi ul li a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}
.theme-globalnavi ul li a.current {
  color: #000;
  background-color: #fff;
}
.theme-globalnavi ul li a.current:hover {
  color: #000;
  background-color: #fff;
}
/**
 * ショルダーメニュー
 */
.theme-shouldernavi {
  float: right;
  font-size: 11px;
}
.theme-shouldernavi ul {
  margin: 0;
  padding: 0;
}
.theme-shouldernavi ul li {
  margin: 0 1em;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}
.theme-shouldernavi ul li a {
  padding: 0.5em 1em 0.4em 1em;
  display: block;
  color: #fff;
  border-radius: 1em;
}
.theme-shouldernavi ul li a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}
.theme-shouldernavi ul li a.current {
  color: #000;
  background-color: #fff;
}
.theme-shouldernavi ul li a.current:hover {
  color: #000;
  background-color: #fff;
}
/**
 * レイアウトのレスポンシブ対応
 */
@media (max-width: 800px) {
  .theme-header .theme-globalnavi {
    display: none;
  }
  .theme-header .theme-shouldernavi {
    display: none;
  }
  .theme-header .theme-hamburger-menu {
    display: block;
  }
}
/**
 * コンテンツエリア
 */
.contents {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 3em;
}
.theme-mainblock h1 {
  font-size: 38px;
  text-align: center;
  margin-top: 1.5em;
  margin-bottom: 1em;
  font-weight: bold;
}
@media (max-width: 580px) {
  .theme-mainblock h1 {
    font-size: 32px;
  }
}
h2, .px2-h2 {
  font-size: 30px;
  padding-left: 0;
  padding-bottom: 7px;
  margin-top: 2em;
  margin-left: 0;
  margin-bottom: 0.5em;
  border-bottom: 2px solid #00a0e6;
  color: #00a0e6;
  font-weight: bold;
  line-height: 1.3;
}
h3, .px2-h3 {
  font-size: 24px;
  margin-top: 1.8em;
  margin-bottom: 0.5em;
  margin-left: 0;
  font-weight: bold;
  border-left: 8px solid #00a0e6;
  color: #000;
  padding-left: 0.5em;
  line-height: 1.3;
}
h4, .px2-h4 {
  font-size: 20px;
  margin-top: 1.8em;
  margin-bottom: 0.5em;
  margin-left: 0;
  border-left: 5px solid #999;
  padding: 0.2em 0 0.2em 0.5em;
  color: #000;
  font-weight: bold;
  line-height: 1.3;
}
h5, .px2-h5 {
  font-size: 18px;
  margin-top: 1.5em;
  margin-bottom: 1em;
  margin-left: 0;
  border-left: 4px solid #ddd;
  padding: 0 0 0 0.5em;
  font-weight: bold;
}
h6, .px2-h6 {
  font-size: 16px;
  font-weight: bold;
}
.px2-notice {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.px2-notice h2 {
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: inherit;
  border: none;
  font-size: 22px;
}
.px2-notice > *:first-child, .px2-notice > *:first-child > *:first-child {
  margin-top: 0.2em;
}
.px2-notice > *:last-child, .px2-notice > *:last-child > *:last-child {
  margin-bottom: 0.2em;
}
.px2-image__caption p {
  margin: 0;
}
.px2-notice h2, .px2-notice .px2-h2 {
  margin: 0.2em 0;
  padding: 0;
  border: none;
}
.px2-notice h2 h2, .px2-notice .px2-h2 h2 {
  margin: 0;
}
.px2-index-list ul {
  margin: 0;
}
/**
 * ナビゲーション
 */
.theme-common-navi-frame {
  display: flex;
  gap: 20px;
}
.theme-common-navi-frame__body {
  flex-grow: 1000;
  width: calc(100% - 240px);
}
.theme-common-navi-frame__navi {
  flex-shrink: 0;
  width: 220px;
}
@media (max-width: 800px) {
  .theme-common-navi-frame {
    flex-direction: column;
  }
  .theme-common-navi-frame__body {
    flex-grow: 1000;
    width: 100%;
  }
  .theme-common-navi-frame__navi {
    width: 100%;
  }
}
.theme-common-navi {
  padding-bottom: 14px;
}
.theme-common-navi__inner {
  margin-bottom: 0.7em;
  border: 1px solid #bbb;
  border-radius: 5px;
}
.theme-common-navi__inner p {
  text-align: center;
  margin: 0;
  padding: 0;
  background-color: #e5eef9;
}
.theme-common-navi__inner a {
  display: block;
  padding: 5px;
  background-color: transparent;
  text-decoration: none;
}
.theme-common-navi__inner a:hover {
  text-decoration: underline;
}
.theme-common-navi__inner a.current {
  color: #f9f9f9;
  background-color: #00a0e6;
}
.theme-common-navi__inner a.theme-current-follow {
  background-color: #e5eef9;
}
.theme-common-navi__inner ul {
  display: block;
  margin: 0;
  padding: 0;
}
.theme-common-navi__inner ul li {
  display: block;
  border-top: 1px solid #bbb;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.theme-common-navi__inner ul a {
  padding-left: 10px;
  font-size: medium;
}
.theme-common-navi__inner ul ul li {
  border-top: 1px dotted #ddd;
}
.theme-common-navi__inner ul ul a {
  padding-left: 25px;
  background-color: transparent;
  font-size: small;
  text-indent: -0.7em;
}
.theme-common-navi__inner ul ul a::before {
  content: " ";
  width: 0;
  height: 0;
  display: inline-block;
  margin-right: 0.2em;
  border-width: 0.35em 0 0.35em 0.6em;
  border-style: solid;
  border-color: #00a0e6;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.theme-common-navi__inner ul ul a.current::before {
  border-color: #f9f9f9;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.theme-common-navi__inner ul ul ul a {
  padding-left: 35px;
  background-color: transparent;
  font-size: small;
  text-indent: 0;
}
.theme-common-navi__inner ul ul ul a::before {
  content: "";
  margin-right: 0;
  display: none;
}
.theme-common-navi__inner ul ul ul ul a {
  padding-left: 50px;
  background-color: transparent;
  font-size: x-small;
  text-indent: 0;
}
.theme-common-navi__inner ul ul ul ul a::before {
  content: "";
  margin-right: 0;
  display: none;
}
/**
 * パンくず
 */
.theme-breadcrumb {
  margin: 0 0;
}
.theme-breadcrumb ul, .theme-breadcrumb ul li {
  display: inline;
  padding: 0 0.3em 0 0;
  font-size: small;
}
.theme-breadcrumb ul li:after {
  content: ">";
  margin: 0 0.3em;
}
.theme-breadcrumb ul li:last-child:after {
  content: "";
  margin: 0;
}
.theme-breadcrumb ul li span {
  font-weight: bold;
}
.theme-breadcrumb a {
  text-decoration: none;
}
.theme-breadcrumb a:hover {
  text-decoration: underline;
}
/**
 * ページトップへ戻る
 */
.theme-backtotop {
  margin: 2em 0;
  text-align: right;
}
/**
 * フッター
 */
.theme-footer {
  padding: 1em 0 0.5em 0;
}
.theme-footer a {
  text-decoration: none;
}
.theme-footer a:hover {
  text-decoration: underline;
}
/**
 * メガフッターメニュー
 */
.theme-megafooter-navi {
  margin: 0 auto 1em auto;
  zoom: 1;
  font-size: 14px;
}
.theme-megafooter-navi ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
.theme-megafooter-navi ul li {
  margin: 0 5px;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}
.theme-megafooter-navi ul li a {
  padding: 0.5em 1em 0.4em 1em;
  display: block;
  color: #000;
  border-radius: 1em;
}
.theme-megafooter-navi ul li a:hover {
  color: #fff;
  background-color: #00a0e6;
}
.theme-megafooter-navi ul li a.current {
  color: #000;
  background-color: #fff;
}
.theme-megafooter-navi ul li a.current:hover {
  color: #fff;
  background-color: #00a0e6;
}
.theme-megafooter-navi::after {
  content: "";
  display: block;
  visibility: hidden;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
  clear: both;
}
/**
 * ショルダーメニュー(フッター)
 */
.theme-footer-shouldernavi ul {
  margin: 0.5em;
  padding: 0;
  text-align: center;
  font-size: 12px;
}
.theme-footer-shouldernavi ul li {
  margin: 0 1em;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}
/**
 * サイト内検索窓
 */
.theme-footer-searcher {
  text-align: center;
  padding: 10px;
}
/**
 * フッター ソーシャルアイコン
 */
.theme-social-icons {
  text-align: center;
  font-size: 64px;
  cursor: default;
}
.theme-social-icons a {
  display: inline-block;
  height: 1em;
  width: 1em;
  margin: 0.5em 0.1em;
  color: #d5d5d5;
}
.theme-social-icons a:hover {
  color: #aaa;
}
/* 公開日など記事の日付情報 */
.theme-article-date {
  font-size: 75%;
  text-align: right;
}
