@charset "UTF-8";
/* Sass Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;700&display=swap");
html, body {
  font-size: 16px;
  font-weight: 400;
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  html, body {
    min-width: 1230px;
  }
}
@media screen and (max-width: 575px) {
  html, body {
    font-size: 14px;
  }
}
html.site_font_big, body.site_font_big {
  font-size: 18px;
}
@media screen and (max-width: 575px) {
  html.site_font_big, body.site_font_big {
    font-size: 16px;
  }
}

body {
  word-break: break-word;
}
body.open {
  overflow: hidden;
}

.container-fluid {
  max-width: 1230px; /*　画面幅の上限　*/
  margin-left: auto;
  margin-right: auto;
}
.container-fluid.narrow-width {
  max-width: 950px;
}

a:hover,
a:active,
a:focus {
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}

/*******************************************************************************************

 HEADER

*******************************************************************************************/
header.global_header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  header.global_header {
    min-width: 1230px;
  }
}
@media screen and (max-width: 767px) {
  header.global_header {
    position: relative;
  }
}
header.global_header nav.global_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  background-color: #ffffff;
  height: 135px;
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav {
    height: 80px;
  }
}
header.global_header nav.global_nav h1 {
  font-size: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 17.908%;
  margin-left: 2.7%;
}
header.global_header nav.global_nav h1 a {
  display: block;
  width: 100%;
}
header.global_header nav.global_nav h1 a img {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav h1 {
    margin-left: 1.3rem;
    width: 60%;
    max-width: 200px;
  }
}
header.global_header nav.global_nav div.global_menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  margin-right: 2%;
}
header.global_header nav.global_nav div.global_menu ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu {
  position: relative;
  padding: 0 1.625rem;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu + li.main_menu {
  border-left: 1px solid #333;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #2D2D2D;
  font-size: 1.125rem;
  line-height: 1.444;
  letter-spacing: 0.15em;
  font-weight: 500;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #2D2D2D;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu a:hover::after {
  width: 100%;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 11px;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner::before {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 100%;
  border-bottom: 11px solid white;
  border-left: 6px solid rgba(255, 255, 255, 0);
  border-right: 6px solid rgba(255, 255, 255, 0);
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner {
  position: relative;
  padding: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  background-color: white;
  text-align: left;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner a {
  white-space: nowrap;
  display: inline-block;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner a + a {
  margin-top: 0.5rem;
}
@media screen and (max-width: 1550px) {
  header.global_header nav.global_nav div.global_menu ul li.main_menu {
    padding: 0 1rem;
  }
  header.global_header nav.global_nav div.global_menu ul li.main_menu a {
    font-size: 1rem;
  }
}
header.global_header nav.global_nav div.global_menu div.supple_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  gap: 1rem;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_font_size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_font_size input[type=radio] {
  opacity: 0;
  position: absolute;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_font_size label {
  font-size: 1rem;
  display: inline-block;
  color: #AAAAAA;
  background-color: #DDDDDD;
  width: 3.5rem;
  line-height: 2.25;
  text-align: center;
  margin: 0;
  cursor: pointer;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_font_size label:first-of-type {
  border-top-left-radius: 1.125em;
  border-bottom-left-radius: 1.125em;
  margin-left: 1rem;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_font_size label:last-of-type {
  border-top-right-radius: 1.125em;
  border-bottom-right-radius: 1.125em;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_font_size input[type=radio]:checked + label {
  background-color: #007BCC;
  color: #ffffff;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_font_size input[type=radio]:focus + label {
  outline: 1px solid #333;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_search {
  width: 15rem;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_search form.gsc-search-box {
  margin-bottom: 0;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_search table.gsc-search-box {
  margin-bottom: 0;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_search .gsc-input-box, header.global_header nav.global_nav div.global_menu div.supple_menu div.site_search .gsc-input-box-hover, header.global_header nav.global_nav div.global_menu div.supple_menu div.site_search .gsc-input-box-focus {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 0;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_search .gsib_a {
  padding: 0 0.5625rem;
  position: relative;
  height: 2.125rem;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_search .gsst_a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_search table.gsc-search-box td.gsc-input {
  padding: 0;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_search .gsc-search-button-v2 {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  outline: none;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}
header.global_header nav.global_nav div.global_menu div.supple_menu div.site_search .gsc-search-button-v2:is(:hover, :active, :focus) {
  background-color: #0167AB;
}
header.global_header nav.global_nav div.global_menu div.supple_menu a.access_btn {
  display: inline-block;
  width: 10em;
  text-align: center;
  background-color: #FB8500;
  color: #fff;
  border: 1px solid #FB8500;
  line-height: 2.125;
  border-radius: 1.0625em;
  text-decoration: none;
}
header.global_header nav.global_nav div.global_menu div.supple_menu a.access_btn:is(:hover, :focus, :active) {
  background-color: #fff;
  color: #FB8500;
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav div.global_menu {
    display: none;
  }
}
header.global_header nav.global_nav label.modal_toggle_btn {
  padding: 0.75rem;
  padding-top: 1.4rem;
  margin: 0;
  border: none;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  line-height: 1;
  width: 120px;
  margin-left: auto;
  background-color: #007BCC;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}
header.global_header nav.global_nav label.modal_toggle_btn span:not(:last-of-type) {
  display: block;
  width: 3rem;
  background-color: #ffffff;
  height: 3px;
}
header.global_header nav.global_nav label.modal_toggle_btn span:not(:last-of-type) + span {
  margin-top: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 0.95rem;
}
header.global_header nav.global_nav label.modal_toggle_btn span:last-of-type {
  color: #ffffff;
}
header.global_header nav.global_nav label.modal_toggle_btn:hover, header.global_header nav.global_nav label.modal_toggle_btn:active, header.global_header nav.global_nav label.modal_toggle_btn:focus {
  background-color: #33aeff;
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav label.modal_toggle_btn {
    width: 55px;
    margin-left: 0;
    font-size: 10px;
    padding: 15px 14px 9px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header.global_header nav.global_nav label.modal_toggle_btn span:not(:last-of-type) {
    height: 1px;
    width: 20px;
  }
  header.global_header nav.global_nav label.modal_toggle_btn span:not(:last-of-type) + span {
    margin-top: 3px;
    font-size: 10px;
    white-space: nowrap;
  }
  header.global_header nav.global_nav label.modal_toggle_btn span:last-of-type {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

/******************/
label.modal_toggle_btn {
  position: fixed;
  top: 0.7857rem;
  right: 11px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3.92857rem;
  height: 3.92857em;
  background: #007BCC;
  border-radius: 50%;
  cursor: pointer;
  margin-bottom: 0;
  z-index: 99999;
}
label.modal_toggle_btn span {
  position: absolute;
  left: 50%;
  display: inline-block;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
label.modal_toggle_btn span:first-of-type, label.modal_toggle_btn span:nth-of-type(2) {
  width: 2rem;
  height: 2px;
  background-color: #fff;
}
label.modal_toggle_btn span:first-of-type {
  top: calc(50% - 9px);
}
label.modal_toggle_btn span:nth-of-type(2) {
  top: 50%;
}
label.modal_toggle_btn span:last-of-type {
  top: calc(50% + 12px);
  color: #fff;
  font-size: 10px;
  white-space: nowrap;
}
label.modal_toggle_btn:has(~ input#modal_menu_flg:checked) span:first-of-type, label.modal_toggle_btn:has(~ input#modal_menu_flg:checked) span:nth-of-type(2) {
  top: calc(50% - 5px);
}
label.modal_toggle_btn:has(~ input#modal_menu_flg:checked) span:first-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(-20deg);
          transform: translate(-50%, -50%) rotate(-20deg);
}
label.modal_toggle_btn:has(~ input#modal_menu_flg:checked) span:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) rotate(20deg);
          transform: translate(-50%, -50%) rotate(20deg);
}
@media screen and (max-width: 767px) {
  label.modal_toggle_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

input#modal_menu_flg {
  display: none;
}

div.modal_menu {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
  opacity: 0;
  pointer-events: none;
  padding: 30px;
  overflow-y: scroll;
}
input#modal_menu_flg:checked + div.modal_menu {
  opacity: 1;
  pointer-events: auto;
}
div.modal_menu div.global_menu ul {
  padding: 10% 0 0;
  width: 100%;
  max-width: 767px;
  margin: 0 auto;
  list-style: none;
  font-size: 1rem;
}
div.modal_menu div.global_menu ul li a {
  display: block;
  color: #151515;
  text-decoration: none;
  padding: 0.625rem;
  border-bottom: 1px solid #999999;
}
div.modal_menu div.global_menu ul li a:hover, div.modal_menu div.global_menu ul li a:active, div.modal_menu div.global_menu ul li a:focus {
  background-color: #999999;
  color: #ffffff;
}
div.modal_menu div.global_menu ul li div a {
  padding-left: 2rem;
  border-bottom: 1px solid #CCCCCC;
}
div.modal_menu div.global_menu div.site_search {
  width: 100%;
  max-width: 767px;
  margin: 1rem auto 0;
}
div.modal_menu div.global_menu div.site_search form.gsc-search-box {
  margin-bottom: 0;
}
div.modal_menu div.global_menu div.site_search table.gsc-search-box {
  margin-bottom: 0;
}
div.modal_menu div.global_menu div.site_search .gsc-input-box, div.modal_menu div.global_menu div.site_search .gsc-input-box-hover, div.modal_menu div.global_menu div.site_search .gsc-input-box-focus {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 0;
}
div.modal_menu div.global_menu div.site_search .gsib_a {
  padding: 0 9px;
  position: relative;
  height: 34px;
}
div.modal_menu div.global_menu div.site_search .gsst_a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
div.modal_menu div.global_menu div.site_search table.gsc-search-box td.gsc-input {
  padding: 0;
}
div.modal_menu div.global_menu div.site_search .gsc-search-button-v2 {
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  outline: none;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}
div.modal_menu div.global_menu div.site_search .gsc-search-button-v2:is(:hover, :active, :focus) {
  background-color: #0167AB;
}

body.site_font_big header.global_header nav.global_nav div.global_menu ul li.main_menu {
  padding: 0 1.1rem;
}

/*******************************************************************************************

 FOOTER

*******************************************************************************************/
div.global_footer {
  position: relative;
  z-index: 1;
}
div.global_footer footer {
  background-color: #5EC6FF;
  padding-top: 83px;
  padding-bottom: 3.5rem;
  position: relative;
  color: #ffffff;
}
div.global_footer footer div.footer_contents {
  width: 100%;
  max-width: 1230px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.25rem;
}
div.global_footer footer div.footer_contents .hospital .logo {
  width: 230px;
  margin-bottom: 1.25rem;
}
div.global_footer footer div.footer_contents .hospital .logo img {
  max-width: 100%;
}
div.global_footer footer div.footer_contents .hospital .info p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.875;
}
div.global_footer footer div.footer_contents nav.footer_menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
div.global_footer footer div.footer_contents nav.footer_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  letter-spacing: 0.15em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
div.global_footer footer div.footer_contents nav.footer_menu ul li {
  display: contents;
}
div.global_footer footer div.footer_contents nav.footer_menu ul li::after {
  content: "";
  width: 1px;
  background-color: #fff;
  height: 0.8333em;
}
div.global_footer footer div.footer_contents nav.footer_menu ul li a {
  display: inline-block;
  color: #fff;
}
div.global_footer footer div.footer_contents nav.footer_menu ul.main_menu {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
div.global_footer footer div.footer_contents nav.footer_menu ul.main_menu li a {
  padding-left: 1.35rem;
  position: relative;
}
div.global_footer footer div.footer_contents nav.footer_menu ul.main_menu li a::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
div.global_footer footer div.footer_contents nav.footer_menu ul.main_menu li a::after {
  content: "";
  border-left: 0.3em solid #5EC6FF;
  border-top: 0.2em solid rgba(94, 198, 255, 0);
  border-bottom: 0.2em solid rgba(94, 198, 255, 0);
  position: absolute;
  top: 50%;
  left: 0.4em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  div.global_footer footer {
    padding-top: 2rem;
    padding-bottom: 2.357rem;
  }
  div.global_footer footer div.footer_contents {
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  div.global_footer footer div.footer_contents .hospital .logo {
    width: 160px;
    margin-bottom: 0.5rem;
  }
  div.global_footer footer div.footer_contents .hospital div.info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  div.global_footer footer div.footer_contents .hospital div.info p {
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.714;
  }
  div.global_footer footer div.footer_contents .hospital div.info p:first-of-type {
    width: 100%;
  }
  div.global_footer footer div.footer_contents nav.footer_menu {
    display: none;
  }
}
div.global_footer div.copyright {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-align: center;
  background-color: #007BCC;
  padding: 0.5em;
}
@media screen and (max-width: 767px) {
  div.global_footer div.copyright {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 0.857rem;
    letter-spacing: 0.05em;
  }
}

/* ページトップへ戻るボタン */
#page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 50;
}
#page-top a {
  text-decoration: none;
  color: #ffffff;
  background-color: rgba(0, 123, 204, 0.9);
  font-size: 1rem;
  text-align: center;
  display: block;
  width: 3.125rem;
  height: 3.125rem;
}
#page-top a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 1rem;
}
#page-top a:hover, #page-top a:active {
  color: #999999;
}

body.site_font_big div.global_footer footer div.footer_contents nav.footer_menu ul {
  gap: 0.5em;
}

/*******************************************************************************************

 MAIN

*******************************************************************************************/
body:not(.top-page) main {
  padding-bottom: 3rem;
  min-height: calc(100dvh - 470px);
}
@media screen and (max-width: 767px) {
  body:not(.top-page) main {
    min-height: calc(100dvh - 302px);
  }
}
@media screen and (max-width: 575px) {
  body:not(.top-page) main {
    min-height: calc(100dvh - 278px);
  }
}
main .rowwrap {
  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: flex-start;
  overflow: hidden;
}
main .rowwrap .primary {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
main .rowwrap .secondary {
  width: 25%;
  margin-left: 6.5%;
}
@media screen and (max-width: 767px) {
  main .rowwrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  main .rowwrap .primary {
    width: 100%;
  }
  main .rowwrap .secondary {
    width: 100%;
    margin-left: 0;
    margin-top: 3rem;
    padding: 0 10px;
  }
}

/*****************/
/* ページタイトル */
/****************/
main div.page-title {
  background-color: #007BCC;
  color: #ffffff;
  height: 10.5rem;
  position: relative;
  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;
}
main div.page-title > h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.5rem;
  gap: 1.5rem;
}
main div.page-title > h2::before {
  content: "";
  display: block;
  width: 1em;
  height: 0.125em;
  background-color: #5EC6FF;
}
main div.page-title > h2 span {
  font-size: 1em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  main div.page-title {
    height: 5rem;
    padding: 0 10px;
  }
  main div.page-title > h2 {
    font-size: 1.2857rem;
    gap: 0.666em;
  }
  main div.page-title > h2::before {
    width: 0.833em;
    height: 0.166em;
  }
}

/***************+*/
/* ぱんくずリスト */
/****************/
nav.breadcrumb-wrap {
  margin-bottom: 3rem;
  background-color: #EEEEEE;
}
nav.breadcrumb-wrap ol.bread_crumb {
  margin: 0 auto;
  padding: 0.6875rem 15px;
  background-color: transparent;
  font-size: 0.875rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 1230px;
  gap: 0.5em;
}
nav.breadcrumb-wrap ol.bread_crumb li {
  display: contents;
}
nav.breadcrumb-wrap ol.bread_crumb li a {
  color: #747474;
}
nav.breadcrumb-wrap ol.bread_crumb li + li::before {
  content: "|";
  color: #747474;
  padding: 0;
}
nav.breadcrumb-wrap ol.bread_crumb li.active {
  color: #747474;
}
@media screen and (max-width: 767px) {
  nav.breadcrumb-wrap {
    margin-bottom: 1.857rem;
  }
  nav.breadcrumb-wrap ol.bread_crumb li.active {
    display: inline;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  nav.breadcrumb-wrap ol.bread_crumb li.active::before {
    margin-right: 0.5em;
  }
}

/****************/
/* サイドメニュー */
/***************/
aside.secondary nav.sidebar-menu {
  margin-bottom: 2rem;
}
aside.secondary nav.sidebar-menu > h3 {
  font-size: 1.25rem;
  color: #333;
  margin: 0 auto 1.75rem;
  line-height: 1;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
aside.secondary nav.sidebar-menu > h3::before {
  content: "";
  display: block;
  background-color: #C8ECFF;
  width: 0.75em;
  height: 0.15em;
}
aside.secondary nav.sidebar-menu {
  /* メニュー本体 */
}
aside.secondary nav.sidebar-menu > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
aside.secondary nav.sidebar-menu > ul > li {
  border-bottom: 1px solid #EEE;
  line-height: 1.375;
}
aside.secondary nav.sidebar-menu > ul > li:first-of-type {
  border-top: 1px solid #EEE;
}
aside.secondary nav.sidebar-menu > ul > li > a {
  display: block;
  text-decoration: none;
  color: #000000;
  font-size: 1rem;
  padding: 1em 1em 1em 0;
  text-decoration: none;
  font-weight: 400;
  position: relative;
}
aside.secondary nav.sidebar-menu > ul > li > a::after {
  color: #007BCC;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  position: absolute;
  right: 0;
}
aside.secondary nav.sidebar-menu > ul > li:is(:hover, :active, .active) > a {
  color: #007BCC;
}
aside.secondary nav.sidebar-menu + nav.sidebar-menu {
  margin-top: 2rem;
}
aside.secondary ul.banner_list {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
aside.secondary ul.banner_list li {
  margin-bottom: 1rem;
}
aside.secondary ul.banner_list li a {
  display: block;
  text-align: center;
}

@media screen and (max-width: 767px) {
  body:not(.top-page) main > .container-fluid {
    padding: 0;
  }
  body:not(.top-page) main > .container-fluid .rowwrap .primary {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*******************************************************************************************

 BOOTCMS　コンテンツ設定部分

*******************************************************************************************/
/********/
/*見出し*/
/*******/
.lv1 {
  font-size: 1.625rem;
  margin: 0;
  color: #333333;
  font-weight: 500;
  line-height: 1.466;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #F2F2F2;
}
.lv1::after {
  content: "";
  width: 6rem;
  border-bottom: 2px solid #007BCC;
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .lv1 {
    font-size: 1.2857rem;
    padding-bottom: 0.5rem;
  }
  .lv1::after {
    width: 6.857rem;
  }
}

.lv2 {
  color: #333;
  font-size: 1.3125rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.1em;
  line-height: 1.45;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.lv2::before {
  content: "";
  width: 1em;
  height: 2px;
  background-color: #007BCC;
}
@media screen and (max-width: 767px) {
  .lv2 {
    font-size: 1.2857rem;
    padding: 0.5rem 0;
  }
}

.lv3 {
  color: #007BCC;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  position: relative;
}

.lv4 {
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/*************/
/*テキストのみ*/
/************/
.text-only {
  margin: 0;
}
.text-only p {
  margin-bottom: 0;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .text-only p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .text-only.text-right {
    text-align: left !important;
  }
}

/************/
/* 写真のみ */
/**********/
.photo-only {
  margin: 0;
  text-align: center;
}
.photo-only a img {
  display: inline-block;
}
.photo-only p.caption {
  margin-bottom: 0;
  margin-top: 0.5em;
}

/*****************/
/* 写真＋テキスト */
/****************/
.photo-and-text {
  margin: 0;
}
.photo-and-text:after {
  content: "";
  clear: both;
  display: block;
}
.photo-and-text p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 2;
}
.photo-and-text span.photo-area {
  max-width: 80%;
}
.photo-and-text span.photo-area.float-right {
  margin-left: 2.8125rem;
}
.photo-and-text span.photo-area.float-left {
  margin-right: 2.8125rem;
}
.photo-and-text span.photo-area img {
  margin-bottom: 1rem;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .photo-and-text span.photo-area {
    display: block;
    width: 100% !important;
    max-width: 100%;
    text-align: center;
    float: none !important;
    margin: 0 0 2rem !important;
  }
  .photo-and-text span.photo-area img {
    width: auto;
    margin-bottom: 0;
  }
  .photo-and-text p {
    font-size: 1rem;
  }
}

/*********************/
/* 2列写真+キャプション */
/* 3列写真+キャプション */
/* 4列写真+キャプション */
/*********************/
.two-photo,
.three-photo,
.four-photo {
  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: flex-start;
  margin: 0;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.two-photo .photo_set,
.three-photo .photo_set,
.four-photo .photo_set {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.two-photo .photo_set img,
.three-photo .photo_set img,
.four-photo .photo_set img {
  display: inline-block;
  width: 100%;
}
.two-photo .photo_set .caption-title,
.three-photo .photo_set .caption-title,
.four-photo .photo_set .caption-title {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 15px;
  text-align: left;
  margin-bottom: 0;
}
.two-photo .photo_set .caption-text,
.three-photo .photo_set .caption-text,
.four-photo .photo_set .caption-text {
  margin: 5px 0;
  line-height: 1.6;
  text-align: left;
}
.two-photo .photo_set span.photo_even,
.three-photo .photo_set span.photo_even,
.four-photo .photo_set span.photo_even {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1.5;
  position: relative;
}
.two-photo .photo_set span.photo_even img,
.three-photo .photo_set span.photo_even img,
.four-photo .photo_set span.photo_even img {
  max-width: 100%;
  height: auto;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}
.two-photo a img,
.three-photo a img,
.four-photo a img {
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #ffffff;
}
.two-photo a:hover img,
.three-photo a:hover img,
.four-photo a:hover img {
  opacity: 0.7;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .two-photo,
  .three-photo,
  .four-photo {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .two-photo.turn_on,
  .three-photo.turn_on,
  .four-photo.turn_on {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .two-photo.turn_on div.photo_set,
  .three-photo.turn_on div.photo_set,
  .four-photo.turn_on div.photo_set {
    width: 100%;
  }
  .two-photo.turn_on div.photo_set span.photo_even,
  .three-photo.turn_on div.photo_set span.photo_even,
  .four-photo.turn_on div.photo_set span.photo_even {
    aspect-ratio: unset !important;
  }
  .two-photo.turn_on div.photo_set span.photo_even img,
  .three-photo.turn_on div.photo_set span.photo_even img,
  .four-photo.turn_on div.photo_set span.photo_even img {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
  }
  .two-photo.turn_on div.photo_set + div.photo_set,
  .three-photo.turn_on div.photo_set + div.photo_set,
  .four-photo.turn_on div.photo_set + div.photo_set {
    margin-top: 2rem;
  }
}

/**********/
/* リスト */
/*********/
ul.dot, ol.dot, ul.none, ol.none {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.dot > li, ol.dot > li, ul.none > li, ol.none > li {
  padding-left: 2em;
  line-height: 1.8;
  position: relative;
}
ul.dot > li::before, ol.dot > li::before, ul.none > li::before, ol.none > li::before {
  display: inline-block;
  width: 2em;
  position: absolute;
  left: 0;
  color: #007BCC;
}

ul.dot > li::before, ol.dot > li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "•";
  text-align: center;
}

ul.counter, ol.counter {
  display: table;
  margin: 0;
  padding: 0;
}
ul.counter > li, ol.counter > li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: table-row;
  counter-increment: number;
}
ul.counter > li::before, ol.counter > li::before {
  content: counter(number) ".";
  display: table-cell;
  padding-right: 0.4em;
  text-align: right;
  white-space: nowrap;
}
ul.counter > li::after, ol.counter > li::after {
  content: "";
  display: block;
  margin-bottom: 0.5em;
}
ul.counter > li:last-of-type:after, ol.counter > li:last-of-type:after {
  margin-bottom: 0;
}

/**********/
/* ボタン */
/*********/
.btn-on {
  margin: 0;
}

.original-btn {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  text-align: center;
  border: 1px solid #007BCC;
  background-color: #007BCC;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5em 3em;
  line-height: 2;
  min-width: 17.5em;
  border-radius: 1.5625em;
}
.original-btn:hover, .original-btn:active, .original-btn:focus {
  text-decoration: none;
  background-color: #ffffff;
  color: #007BCC;
}
.original-btn.btn-big {
  min-width: 20em;
  font-size: 1.125rem;
}
.original-btn.btn-small {
  min-width: 15em;
  padding: 0.375em 2em;
}
.original-btn.btn-blue {
  border: 2px solid #00238C;
  background-color: #00238C;
}
.original-btn.btn-blue:hover, .original-btn.btn-blue:active, .original-btn.btn-blue:focus {
  background-color: transparent;
  color: #00238C;
}
.original-btn.btn-green {
  border: 2px solid #006600;
  background-color: #006600;
}
.original-btn.btn-green:hover, .original-btn.btn-green:active, .original-btn.btn-green:focus {
  background-color: transparent;
  color: #006600;
}
.original-btn.btn-orange {
  border: 2px solid #FF8000;
  background-color: #FF8000;
}
.original-btn.btn-orange:hover, .original-btn.btn-orange:active, .original-btn.btn-orange:focus {
  background-color: transparent;
  color: #FF8000;
}
.original-btn.btn-gray {
  border: 2px solid #999999;
  background-color: #999999;
}
.original-btn.btn-gray:hover, .original-btn.btn-gray:active, .original-btn.btn-gray:focus {
  background-color: transparent;
  color: #999999;
}
@media screen and (max-width: 767px) {
  .original-btn {
    min-width: 60%;
    font-size: 1rem;
  }
  .original-btn.btn-big {
    min-width: 75%;
    font-size: 1rem;
  }
  .original-btn.btn-small {
    min-width: 50%;
    font-size: 0.85714rem;
  }
}

.hr-on {
  margin: 0;
}

/***********************************************/
/* Youtube GoogleMap 埋め込みタグ レスポンシブ化 */
/***********************************************/
.youtube-box,
.gmap-box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.youtube-box iframe,
.gmap-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube-on,
.googlemap-on {
  margin: 0;
}

/************/
/* テーブル */
/***********/
table.table-standard,
table.table-flexible {
  width: 100%;
  border-collapse: collapse;
}
table.table-standard tr td,
table.table-flexible tr td, table.table-standard tr th,
table.table-flexible tr th {
  font-size: 1rem;
  color: #333;
  border: none;
  padding: 0.875em 1em;
  border: 1px solid #ccc;
}
table.table-standard tr th,
table.table-flexible tr th {
  font-weight: 500;
  white-space: nowrap;
  background-color: #F6F6F6;
}

.table-on {
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  table.table-standard tr th, table.table-standard tr td,
  table.table-flexible tr th,
  table.table-flexible tr td {
    font-size: 1rem;
    padding: 0.5em;
  }
  table.table-standard tr th,
  table.table-flexible tr th {
    padding-left: 0.5em;
  }
}

@media screen and (max-width: 767px) {
  table.table-flexible {
    display: block;
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
  }
  table.table-flexible tbody {
    display: block;
    width: 100%;
  }
  table.table-flexible tbody tr {
    display: block;
    width: 100%;
  }
  table.table-flexible tbody tr th, table.table-flexible tbody tr td {
    display: block;
    width: 100%;
    word-break: break-all;
    border-bottom: none;
    padding: 0.5em;
  }
  table.table-flexible tbody tr th {
    padding: 0.5em;
  }
  table.table-flexible tbody tr:last-of-type {
    border-bottom: 1px solid #ccc;
  }
  table.table-flexible.tophead tr:first-of-type, table.table-flexible.lefttophead tr:first-of-type {
    display: none;
  }
  table.table-flexible.tophead td::before, table.table-flexible.lefttophead td::before {
    content: attr(data-tophead) ":";
    font-weight: bold;
  }
  table.table-standard {
    margin-bottom: 0;
    border-left: none;
    border-top: none;
    white-space: nowrap;
  }
  table.table-standard tbody {
    display: block;
  }
  table.table-standard tbody tr th,
  table.table-standard tbody tr td {
    min-width: 10em;
    padding-right: 1em;
  }
  table.table-standard tbody tr td {
    width: 100%;
  }
  table.table-standard tbody tr:not(:has(th)) td {
    width: auto;
  }
}
/********/
/* 全幅 */
/*******/
section.extend {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 2rem 15px;
}
section.extend.extend_fixed {
  background-attachment: fixed;
}
section.extend.none_space {
  padding: 0;
}

@media screen and (max-width: 767px) {
  .view_pc_blocktype {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .view_sp_blocktype {
    display: none !important;
  }
}
/*******************************************************************************************

 トップページ

*******************************************************************************************/
body.top-page section.top_mainvisual {
  width: 100%;
  height: 0;
  padding-bottom: 610px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual {
    width: 100%;
    padding-bottom: 82.25%;
  }
}
body.top-page section.top_mainvisual div.top_slideshow {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  color: #EAEEF2;
}
body.top-page section.top_mainvisual div.top_slideshow .slide {
  position: absolute;
  top: 0%;
  left: 0%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 3s ease, -webkit-transform 5s linear;
  transition: opacity 3s ease, -webkit-transform 5s linear;
  transition: opacity 3s ease, transform 5s linear;
  transition: opacity 3s ease, transform 5s linear, -webkit-transform 5s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1.15) translate3d(0, 0, 0);
          transform: scale(1.15) translate3d(0, 0, 0);
}
body.top-page section.top_mainvisual div.top_slideshow .slide.showfase {
  opacity: 1;
  -webkit-transform: scale(1.075) translate3d(0, 0, 0) rotate(0.0001deg);
          transform: scale(1.075) translate3d(0, 0, 0) rotate(0.0001deg);
}
body.top-page section.top_mainvisual div.top_slideshow .slide.fadefase {
  opacity: 0;
  -webkit-transform: scale(1) translate3d(0, 0, 0) rotate(0.0001deg);
          transform: scale(1) translate3d(0, 0, 0) rotate(0.0001deg);
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual div.top_slideshow {
    width: 100%;
  }
}
body.top-page section.top_mainvisual div.top_photo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body.top-page section.top_mainvisual div.contents {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.8)), color-stop(36%, rgba(255, 255, 255, 0.8)), color-stop(50%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 36%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  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;
}
body.top-page section.top_mainvisual div.contents div.catch {
  width: 100%;
  max-width: 1230px;
  padding: 0 15px;
}
body.top-page section.top_mainvisual div.contents div.catch h2 {
  margin: 0;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 2.875rem;
  letter-spacing: 0.143em;
  line-height: 1.63;
  margin-bottom: 1rem;
  font-weight: 500;
}
body.top-page section.top_mainvisual div.contents div.catch p {
  font-size: 1.125rem;
  line-height: 1.888;
  font-weight: 500;
  letter-spacing: 0.143em;
  margin-bottom: 0;
}
body.top-page section.top_mainvisual div.contents div.catch {
  margin-bottom: 100px;
}
body.top-page section.top_mainvisual div.contents div.catch > img {
  width: 100%;
  max-width: 290px;
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual div.contents {
    background-image: none;
  }
  body.top-page section.top_mainvisual div.contents div.catch {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 100%;
    margin: 0;
    padding: 5px;
  }
  body.top-page section.top_mainvisual div.contents div.catch h2 {
    display: none;
  }
  body.top-page section.top_mainvisual div.contents div.catch p {
    display: none;
  }
  body.top-page section.top_mainvisual div.contents div.catch img {
    width: 40%;
  }
}
body.top-page main {
  background-color: #EBF8FF;
  padding-bottom: 1px;
}
body.top-page .top_menu_wrap {
  position: relative;
  margin-top: -6.0625rem;
  margin-bottom: 1.875rem;
}
body.top-page .top_menu_wrap nav.menu_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-color: #fff;
  gap: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 5px;
}
body.top-page .top_menu_wrap nav.menu_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 0.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16.6666666667%;
  height: 12.125rem;
  background-color: #007BCC;
  color: #fff;
  text-decoration: none;
  border-left: 1px solid #ffffff;
}
body.top-page .top_menu_wrap nav.menu_list a:where(:first-of-type) {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-left: none;
}
body.top-page .top_menu_wrap nav.menu_list a:where(:last-of-type) {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
body.top-page .top_menu_wrap nav.menu_list a span {
  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;
  background-color: #C8ECFF;
  width: 95px;
  height: 95px;
  border-radius: 50%;
}
body.top-page .top_menu_wrap nav.menu_list a span img {
  width: 80%;
}
body.top-page .top_menu_wrap nav.menu_list a p {
  font-size: 1.125rem;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0.15em;
}
body.top-page .top_menu_wrap nav.menu_list a:is(:hover, :focus) {
  background-color: #0167AB;
}
body.top-page .top_menu_wrap nav.menu_list a:is(:hover, :focus) span {
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  body.top-page .top_menu_wrap {
    margin-top: 0;
    margin-bottom: 1.714rem;
  }
  body.top-page .top_menu_wrap nav.menu_list {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
  body.top-page .top_menu_wrap nav.menu_list a {
    width: 33.3333333333%;
    height: 8.92857rem;
    border-radius: 0;
    border-left: none;
    gap: 0.643rem;
  }
  body.top-page .top_menu_wrap nav.menu_list a:nth-of-type(even) {
    background-color: #0A8BE1;
  }
  body.top-page .top_menu_wrap nav.menu_list a span {
    width: 65px;
    height: 65px;
  }
  body.top-page .top_menu_wrap nav.menu_list a p {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}
body.top-page .top_special_info_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-width: 2px;
  border-style: solid;
  border-radius: 5px;
  background-color: #fff;
  margin-bottom: 30px;
}
body.top-page .top_special_info_wrap .title {
  width: 18.5%;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
body.top-page .top_special_info_wrap .title img {
  width: 2.375rem;
  height: 2.375rem;
}
body.top-page .top_special_info_wrap .title h3 {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 1.125rem;
  text-align: center;
}
body.top-page .top_special_info_wrap .info_list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.125rem;
  padding: 2rem;
}
body.top-page .top_special_info_wrap .info_list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body.top-page .top_special_info_wrap .info_list ul li {
  line-height: 1.44;
  letter-spacing: 0.05em;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
}
body.top-page .top_special_info_wrap .info_list ul li::before {
  content: "";
  display: inline-block;
  min-width: 1.6875rem;
  height: 1.6875rem;
  background-image: url("../img/icon_alert_red.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
body.top-page .top_special_info_wrap .info_list ul li + li {
  margin-top: 1.25rem;
}
body.top-page .top_special_info_wrap .info_list ul li a {
  color: #333333;
}
body.top-page .top_special_info_wrap.important {
  border-color: #FF4040;
}
body.top-page .top_special_info_wrap.important .title {
  background-color: #FF4040;
}
body.top-page .top_special_info_wrap.important .info_list ul li::before {
  background-image: url("../img/icon_alert_red.png");
}
body.top-page .top_special_info_wrap.covid19 {
  border-color: #FFA040;
}
body.top-page .top_special_info_wrap.covid19 .title {
  background-color: #FFA040;
}
body.top-page .top_special_info_wrap.covid19 .info_list ul li::before {
  background-image: url("../img/icon_alert_orange.png");
}
@media screen and (max-width: 767px) {
  body.top-page .top_special_info_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    background-color: transparent;
    border: none;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 24px;
    width: calc(100% + 10px);
  }
  body.top-page .top_special_info_wrap .title {
    border-top-width: 2px;
    border-top-style: solid;
    width: 45.576%;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    padding: 0.6071rem;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    gap: 0.5rem;
  }
  body.top-page .top_special_info_wrap .title img {
    width: 1.2857rem;
    height: 1.2857rem;
  }
  body.top-page .top_special_info_wrap .title h3 {
    font-size: 1rem;
  }
  body.top-page .top_special_info_wrap .info_list {
    border-width: 2px;
    border-style: solid;
    background-color: #fff;
    padding: 1rem 0.7143rem;
  }
  body.top-page .top_special_info_wrap .info_list ul li {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.5rem;
  }
  body.top-page .top_special_info_wrap .info_list ul li a {
    font-size: 15px;
  }
  body.top-page .top_special_info_wrap.important .title,
  body.top-page .top_special_info_wrap.important .info_list {
    border-color: #FF4040;
  }
  body.top-page .top_special_info_wrap.covid19 .title,
  body.top-page .top_special_info_wrap.covid19 .info_list {
    border-color: #FFA040;
  }
  body.top-page .top_special_info_wrap.covid19 .title br,
  body.top-page .top_special_info_wrap.covid19 .info_list br {
    display: none;
  }
}
body.top-page .top_information_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6rem;
}
body.top-page .top_information_wrap label {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  height: 4.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #666666;
  background-color: #DDDDDD;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}
body.top-page .top_information_wrap label:where(:first-of-type) {
  width: 23.75%;
}
body.top-page .top_information_wrap div.top_news_list {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
  display: none;
  background-color: #fff;
  padding: 1.625rem 2.625rem 3.25rem;
}
body.top-page .top_information_wrap input[type=radio] {
  opacity: 0;
  position: absolute;
}
body.top-page .top_information_wrap input[type=radio]:checked + label {
  color: #ffffff;
  background-color: #007BCC;
}
body.top-page .top_information_wrap input[type=radio]:checked + label::after {
  content: "";
  border-top: #007BCC solid 6px;
  border-left: rgba(0, 123, 204, 0) solid 6px;
  border-right: rgba(0, 123, 204, 0) solid 6px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
body.top-page .top_information_wrap input[type=radio]:checked + label + div.top_news_list {
  display: block;
}
body.top-page .top_information_wrap > a {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
  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;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 500;
  gap: 1em;
  letter-spacing: 0.1em;
  line-height: 1.444;
  text-align: center;
  color: #ffffff;
  background-color: #007BCC;
  text-decoration: none;
  padding: 1rem;
  border: 1px solid #007BCC;
}
body.top-page .top_information_wrap > a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
  background-color: #C8ECFF;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}
body.top-page .top_information_wrap > a span::before {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml;utf8,<?xml version="1.0" encoding="utf-8"?><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 9.8 10.4" style="enable-background:new 0 0 9.8 10.4;" xml:space="preserve"><style type="text/css">.st0{fill:none;stroke:%23007BCC;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;}</style><path class="st0" d="M4.9,9.4l4.2-4.2L4.9,1.1"/><path class="st0" d="M0.8,5.2h8.3"/></svg>');
  background-size: 100%;
  background-repeat: no-repeat;
  width: 0.5rem;
  height: 0.5rem;
}
body.top-page .top_information_wrap > a:is(:hover, :focus, :active) {
  background-color: #C8ECFF;
  color: #007BCC;
}
body.top-page .top_information_wrap > a:is(:hover, :focus, :active) span {
  background-color: #007BCC;
}
body.top-page .top_information_wrap > a:is(:hover, :focus, :active) span::before {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml;utf8,<?xml version="1.0" encoding="utf-8"?><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 9.8 10.4" style="enable-background:new 0 0 9.8 10.4;" xml:space="preserve"><style type="text/css">.st0{fill:none;stroke:%23C8ECFF;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;}</style><path class="st0" d="M4.9,9.4l4.2-4.2L4.9,1.1"/><path class="st0" d="M0.8,5.2h8.3"/></svg>');
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  body.top-page .top_information_wrap {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 2.857rem;
  }
  body.top-page .top_information_wrap label {
    font-size: 0.8571rem;
    width: auto;
    height: 3.083em;
    background-color: #EEEEEE;
    white-space: nowrap;
  }
  body.top-page .top_information_wrap label[for=top_news_tab0] {
    width: 16.79%;
  }
  body.top-page .top_information_wrap label[for=top_news_tab1] {
    width: 25.19%;
  }
  body.top-page .top_information_wrap label[for=top_news_tab2] {
    width: 36.64%;
  }
  body.top-page .top_information_wrap label[for=top_news_tab3] {
    width: 21.38%;
  }
  body.top-page .top_information_wrap label:not(:first-of-type) {
    border-left: 1px solid #DDDDDD;
  }
  body.top-page .top_information_wrap label::after {
    content: none;
  }
  body.top-page .top_information_wrap div.top_news_list {
    padding: 0 0 1.2857rem;
  }
  body.top-page .top_information_wrap div.top_news_list ul.news_list li.headline {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  body.top-page .top_information_wrap input[type=radio]:checked + label::after {
    content: none;
  }
  body.top-page .top_information_wrap > a {
    font-size: 1rem;
  }
  body.top-page .top_information_wrap > a span {
    width: 1.571em;
    height: 1.571em;
  }
}
body.top-page .top_pickup_page {
  max-width: 1230px;
  margin: 0 auto;
  padding-top: 6rem;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 6rem;
}
body.top-page .top_pickup_page hgroup {
  border-left: 5px solid #007BCC;
  padding-left: 1rem;
  margin-bottom: 2.5rem;
}
body.top-page .top_pickup_page hgroup h3 {
  font-size: 1.75rem;
  color: #333333;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
body.top-page .top_pickup_page hgroup p {
  color: #747474;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 0;
}
body.top-page .top_pickup_page ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  gap: 2.5rem 2.75%;
  flex-wrap: wrap;
}
body.top-page .top_pickup_page ul li {
  width: calc((100% - 50px) / 2);
}
body.top-page .top_pickup_page ul li a {
  display: grid;
  grid-template-areas: "img title" "img text";
  grid-template-columns: 120px 1fr;
  grid-template-rows: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #000000;
  gap: 0.625rem 1.5rem;
}
body.top-page .top_pickup_page ul li a div.photo_wrap {
  grid-area: img;
}
body.top-page .top_pickup_page ul li a div.photo_wrap div.photo {
  display: block;
  width: 100%;
  margin: 1px auto 0;
  padding-bottom: 100%;
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
}
body.top-page .top_pickup_page ul li a div.photo_wrap div.photo span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
body.top-page .top_pickup_page ul li a h4 {
  grid-area: title;
  font-size: 1.25rem;
  margin-bottom: 0;
  letter-spacing: 0.1em;
}
body.top-page .top_pickup_page ul li a h4::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "+";
  color: #007BCC;
  margin-right: 0.5rem;
}
body.top-page .top_pickup_page ul li a p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  line-height: 1.5;
  position: relative;
  grid-area: text;
}
body.top-page .top_pickup_page ul li a:is(:hover, :focus, :active) {
  text-decoration: none;
}
body.top-page .top_pickup_page ul li a:is(:hover, :focus, :active) div.photo_wrap div.photo span {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
body.top-page .top_pickup_page ul li.page177 a div.photo_wrap div.photo {
  border: 2px solid #FF8DA0;
}
body.top-page .top_pickup_page ul li.page177 a h4::before {
  color: #FF8DA0;
}
@media screen and (max-width: 767px) {
  body.top-page .top_pickup_page {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 40px;
  }
  body.top-page .top_pickup_page hgroup {
    padding-left: 0.714rem;
    border-left-width: 3px;
    margin-bottom: 1rem;
  }
  body.top-page .top_pickup_page hgroup h3 {
    font-size: 1.2857rem;
  }
  body.top-page .top_pickup_page ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 1rem;
  }
  body.top-page .top_pickup_page ul li {
    width: 100%;
  }
  body.top-page .top_pickup_page ul li a {
    grid-template-columns: max(100px, 26.81%) 1fr;
    gap: 0.625rem 1rem;
  }
  body.top-page .top_pickup_page ul li a h4 {
    font-size: 1.14286rem;
  }
  body.top-page .top_pickup_page ul li a p {
    font-size: 0.8581rem;
  }
}
body.top-page section.extend:has(.top_recruit_wrap) {
  padding: 3.625rem 0 10rem;
}
@media screen and (max-width: 767px) {
  body.top-page section.extend:has(.top_recruit_wrap) {
    padding-top: 1.7857rem;
    padding-bottom: 3.7857rem;
  }
}
body.top-page .container-fluid:has(.top_recruit_wrap) {
  padding-left: 10px;
  padding-right: 10px;
}
body.top-page .top_recruit_wrap h3 {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
  color: #007BCC;
  letter-spacing: 0.15em;
  margin-bottom: 2.875rem;
}
body.top-page .top_recruit_wrap h3 span {
  display: block;
  font-size: 0.625em;
  font-weight: 500;
  color: #747474;
  letter-spacing: 0.15em;
}
body.top-page .top_recruit_wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px 1.25%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body.top-page .top_recruit_wrap ul li {
  width: 32.5%;
}
body.top-page .top_recruit_wrap ul li a {
  display: block;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 700;
  color: #007BCC;
  background-color: #fff;
  border: 2px solid #007BCC;
  line-height: 1.5;
  padding: 1.833em 1em;
  text-align: center;
  position: relative;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}
body.top-page .top_recruit_wrap ul li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
  background-color: #C8ECFF;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
body.top-page .top_recruit_wrap ul li a span::before {
  content: "";
  display: block;
  background-image: url('data:image/svg+xml;utf8,<?xml version="1.0" encoding="utf-8"?><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 9.8 10.4" style="enable-background:new 0 0 9.8 10.4;" xml:space="preserve"><style type="text/css">.st0{fill:none;stroke:%23ffffff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;}</style><path class="st0" d="M4.9,9.4l4.2-4.2L4.9,1.1"/><path class="st0" d="M0.8,5.2h8.3"/></svg>');
  background-size: 100%;
  background-repeat: no-repeat;
  width: 0.5rem;
  height: 0.5rem;
}
body.top-page .top_recruit_wrap ul li a:is(:hover, :focus, :active) {
  background-color: #C8ECFF;
}
body.top-page .top_recruit_wrap ul li a:is(:hover, :focus, :active) span {
  background-color: #007BCC;
}
@media screen and (max-width: 767px) {
  body.top-page .top_recruit_wrap h3 {
    text-align: left;
    font-size: 1.2857rem;
    margin-bottom: 1.357rem;
  }
  body.top-page .top_recruit_wrap h3 span {
    font-size: 1rem;
  }
  body.top-page .top_recruit_wrap ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 0.642rem;
  }
  body.top-page .top_recruit_wrap ul li {
    width: 100%;
  }
  body.top-page .top_recruit_wrap ul li a {
    font-size: 1.142857rem;
    text-align: left;
    padding-top: 1.375em;
    padding-left: 1em;
    padding-bottom: 1.375em;
    border-width: 1px;
  }
  body.top-page .top_recruit_wrap ul li a span {
    width: 1.571em;
    height: 1.571em;
  }
}
body.top-page section.slide_area {
  width: 100%;
  position: relative;
  padding: 0;
}
body.top-page section.slide_area div.slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}
body.top-page section.slide_area div.slider ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  min-width: auto;
  min-height: auto;
  white-space: nowrap;
  -webkit-animation-duration: 35s;
          animation-duration: 35s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  min-width: auto;
  min-height: auto;
}
body.top-page section.slide_area div.slider ul li {
  margin: 0;
  padding: 0;
  display: block;
  width: 480px;
  height: 323px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
body.top-page section.slide_area div.slider.scroll_left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
}
body.top-page section.slide_area div.slider.scroll_left ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-animation-name: infinity-loop-left;
          animation-name: infinity-loop-left;
}
@media screen and (max-width: 767px) {
  body.top-page section.slide_area div.slider ul li {
    width: 105px;
    height: 105px;
  }
}

@-webkit-keyframes infinity-loop-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-loop-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes infinity-loop-right {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes infinity-loop-right {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
/*******************************************************************************************

 お知らせ、インフォメーション

*******************************************************************************************/
/***************************/
/* 一覧表示（TOP・一覧共通） */
/***************************/
ul.news_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.news_list li.headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px dotted #CCCCCC;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  line-height: 2;
  padding: 1.25rem 0;
}
ul.news_list li.headline span.date {
  min-width: 8.75em;
  letter-spacing: 0.1em;
  margin-right: 1rem;
}
ul.news_list li.headline span.cat {
  font-size: 0.75rem;
  min-width: 8.75rem;
  text-align: center;
  color: #fff;
  background-color: #666;
  border-radius: 3px;
  margin-right: 1.5rem;
}
ul.news_list li.headline span.new {
  display: inline-block;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 500;
  background-color: #ff7272;
  margin-right: 0.75rem;
  padding: 0 0.5rem;
  white-space: nowrap;
}
ul.news_list li.headline a.title {
  letter-spacing: 0.1em;
  color: #333333;
  line-height: 1.4;
}
ul.news_list li.headline p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
ul.news_list:has(+ nav) {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  ul.news_list li.headline {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.news_list li.headline span.date {
    font-size: 0.8571rem;
    width: 8em;
    min-width: unset;
    margin-right: 1.416em;
    letter-spacing: 0;
  }
  ul.news_list li.headline span.cat {
    font-size: 0.7143rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: unset;
    padding-left: 1.2em;
    padding-right: 1.2em;
  }
  ul.news_list li.headline a.title {
    width: 100%;
    margin-top: 0.4286em;
  }
  ul.news_list li.headline p {
    width: 100%;
    margin-top: 0.4286em;
  }
  ul.news_list li.headline p span.new {
    display: none;
  }
}

nav ul.pagination li.page-item .page-link {
  color: #aeaeae;
  font-size: 1.125rem;
  font-weight: 400;
  background-color: transparent;
  border: none;
}
nav ul.pagination li.page-item.active .page-link {
  color: #007BCC;
}
nav ul.pagination li.page-item:first-of-type, nav ul.pagination li.page-item:last-of-type {
  background-color: #fafafa;
  border: 2px solid #ececec;
  border-radius: 10px;
}
nav ul.pagination li.page-item:first-of-type .page-link, nav ul.pagination li.page-item:last-of-type .page-link {
  color: #007BCC;
}
nav ul.pagination li.page-item:first-of-type {
  margin-right: 2.125rem;
}
nav ul.pagination li.page-item:last-of-type {
  margin-left: 2.125rem;
}

/**************/
/* 一覧ページ */
/**************/
.page-item .page-link {
  color: #007BCC;
}
.page-item.active .page-link {
  background-color: #007BCC;
  border-color: #007BCC;
}
.page-item a.page-link[href="list.php?page="] {
  cursor: auto;
  pointer-events: none;
  color: #151515;
  background-color: #dddddd;
}

/*********/
/*詳細画面*/
/********/
body.news-page div.content em.content-title {
  display: block;
  border-bottom: 3px solid #007BCC;
  font-style: normal;
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
body.news-page div.content p.content-data {
  border-top: 1px solid #007BCC;
  border-bottom: 1px solid #007BCC;
  text-align: right;
  padding: 0.5rem 0;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  body.news-page div.content em.content-title {
    font-size: 1.3rem;
  }
}
body.news-page dl.headline {
  color: #151515;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding: 2rem 1.34375rem;
  margin-bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.news-page dl.headline dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.90625rem;
  font-family: "Roboto", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  white-space: nowrap;
  margin-bottom: 0.5625rem;
}
body.news-page dl.headline dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
body.news-page dl.headline dd span.new {
  display: inline-block;
  font-size: 0.75rem;
  color: #fff;
  background-color: #FF7272;
  margin-right: 0.5rem;
  padding: 0 0.75rem;
}
body.news-page dl.headline dd a {
  color: #333;
  font-size: 1.125rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  body.news-page dl.headline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 1rem;
  }
  body.news-page dl.headline dt {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
  body.news-page dl.headline dd {
    width: 100%;
    margin-left: 0;
  }
  body.news-page dl.headline dd a {
    font-size: 1rem;
  }
}
body.news-page li.headline > span.new {
  display: none;
}
@media screen and (max-width: 767px) {
  body.news-page li.headline > span.new {
    display: inline-block;
  }
  body.news-page li.headline a.title {
    margin: 0;
  }
}

.category-list .category {
  display: inline-block;
  color: #007BCC !important;
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.625rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: 1px solid #007BCC !important;
  padding: 0 7px;
}
.category-list .category + .category {
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .category-list .category {
    font-size: 0.75rem;
    padding: 0 6px;
  }
}

/*******************************************************************************************

 メールフォーム

*******************************************************************************************/
body.form-page .custom-form {
  margin-top: -4.25rem;
  padding-top: 8.5rem;
}
body.form-page p.form_lead {
  margin-bottom: 3.25rem;
  letter-spacing: 0.092em;
}
body.form-page section.contactform_wrap div.tel-number,
body.form-page section.contactform_wrap div.fax-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: 1px solid #CCCCCC;
  padding-top: 3rem;
  padding-bottom: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body.form-page section.contactform_wrap div.tel-number h4,
body.form-page section.contactform_wrap div.fax-number h4 {
  font-size: 1.25rem;
  width: 100%;
  margin-bottom: 0;
}
body.form-page section.contactform_wrap div.tel-number p,
body.form-page section.contactform_wrap div.fax-number p {
  margin-bottom: 0;
}
body.form-page section.contactform_wrap div.tel-number p.type,
body.form-page section.contactform_wrap div.fax-number p.type {
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 2px solid #000000;
  margin-right: 1em;
  letter-spacing: 0.092em;
}
body.form-page section.contactform_wrap div.tel-number p.number,
body.form-page section.contactform_wrap div.fax-number p.number {
  font-size: 2.5rem;
  font-weight: 500;
  margin-right: 2rem;
  letter-spacing: 0.092em;
}
body.form-page section.contactform_wrap div.tel-number p.supplementary,
body.form-page section.contactform_wrap div.fax-number p.supplementary {
  font-size: 1rem;
  letter-spacing: 0.092em;
}
@media screen and (max-width: 767px) {
  body.form-page section.contactform_wrap div.tel-number,
  body.form-page section.contactform_wrap div.fax-number {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  body.form-page section.contactform_wrap div.tel-number p.number,
  body.form-page section.contactform_wrap div.fax-number p.number {
    white-space: nowrap;
    font-size: 2rem;
  }
  body.form-page section.contactform_wrap div.tel-number p.supplementary,
  body.form-page section.contactform_wrap div.fax-number p.supplementary {
    width: 100%;
  }
}

section.input_wrap {
  width: 100%;
}
section.input_wrap .input_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
section.input_wrap .input_group:first-of-type {
  border-top: 1px solid #CCCCCC;
}
section.input_wrap .input_group .input_label {
  display: block;
  width: 13em;
  font-size: 1.125rem;
  margin: 0;
  padding: 0;
}
section.input_wrap .input_group .input_label span.required {
  font-size: 1rem;
  color: #FF6A06;
  margin-left: 1em;
}
section.input_wrap .input_group .input_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
section.input_wrap .input_group .input_content.name_set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
section.input_wrap .input_group .input_content.name_set div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
section.input_wrap .input_group .input_content.name_set div:first-of-type {
  padding-right: 1rem;
}
section.input_wrap .input_group .input_content.name_set div:last-of-type {
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  section.input_wrap .input_group .input_content.name_set div:first-of-type {
    padding-right: 0.5rem;
  }
  section.input_wrap .input_group .input_content.name_set div:last-of-type {
    padding-left: 0.5rem;
  }
}
section.input_wrap .input_group .input_content.address_set {
  width: 100%;
}
section.input_wrap .input_group .input_content.address_set div:first-of-type {
  margin-bottom: 1rem;
}
section.input_wrap .input_group .input_content .schedule_set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.input_wrap .input_group .input_content .schedule_set input[name*=date],
section.input_wrap .input_group .input_content .schedule_set input[type=date] {
  width: 9rem;
}
section.input_wrap .input_group .input_content .schedule_set input[name*=time],
section.input_wrap .input_group .input_content .schedule_set input[type=time] {
  width: 7rem;
}
@media screen and (max-width: 575px) {
  section.input_wrap .input_group .input_content .schedule_set {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  section.input_wrap .input_group .input_content .schedule_set span {
    display: block;
    width: calc(100% - 17rem);
  }
  section.input_wrap .input_group .input_content .schedule_set span ~ input[type=date] {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  section.input_wrap .input_group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  section.input_wrap .input_group .input_label {
    width: auto;
    margin-bottom: 1rem;
  }
}
section.input_wrap .input_group.has-error .input_item {
  border-color: #ff5757;
}
section.input_wrap .input_group.has-error span.error_message {
  font-size: 1rem;
  color: #ff5757;
  display: inline-block;
  font-weight: 600;
  margin-top: 0.5em;
}

.submit_area {
  text-align: center;
  margin-top: 4.125rem;
}
.submit_area p {
  width: 100%;
  margin-bottom: 2.625rem;
}
.submit_area .button_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.submit_area .button_wrap .original-btn {
  min-width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.submit_area button + button {
  margin-top: 1rem;
}

.input_item {
  display: block;
  width: 100%;
  height: 3.5em;
  padding: 1em 0.75rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3e3e3e;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #999999;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  outline: none;
}
.input_item::-webkit-input-placeholder {
  color: #AAAAAA;
}
.input_item::-moz-placeholder {
  color: #AAAAAA;
}
.input_item:-ms-input-placeholder {
  color: #AAAAAA;
}
.input_item::-ms-input-placeholder {
  color: #AAAAAA;
}
.input_item::placeholder {
  color: #AAAAAA;
}
.input_item.inline_parts {
  display: inline-block;
  width: auto;
}
@media screen and (max-width: 767px) {
  .input_item {
    height: 2.5em;
    padding: 0.5em;
  }
}
.input_item:active, .input_item:focus {
  border-color: #333333;
  background-color: #fffad7;
}

textarea.input_item {
  height: auto;
}

/*** ラジオボタン ****/
input.input_item[type=radio] {
  display: none;
  border: 0;
  margin: 0;
}
input.input_item[type=radio] + label {
  display: block;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
input.input_item[type=radio] + label:empty {
  min-height: 1em;
}
input.input_item[type=radio] + label:last-of-type {
  margin-bottom: 0;
}
input.input_item[type=radio] + label:before, input.input_item[type=radio] + label:after {
  content: "";
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
input.input_item[type=radio] + label:before {
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  border: 2px solid #999;
  background-color: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
input.input_item[type=radio] + label:after {
  top: 50%;
  left: 0.25em;
  width: 0.5em;
  height: 0.5em;
  background-color: transparent;
  -webkit-transform: scale(0) translateY(-50%);
          transform: scale(0) translateY(-50%);
}
input.input_item[type=radio]:checked + label:after {
  background-color: #007BCC;
  -webkit-transform: scale(1) translateY(-50%);
          transform: scale(1) translateY(-50%);
}

input.input_item[type=checkbox] {
  display: none;
  margin: 0;
}
input.input_item[type=checkbox] + label {
  position: relative;
  padding: 10px 0px 10px 35px;
  line-height: 1.4;
  margin-bottom: 0;
}
input.input_item[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background-color: white;
  border: 2px solid #c2ced2;
}
input.input_item[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  left: 13px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #007BCC;
  border-bottom: 3px solid #007BCC;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

section.reserve_form {
  max-width: 800px;
  margin: 0 auto;
}

/*******************************************************************************************

 各種タブ

*******************************************************************************************/
/************************************
サイトマップテーブル
************************************/
table.sitemap-table {
  width: 100%;
}
table.sitemap-table th,
table.sitemap-table td {
  line-height: 1.2;
  border-top: none;
  border-bottom: 1px solid #cccccc;
  padding: 20px;
}
table.sitemap-table th {
  font-size: 1rem;
  width: 50px;
  white-space: nowrap;
  font-weight: normal;
}
table.sitemap-table a {
  color: #212529;
  text-decoration: none;
}
table.sitemap-table a:hover, table.sitemap-table a:active, table.sitemap-table a:focus {
  text-decoration: underline;
}
table.sitemap-table td {
  font-size: 1rem;
  font-weight: normal;
}
table.sitemap-table td p {
  margin-bottom: 0;
}
table.sitemap-table td p + p {
  margin-top: 1em;
}
table.sitemap-table td p a {
  display: inline-block;
  position: relative;
  padding-left: 10px;
}
table.sitemap-table td p a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  position: absolute;
  top: 0;
  left: 0;
  color: #007BCC;
}
@media screen and (max-width: 767px) {
  table.sitemap-table {
    display: block;
  }
  table.sitemap-table tbody, table.sitemap-table tr, table.sitemap-table th, table.sitemap-table td {
    display: block;
  }
  table.sitemap-table th {
    width: auto;
    white-space: normal;
    border-bottom: none;
    padding: 15px 10px;
  }
  table.sitemap-table td {
    padding: 0 20px;
    margin: 10px;
  }
}

.anker {
  margin-top: -10rem;
  padding-top: 10rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .anker {
    margin-top: -4rem;
    padding-top: 4rem;
  }
}

.cookie_content {
  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;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 0.75rem;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1.2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  visibility: hidden;
  z-index: 999;
}
.cookie_content.is_show {
  visibility: visible;
}
.cookie_content .cookie_text {
  color: #fff;
}
.cookie_content .cookie_text a {
  color: dodgerblue;
}
.cookie_content .cookie_agree {
  color: #fff;
  background-color: dodgerblue;
  padding: 0.5em 1.5em;
}
.cookie_content .cookie_agree:hover {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .cookie_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie_content .cookie_text {
    margin-bottom: 1em;
  }
}

.cc_hide {
  display: none;
}

@-webkit-keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.list_childrenpage ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.875rem 3.75rem;
}
.list_childrenpage ul li {
  display: block;
  width: calc((100% - 3.75rem) / 2);
}
.list_childrenpage ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100px;
  padding: 2rem 2.5rem;
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.4285;
  color: #007BCC;
  background-color: #ffffff;
  border: 1px solid #CCC;
  text-decoration: none;
  position: relative;
}
.list_childrenpage ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 1.5rem;
  height: 3px;
  background-color: #C8ECFF;
}
.list_childrenpage ul li a::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../img/icon_list_chirldrenpage.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.list_childrenpage ul li a:is(:hover, :focus) {
  background-color: #E2F5FF;
  border-color: #007BCC;
}
.list_childrenpage ul li a:is(:hover, :focus)::before {
  background-color: #007BCC;
}
.list_childrenpage ul li.page177 a {
  color: #FF8DA0;
}
.list_childrenpage ul li.page177 a::before {
  background-color: #ffc7d0;
}
.list_childrenpage ul li.page177 a::after {
  background-image: url("../img/icon_list_kangobuTokusetsu.png");
}
.list_childrenpage ul li.page177 a:is(:hover, :focus) {
  background-color: #FFF0F3;
  border-color: #FF8DA0;
}
.list_childrenpage ul li.page177 a:is(:hover, :focus)::before {
  background-color: #FF8DA0;
}
@media screen and (max-width: 767px) {
  .list_childrenpage ul {
    gap: 0.7142857rem;
  }
  .list_childrenpage ul li {
    width: 100%;
  }
  .list_childrenpage ul li a {
    font-size: 1.142857rem;
    height: 60px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding-top: 0.5625em;
    padding-left: 1.25rem;
    padding-right: 2.75rem;
    padding-bottom: 0.5625em;
  }
  .list_childrenpage ul li a::before {
    width: 0.625em;
  }
  .list_childrenpage ul li a::after {
    right: 10px;
  }
}

.about_aside_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 6.5rem;
}
.about_aside_box > div {
  width: 47.5%;
  background-color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.about_aside_box > div h3 {
  background-color: #007BCC;
  color: #ffffff;
  padding: 1rem;
  text-align: center;
  font-size: 1.375rem;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.about_aside_box > div div.inner {
  width: 87.71%;
  padding: 1.875rem 0;
  margin: 0 auto;
}
.about_aside_box > div div.inner h4 {
  font-size: 1.25rem;
  border-bottom: 1px solid #007BCC;
  text-align: center;
  font-weight: 700;
  padding-bottom: 0.5em;
  margin-bottom: 1.25rem;
}
.about_aside_box > div div.inner a.original-btn {
  display: block;
  max-width: 280px;
  margin: 0 auto;
  position: relative;
}
.about_aside_box > div div.inner a.original-btn::after {
  content: "";
  background-color: #fff;
  display: inline-block;
  height: 0.625rem;
  width: 0.625rem;
  -webkit-mask: url("../img/icon_white_arrow.svg");
          mask: url("../img/icon_white_arrow.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 1.5625em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.about_aside_box > div div.inner a.original-btn:is(:hover, :focus, :active)::after {
  background-color: #007BCC;
}
.about_aside_box > div.map_box .gmap-box {
  padding-bottom: 100%;
}
.about_aside_box > div.map_box p {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4444;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
  margin-bottom: 1.875rem;
}
.about_aside_box > div.open_box p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
.about_aside_box > div.open_box p.time {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  background-color: #C8ECFF;
  margin-bottom: 1.5rem;
}
.about_aside_box > div.open_box p.time span {
  font-size: 1.5625em;
}
.about_aside_box > div.open_box p.reserve {
  font-weight: 700;
}
.about_aside_box > div.open_box p.reserve span {
  font-size: 1.125rem;
  color: #FF4040;
}
.about_aside_box > div.open_box p.holiday {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 3.25rem;
}
.about_aside_box > div.open_box p.holiday span.blue {
  color: #007BCC;
}
.about_aside_box > div.open_box p.holiday span.red {
  color: #FF4040;
}
.about_aside_box > div.open_box p:has(+ h4) {
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 767px) {
  .about_aside_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 1.5rem;
  }
  .about_aside_box > div {
    width: 100%;
  }
}

.intyo_aisatsu p {
  font-size: 1.75rem;
  line-height: 5rem;
  letter-spacing: 0.1em;
}
.intyo_aisatsu p span {
  font-size: 1.21428em;
}

@media screen and (min-width: 768px) {
  .intyo_aisatsu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-weight: 300;
  }
}
section.extend.extension_allblue {
  margin-top: -3rem;
  padding-top: 5rem;
  margin-bottom: -3rem;
  padding-bottom: 5rem;
}

.statistics_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.statistics_wrap span.photo-area {
  text-align: center;
}
.statistics_wrap span.photo-area img {
  width: auto;
}
.statistics_wrap p {
  width: 70%;
}
.statistics_wrap p strong {
  color: #007BCC;
}
.statistics_wrap a.original-btn {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .statistics_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
  .statistics_wrap span.photo-area {
    margin-bottom: 1rem !important;
  }
  .statistics_wrap p {
    width: 100%;
    text-align: center;
  }
  .statistics_wrap p > span {
    display: block;
    text-align: left;
  }
  .statistics_wrap a.original-btn {
    margin-top: 0;
  }
  .statistics_wrap a.original-btn + br + a.original-btn {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 767px) {
  main:has(.statistics_wrap) .text-only.text-right {
    text-align: left !important;
  }
}

.table-on#shoukaki_ishi tr td:nth-of-type(2), .table-on#shoukaki_ishi tr td:nth-of-type(3) {
  white-space: nowrap;
}
.table-on#nicu_nyuuin tr th, .table-on#nicu_nyuuin tr td {
  padding: 0.875em;
}
.table-on#nicu_nyuuin tr th {
  font-size: 0.875rem;
}
.table-on#nicu_nyuuin tr td {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .table-on#nicu_nyuuin tr th, .table-on#nicu_nyuuin tr td {
    min-width: 5em;
  }
}
@media screen and (max-width: 767px) {
  .table-on.certified_person tr th:last-of-type, .table-on.certified_person tr td:last-of-type {
    min-width: 5em;
  }
}

.rinshoTop {
  background: url("../files/images/photo00000327.jpg") no-repeat left top;
  height: 408px;
  background-size: cover;
  position: relative;
  margin-bottom: 30px;
}
.rinshoTop h3 {
  margin-bottom: 0;
}
.rinshoTop h3 img {
  width: 272px;
}
.rinshoTop ul.menu li {
  list-style: none;
  position: absolute;
}
.rinshoTop ul.menu li a img {
  width: 135px;
}
.rinshoTop ul.menu li.menu01 {
  top: 0;
  left: 50.125%;
}
.rinshoTop ul.menu li.menu02 {
  top: 0;
  left: auto;
  right: 0;
}
.rinshoTop ul.menu li.menu04 {
  top: auto;
  bottom: 0;
  left: 33.5%;
}
.rinshoTop ul.menu li.menu05 {
  top: 50.5%;
  left: 67%;
}
.rinshoTop ul.menu li.menu05 a img {
  border: 0;
}
.rinshoTop ul.menu li:hover {
  opacity: 0.6;
}
.rinshoTop > a {
  position: absolute;
  top: 50%;
}
.rinshoTop > a img {
  width: 135px;
  margin-top: 2px;
}
.rinshoTop > a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .rinshoTop {
    background: none;
    height: auto;
  }
  .rinshoTop h3 {
    text-align: center;
    margin-bottom: 1rem;
  }
  .rinshoTop h3 img {
    width: 50%;
  }
  .rinshoTop ul.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    padding: 0;
  }
  .rinshoTop ul.menu li {
    position: static;
    width: 33.3333333333%;
    text-align: center;
  }
  .rinshoTop ul.menu li a img {
    width: 75%;
  }
  .rinshoTop > a {
    top: auto;
    bottom: 0;
    width: calc(33.3333333333% - 6.66px);
    text-align: center;
  }
  .rinshoTop > a img {
    width: 75%;
    margin: 0;
  }
}
@media screen and (max-width: 575px) {
  .rinshoTop h3 img {
    width: 60%;
  }
  .rinshoTop ul.menu li a img {
    width: 100%;
  }
  .rinshoTop > a {
    width: calc(33.3333333333% - 6.66px);
  }
  .rinshoTop > a img {
    width: 100%;
  }
}

video {
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 767px) {
  video {
    height: 100%;
  }
}

.container-fluid .gsc-control-cse,
.container-fluid .gsc-control-cse .gsc-table-result {
  font-size: 1rem;
}
.container-fluid .gsc-control-cse .gs-spelling,
.container-fluid .gsc-control-cse .gs-result .gs-title,
.container-fluid .gsc-control-cse .gs-result .gs-title * {
  font-size: 1.25rem;
}/*# sourceMappingURL=style.css.map */