@charset "UTF-8";
/* 1. より直感的なボックスサイズのモデルを使用 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 2. デフォルトのマージンを削除 */
* {
  margin: 0;
}

/* 3. 高さは%ベースを使用 */
html,
body {
  height: 100%;
}

/* 
タイポグラフィの微調整
4. アクセシブルなline-heightを追加
5. テキストのレンダリングを改善
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

/* 6. メディア要素のデフォルトを改善 */
img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

/*  7. フォームのfontに関するデフォルトを削除 */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. テキストのオーバーフローを回避 */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. ルートのスタックコンテキストを作成 */
#root,
#__next {
  isolation: isolate;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "YakuHanJP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1rem;
  color: #001F3F;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

a {
  color: #0054A6;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
a:hover {
  color: #FF6F61;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.3;
  color: #001F3F;
}

h1 {
  font-size: 1.25rem;
}

h2 {
  font-size: 1.125rem;
}

h3 {
  font-size: 1rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.875rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  margin-bottom: 1rem;
}

ul,
ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

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

video {
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #D3D3D3;
}

::-webkit-scrollbar-thumb {
  background: #0054A6;
  border-radius: 5px;
}

.has-main-color {
  color: #0054A6 !important;
}

.has-sub-color {
  color: #87CEEB !important;
}

.has-accent-color {
  color: #FF6F61 !important;
}

.has-font-color {
  color: #001F3F !important;
}

.has-gray-color {
  color: #65686C !important;
}

.has-light-gray-color {
  color: #999999 !important;
}

.has-bg-gray-background-color {
  background-color: #D3D3D3 !important;
}

.has-bg-light-gray-background-color {
  background-color: #F5F5F5 !important;
}

.has-btn-blue-color {
  color: #87CEEB !important;
}

.has-btn-gray-color {
  color: #D3D3D3 !important;
}

.has-redcap-red-color {
  color: #B22227 !important;
}

.has-black-color {
  color: #000000 !important;
}

.has-white-color {
  color: #ffffff !important;
}

.has-main-background-color {
  background-color: #0054A6 !important;
}

.has-sub-background-color {
  background-color: #87CEEB !important;
}

.has-accent-background-color {
  background-color: #FF6F61 !important;
}

.has-font-background-color {
  background-color: #001F3F !important;
}

.has-gray-background-color {
  background-color: #65686C !important;
}

.has-light-gray-background-color {
  background-color: #999999 !important;
}

.has-bg-gray-background-color {
  background-color: #D3D3D3 !important;
}

.has-bg-light-gray-background-color {
  background-color: #F5F5F5 !important;
}

.has-btn-blue-background-color {
  background-color: #87CEEB !important;
}

.has-btn-gray-background-color {
  background-color: #D3D3D3 !important;
}

.has-redcap-red-background-color {
  background-color: #B22227 !important;
}

.has-black-background-color {
  background-color: #000000 !important;
}

.has-white-background-color {
  background-color: #000000 !important;
}

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

h2 {
  margin-top: 2.5em;
  margin-bottom: 1.5em;
  padding: 10px;
  border-left: 8px solid #87CEEB;
  border-bottom: 1px solid #87CEEB;
}

h3 {
  margin-top: 1.5em;
  margin-bottom: 1em;
  padding: 10px 5px;
  border-bottom: 1px solid #87CEEB;
}

h4 {
  margin-top: 1.5em;
  margin-bottom: 1em;
  padding: 10px 5px;
  border-bottom: 1px solid #D3D3D3;
}

h5 {
  margin-top: 1em;
  margin-bottom: 0.5em;
  padding: 5px;
  border-left: 8px solid #D3D3D3;
}

h6 {
  margin-top: 1em;
  margin-bottom: 0.5em;
}

p,
ul,
ol,
blockquote {
  margin-top: 0;
  margin-bottom: 2em;
  line-height: 2;
  text-align: justify;
}
p:empty,
ul:empty,
ol:empty,
blockquote:empty {
  display: none;
}

ul,
ol {
  padding-left: 1.5rem;
}
ul li,
ol li {
  margin-bottom: 0.5em;
}

blockquote {
  padding: 1em;
  border-left: 4px solid #ddd;
  background-color: #f9f9f9;
}

.wp-block-image {
  margin-top: 2.5em;
  margin-bottom: 2.5em;
}

.wp-element-caption {
  margin-top: 5px;
  font-size: 0.875rem;
}

.aligncenter {
  margin: auto;
}

.placeholder-video {
  background: #F5F5F5;
  aspect-ratio: 4/3;
  max-width: 640px;
}

.border {
  position: relative;
  display: inline-block;
}
.border::before {
  position: absolute;
  content: "";
  inset: 0;
  -webkit-box-shadow: 0 0 0 1px rgb(220, 220, 220) inset;
          box-shadow: 0 0 0 1px rgb(220, 220, 220) inset;
  mix-blend-mode: darken;
}

@-webkit-keyframes faq_slideDown {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 3000px;
  }
}

@keyframes faq_slideDown {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 3000px;
  }
}
/* layout */
button {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
button.primary {
  background-color: #0054A6;
  color: #fff;
}
button.primary:hover {
  background-color: #FF6F61;
}
button.secondary {
  background-color: #87CEEB;
  color: #001F3F;
}
button.secondary:hover {
  background-color: #87CEEB;
}

.content_wrap {
  max-width: 928px;
  margin: auto;
  padding: 20px 15px;
}

.line-dotted {
  width: 100%;
  height: 1px;
  margin: 40px 0;
  border-bottom: 1px dashed #D3D3D3;
}

.post_category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #87CEEB;
  padding: 3px;
  font-size: 0.875rem;
  color: #fff;
}

#site-header {
  position: relative;
}

.header-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
}

#header-sub {
  margin-bottom: 10px;
}
#header-sub .rh_logo {
  width: 19.7vw;
  max-width: 127px;
  min-width: 77px;
}

#site-search .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
#site-search .search-form input.search-field {
  width: 235px;
  padding: 0.1em 0.5em;
  font-size: 1rem;
  border: 1px solid #D3D3D3;
}
#site-search .search-form input.search-field:focus {
  border-color: #87CEEB;
  outline: 2px solid #87CEEB;
}
#site-search .search-form button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  height: 31px;
}
#site-search .search-form button span.icon {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
#site-search .search-form button:disabled {
  background: #D3D3D3;
  pointer-events: none;
}

#header-placeholder {
  width: 100%;
  height: 0;
  /* 初期状態では高さを0に */
}

.header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
  z-index: 90;
}
.header-main .site-title {
  width: 54.1vw;
  max-width: 340px;
  margin-bottom: 0;
}
.header-main .hamburger-menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
  padding: 5px 10px;
  font-size: 0.75rem;
  border: 1px solid #f5f5f5;
  border-radius: 3px;
}
.header-main .hamburger-menu .hamburger-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 16px;
  height: 11px;
}
.header-main .hamburger-menu .hamburger-icon .bar {
  position: absolute;
  display: block;
  background: #0054A6;
  width: 100%;
  height: 1px;
  margin: auto;
}
.header-main .hamburger-menu .hamburger-icon .bar:first-of-type {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-main .hamburger-menu .hamburger-icon .bar:last-of-type {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-main .hamburger-menu[aria-expanded=false] .hamburger-icon .bar {
  position: absolute;
  display: block;
  background: #0054A6;
  width: 100%;
  height: 1px;
  margin: auto;
}
.header-main .hamburger-menu[aria-expanded=false] .hamburger-icon .bar:first-of-type {
  top: 0;
  left: 0;
}
.header-main .hamburger-menu[aria-expanded=false] .hamburger-icon .bar:nth-last-of-type(2) {
  top: 0;
  bottom: 0;
}
.header-main .hamburger-menu[aria-expanded=false] .hamburger-icon .bar:last-of-type {
  bottom: 0;
  left: 0;
}
.header-main .hamburger-menu[aria-expanded=true] .hamburger-icon .bar:first-of-type {
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header-main .hamburger-menu[aria-expanded=true] .hamburger-icon .bar:nth-last-of-type(2) {
  display: none;
}
.header-main .hamburger-menu[aria-expanded=true] .hamburger-icon .bar:last-of-type {
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header-main .hamburger-menu[aria-expanded=true] .menu-txt-close {
  display: none;
}
.header-main .hamburger-menu[aria-expanded=true] .menu-txt-open {
  display: block;
}
.header-main .header-navi {
  display: none;
}
.header-main .header-navi ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  gap: 5%;
  margin: 5px 0 0 auto;
  padding: 0;
}
.header-main .header-navi ul li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header-main .header-navi ul li a {
  position: relative;
  display: block;
  padding: 3px 5px;
  color: #001F3F;
}
.header-main .header-navi ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  height: 1px;
  margin: auto;
  border-bottom: solid 1px #87CEEB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-main .header-navi ul li a:hover {
  color: #87CEEB;
}
.header-main .header-navi ul li a:hover::after {
  width: 100%;
}
.header-main .header-navi ul li a.active {
  color: #87CEEB;
  pointer-events: none;
}
.header-main .header-navi ul li a.active::after {
  width: 100%;
}
.header-main .header-navi ul li.has-children {
  position: relative;
  cursor: pointer;
}
.header-main .header-navi ul li.has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 20px;
  width: 100%;
  background: transparent;
}
.header-main .header-navi ul li.has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  display: block;
  background-color: #fff;
  max-height: 0px;
  min-width: 60px;
  padding: 10px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease, opacity 0.3s ease;
  transition: max-height 0.5s ease, opacity 0.3s ease;
}
.header-main .header-navi ul li.has-children .sub-menu li a {
  display: block;
  white-space: nowrap;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header-main .header-navi ul li.has-children .sub-menu li a::after {
  display: none;
}
.header-main .header-navi ul li.has-children .sub-menu li a:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.header-main .header-navi ul li.has-children .sub-menu li:last-child {
  margin-bottom: 0;
}
.header-main .header-navi ul li.has-children:hover .sub-menu, .header-main .header-navi ul li.has-children:focus-within .sub-menu {
  display: block;
  opacity: 1;
  max-height: 500px;
  pointer-events: auto;
}
.header-main.fixednavi {
  display: none;
  position: fixed;
  top: 0;
  background: #fff;
  padding: 10px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-main.fixednavi.fixed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-main.fixednavi.hide {
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
}
.header-main.fixednavi .fixed_wrap {
  position: absolute;
  inset: 0;
  background: #fff;
  margin: 0 calc(50% - 50vw);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: -1;
}

#mobile-navi {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 96;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
#mobile-navi[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#mobile-navi .mobile-navi-wrap {
  background: #F5F5F5;
  width: 80%;
  height: 100vh;
  margin-right: 0;
  margin-left: auto;
  padding: 50px 20px;
  overflow-y: auto;
}
#mobile-navi .mobile-navi-wrap ul {
  list-style: none;
  padding: 0;
}
#mobile-navi .mobile-navi-wrap ul.site_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-left: -5px;
}
#mobile-navi .mobile-navi-wrap ul.site_menu a {
  padding: 5px;
}
#mobile-navi .mobile-navi-wrap ul.banner_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
#mobile-navi .mobile-navi-wrap ul.banner_lists img {
  max-width: 250px;
  width: 100%;
}
#mobile-navi .mobile-navi-wrap .rh_info {
  margin-top: 50px;
}
#mobile-navi #mobile-navi-close {
  position: absolute;
  top: 10px;
  right: calc(80% + 10px);
  display: block;
  background: transparent;
  width: 40px;
  height: 40px;
  padding: 0;
  border: solid 2px #fff;
  border-radius: 50%;
}
#mobile-navi #mobile-navi-close::before, #mobile-navi #mobile-navi-close::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: #fff;
  width: 25px;
  height: 2px;
}
#mobile-navi #mobile-navi-close::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#mobile-navi #mobile-navi-close::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.rh_info img {
  width: 158px;
  height: auto;
}
.rh_info p {
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #001F3F;
}
.rh_info p a {
  color: #001F3F;
}

footer#general {
  background: #F5F5F5;
  margin-top: 80px;
  padding: 50px 20px;
}
footer#general .footer-wrap {
  max-width: 1200px;
  margin: auto;
}
footer#general .site-logo {
  max-width: 254px;
  margin: 0 auto;
}
footer#general .footer_menu {
  margin: 50px auto;
}
footer#general .footer_menu ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 0;
}
footer#general .footer_menu ul a {
  position: relative;
  padding: 5px;
  color: #001F3F;
}
footer#general .footer_menu ul a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  height: 1px;
  margin: auto;
  border-bottom: solid 1px #87CEEB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer#general .footer_menu ul a:hover {
  color: #87CEEB;
}
footer#general .footer_menu ul a:hover::after {
  width: 100%;
}
footer#general .footer_lower .rh_info {
  margin-right: auto;
}
footer#general .footer_lower .banner_lists {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  margin: 50px auto;
  padding: 0;
}
footer#general .footer_lower .banner_lists li {
  margin-bottom: 0;
}
footer#general .footer_lower .banner_lists span {
  display: block;
}
footer#general .footer_lower .banner_lists a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer#general .footer_lower .banner_lists a:hover {
  opacity: 0.7;
}
footer#general .footer_lower .banner_lists img {
  display: block;
  max-width: 196px;
}
footer#general .copy {
  text-align: center;
  font-size: 0.75rem;
  color: #999999;
  margin-top: 20px;
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: #87CEEB;
  border-radius: 3px;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.pagetop:hover {
  background: rgba(135, 206, 235, 0.8);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.pagetop::before, .pagetop::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 50%;
  height: 50%;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.pagetop::before {
  -webkit-transform: translate(0, 1px) rotate(-45deg);
          transform: translate(0, 1px) rotate(-45deg);
}
.pagetop::after {
  -webkit-transform: translate(0, 9px) rotate(-45deg);
          transform: translate(0, 9px) rotate(-45deg);
}
.pagetop.hide {
  -webkit-transform: translateY(10vh);
          transform: translateY(10vh);
}

#breadcrumbs {
  display: none;
}
#breadcrumbs .bcr-arrow {
  display: block;
}
#breadcrumbs .bcr-arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid #65686C;
  border-bottom: 1px solid #65686C;
  -webkit-transform: translateX(-2px) rotate(-45deg);
          transform: translateX(-2px) rotate(-45deg);
}
#breadcrumbs a {
  padding: 3px 5px;
}

#pagination {
  margin: 100px auto 0;
}
#pagination .pagination_inner {
  width: 87.5%;
  max-width: 600px;
  margin: auto;
}
#pagination .pager_list {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 10px;
  padding: 0;
  text-align: center;
}
#pagination .pager_list li {
  display: inline-block;
}
#pagination .pager_list li a,
#pagination .pager_list li .current {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 100%;
}
#pagination .pager_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #D3D3D3;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#pagination .pager_list li a:hover {
  background-color: #87CEEB;
  color: white;
}
#pagination .pager_list li a.first::before {
  content: "";
  display: block;
  background-color: #fff;
  width: 1px;
  height: 15px;
  margin-left: 5px;
}
#pagination .pager_list li a.first::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: translateX(2px) rotate(45deg);
          transform: translateX(2px) rotate(45deg);
}
#pagination .pager_list li a.first:hover::before {
  background-color: white;
}
#pagination .pager_list li a.first:hover::after {
  border-left: 1px solid white;
  border-bottom: 1px solid white;
}
#pagination .pager_list li a.last::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: translateX(-2px) rotate(-135deg);
          transform: translateX(-2px) rotate(-135deg);
}
#pagination .pager_list li a.last::after {
  content: "";
  display: block;
  background-color: #fff;
  width: 1px;
  height: 15px;
  margin-right: 5px;
}
#pagination .pager_list li a.last:hover::before {
  border-left: 1px solid white;
  border-bottom: 1px solid white;
}
#pagination .pager_list li a.last:hover::after {
  background-color: white;
}
#pagination .pager_list li a.prev::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: translateX(2px) rotate(45deg);
          transform: translateX(2px) rotate(45deg);
}
#pagination .pager_list li a.prev:hover::before {
  border-left: 1px solid white;
  border-bottom: 1px solid white;
}
#pagination .pager_list li a.next::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: translateX(-2px) rotate(-135deg);
          transform: translateX(-2px) rotate(-135deg);
}
#pagination .pager_list li a.next:hover::before {
  border-left: 1px solid white;
  border-bottom: 1px solid white;
}
#pagination .pager_list li .current {
  background-color: #87CEEB;
  color: white;
}

#main {
  position: relative;
  padding: 20px 0;
}

.main_img {
  position: relative;
  max-width: 1920px;
  margin: 0 auto 30px;
}
.home .main_img {
  margin-bottom: 30px;
}
.main_img.subpage {
  position: relative;
}
.main_img.subpage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 84, 166, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1;
}
.main_img .page_contents_title {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  z-index: 2;
}

.post_main > *:first-child {
  margin-top: 0 !important;
}
.post_main > *:last-of-child {
  margin-bottom: 0;
}

.post_header {
  margin-bottom: 1.5em;
}
.post_header .post_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 1.5em;
  color: #999999;
}
.post_header .post_meta .published_time {
  font-size: 0.875rem;
}
.post_header .post_meta .updated_time {
  font-size: 0.75rem;
}
.post_header h1 {
  margin-top: 0;
  margin-bottom: 1.5em;
  padding: 10px;
  border-left: 8px solid #87CEEB;
  border-bottom: 1px solid #87CEEB;
}

.post_main h1 {
  margin-top: 2em;
  margin-bottom: 1.5em;
  padding: 10px;
  font-size: 1.5rem;
  border-left: 8px solid #87CEEB;
  border-bottom: 1px solid #87CEEB;
}
.post_main a {
  text-decoration: underline;
}
.post_main a[rel*=noopener]::after {
  content: "\e900";
  display: inline-block;
  margin-left: 5px;
  font-family: "icomoon" !important;
}
.post_main a[href$=".doc"]::after,
.post_main a[href$=".docx"]::after {
  content: "\e909";
  display: inline-block;
  margin-left: 5px;
  font-family: "icomoon" !important;
}
.post_main a[href$=".xls"]::after,
.post_main a[href$=".xlsx"]::after {
  content: "\e908";
  display: inline-block;
  margin-left: 5px;
  font-family: "icomoon" !important;
}
.post_main a[href$=".ppt"]::after,
.post_main a[href$=".pptx"]::after {
  content: "\e907";
  display: inline-block;
  margin-left: 5px;
  font-family: "icomoon" !important;
}
.post_main a[href$=".pdf"]::after {
  content: "\e90a";
  display: inline-block;
  margin-left: 5px;
  font-family: "icomoon" !important;
}

.blocks {
  margin-bottom: 45px;
}

.home_btn_area .btn.btn-primary {
  margin-top: 30px;
  margin-bottom: 0;
}

.iframe {
  position: relative;
  width: 100%;
  margin: 1.5em 0;
  aspect-ratio: 930/480;
}
.iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page .post_header {
  margin-bottom: 1.5em;
}
.page .post_header .post_meta {
  margin-bottom: 1.5em;
}

#reference_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
}
#reference_header ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 25px;
  margin-bottom: 5px;
  padding: 0 15px 20px;
}
#reference_header ul li {
  width: auto;
  margin: 0;
}
#reference_header ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 120px;
  padding-bottom: 5px;
  font-weight: bold;
}
#reference_header ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: #87CEEB;
}
#reference_header ul li a.active::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
  margin: auto;
  background: #87CEEB;
  width: 25px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.search .search_result {
  margin-bottom: 2em;
}
.search h1 {
  margin-bottom: 5px;
  padding: 0;
  font-size: 1rem;
}
.search h1 a {
  display: block;
  text-decoration: underline;
}
.search .url {
  font-size: 0.6875rem;
  color: #474747;
}
.search .excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #474747;
}
.search .updated {
  font-size: 0.75rem;
}
.search .highlight {
  background: yellow;
  font-weight: bold;
}

/* components */
#site-search {
  display: none;
}

.news_list {
  list-style: none;
  padding: 0;
}
.news_list li {
  margin: 0;
  border-bottom: 1px solid #F5F5F5;
}
.news_list li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}
.news_list li > a:hover h3.list_title {
  color: #FF6F61;
}
.news_list li .post_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  line-height: 1.2;
}
.news_list li .post_meta .icon {
  margin-bottom: 2px;
  font-size: 1.125rem;
  color: #FF6F61;
}
.news_list li .post_meta .post_date {
  display: inline-block;
  min-width: 95px;
  font-size: 0.875rem;
  color: #65686C;
}
.news_list li h3.list_title {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: normal;
  border: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* utilities */

.pcmidover {
  display: none !important;
}

.btn {
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #87CEEB;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0 10px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
  text-decoration: none !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:hover {
  background: #D3D3D3;
  color: #001F3F;
}
.btn.btn-primary {
  margin: 40px auto;
  padding: 10px 40px;
  border-radius: 10px;
}
.btn.unauthorised {
  position: relative;
  display: block;
  background: #999999;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn.unauthorised::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn.unauthorised::after {
  content: "学内からのみアクセス可能です";
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  opacity: 0;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn.unauthorised:hover {
  color: #999999;
}
.btn.unauthorised:hover::before {
  background: rgba(0, 0, 0, 0.7);
}
.btn.unauthorised:hover::after {
  opacity: 1;
  color: #fff;
}

.wp-block[data-align=center] {
  text-align: center;
}
.wp-block[data-align=center] .wp-block-redcbv-button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wp-block-redcbv-button.align-center {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@font-face {
  font-family: "icomoon";
  src: url("./fonts/icomoon.eot?s0kw64");
  src: url("./fonts/icomoon.eot?s0kw64#iefix") format("embedded-opentype"), url("./fonts/icomoon.ttf?s0kw64") format("truetype"), url("./fonts/icomoon.woff?s0kw64") format("woff"), url("./fonts/icomoon.svg?s0kw64#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-search:before {
  content: "\e90b";
}

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

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

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

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

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

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

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

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

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

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

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

body {
  position: relative;
}
@media screen and (min-width: 340px){
  .ip5only {
    display: none !important;
  }
}
@media (min-width: 640px){
  h2 {
    padding: 10px 15px;
  }
  .content_wrap {
    padding: 20px;
  }
  .line-dotted {
    margin: 60px 0;
  }
  #header-sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-main.fixednavi {
    left: 0;
    right: 0;
    max-width: 1200px;
    margin: auto;
  }
  #mobile-navi .mobile-navi-wrap {
    padding: 50px;
  }
  footer#general .copy {
    font-size: 0.875rem;
  }
  #breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto 10px;
    padding: 0 20px;
    font-size: 0.875rem;
  }
  #pagination .pager_list {
    gap: 15px;
  }
  .home .main_img {
    margin-bottom: 60px;
  }
  .main_img .page_contents_title {
    font-size: 1.5rem;
  }
  .post_header h1 {
    padding: 10px 15px;
  }
  .post_main h1 {
    padding: 10px 15px;
  }
  .blocks {
    margin-bottom: 75px;
  }
  #reference_header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #site-search {
    display: block;
  }
  .news_list li > a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 20px 10px;
  }
  .sponly {
    display: none !important;
  }
  .btn.btn-primary {
    margin: 80px auto;
  }
}
@media (min-width: 640px) and (max-width: 959px){
  .nottab {
    display: none !important;
  }
}
@media (min-width: 960px){
  .content_wrap {
    padding: 20px 0;
  }
  .line-dotted {
    margin: 80px 0;
  }
  .header-main .hamburger-menu {
    display: none;
  }
  .header-main .header-navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  footer#general {
    margin-top: 120px;
  }
  footer#general .footer_upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 30px;
    margin-bottom: 80px;
  }
  footer#general .site-logo {
    -ms-flex-preferred-size: 254px;
        flex-basis: 254px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-inline: 0;
  }
  footer#general .footer_menu {
    -ms-flex-preferred-size: 560px;
        flex-basis: 560px;
    margin: 0;
  }
  footer#general .footer_menu ul {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 30px;
  }
  footer#general .footer_lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 30px;
  }
  footer#general .footer_lower .banner_lists {
    margin: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .pagetop {
    width: 40px;
    height: 40px;
  }
  #breadcrumbs {
    margin-bottom: 20px;
  }
  .main_img .page_contents_title {
    font-size: 2.25rem;
  }
  .news_list li > a:hover {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  .tabonly {
    display: none !important;
  }
  .mobonly {
    display: none !important;
  }
}
@media (min-width: 1090px){
  .pcmidover {
    display: block !important;
  }
}
@media (max-width: 1279px){
  .pcwonly {
    display: none !important;
  }
}
@media (max-width: 959px){
  .pconly {
    display: none !important;
  }
}
@media (max-width: 639px){
  .notsp {
    display: none !important;
  }
  .tabonly {
    display: none !important;
  }
}
@media (max-width: 340px){
  .content_wrap {
    padding: 15px 10px;
  }
  .header-wrap {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 340px){
  .notip5 {
    display: none !important;
  }
}
/*# sourceMappingURL=style.css.map */