@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 {
  scroll-behavior: smooth;
}

html, body {
  font-family: "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  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;
  }
}

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

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

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

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

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

 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;
  }
}
header.global_header nav.global_nav {
  height: 125px;
  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: #fff;
}
header.global_header nav.global_nav h1.lead_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  margin: 0;
  margin-left: 1.9375rem;
}
header.global_header nav.global_nav h1.lead_area span {
  color: #333;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
header.global_header nav.global_nav h1.lead_area a {
  width: 273px;
}
header.global_header nav.global_nav h1.lead_area a img {
  max-width: 100%;
  width: 100%;
}
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;
  padding-right: 4.3125rem;
}
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;
  gap: 3.625rem;
  width: 100%;
  list-style: none;
  text-align: right;
  margin: 0;
  padding: 0;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu {
  position: relative;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu a {
  position: relative;
  display: block;
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.238em;
  text-decoration: none;
}
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%;
  left: 0;
  padding-top: 0;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  text-align: left;
  background-color: #fff;
  padding: 1.25rem;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner a {
  display: inline-block;
  font-size: 1rem;
  white-space: nowrap;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner a + a {
  margin-top: 0.5rem;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner a span {
  position: relative;
  padding-bottom: 2px;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner a span::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 .sub_menu div.inner a:hover span::after {
  width: 100%;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner a::after {
  content: none;
}
header.global_header nav.global_nav a.contact_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: 300px;
  color: #fff;
  font-size: 1.125rem;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border: 1px solid #000;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
header.global_header nav.global_nav a.contact_btn img {
  width: 40px;
}
header.global_header nav.global_nav a.contact_btn span {
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-top: 0.15rem;
}
header.global_header nav.global_nav a.contact_btn span.sp_en {
  display: none;
}
header.global_header nav.global_nav a.contact_btn:hover, header.global_header nav.global_nav a.contact_btn:active, header.global_header nav.global_nav a.contact_btn:focus {
  background-color: gray;
}
header.global_header nav.global_nav label.modal_toggle_btn {
  position: relative;
  display: none;
  width: 63px;
  line-height: 1;
  background-color: #000;
  border-left: 0.5px solid #fff;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  cursor: pointer;
  margin: 0;
  margin-left: 0.5px;
  padding: 0.75rem;
  padding-top: 1.4rem;
}
header.global_header nav.global_nav label.modal_toggle_btn span {
  position: absolute;
  left: 50%;
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header.global_header nav.global_nav label.modal_toggle_btn span:first-of-type {
  top: calc(50% - 9px);
}
header.global_header nav.global_nav label.modal_toggle_btn span:last-of-type {
  top: calc(50% - 3px);
}
header.global_header nav.global_nav label.modal_toggle_btn span:last-of-type::after {
  content: "MENU";
  position: absolute;
  top: calc(50% + 11px);
  left: 50%;
  color: #fff;
  font-family: "Roboto", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-transform: uppercase;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
header.global_header nav.global_nav label.modal_toggle_btn.active span:first-of-type, header.global_header nav.global_nav label.modal_toggle_btn.active span:last-of-type {
  top: calc(50% - 5px);
}
header.global_header nav.global_nav label.modal_toggle_btn.active span:first-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(-20deg);
          transform: translate(-50%, -50%) rotate(-20deg);
}
header.global_header nav.global_nav label.modal_toggle_btn.active span:last-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(20deg);
          transform: translate(-50%, -50%) rotate(20deg);
}
header.global_header nav.global_nav label.modal_toggle_btn.active span:last-of-type::after {
  content: "CLOSE";
  top: calc(50% + 13px);
  left: 4px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
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: gray;
}
@media (max-width: 1600px) {
  header.global_header nav.global_nav h1.lead_area {
    margin-left: 1rem;
  }
  header.global_header nav.global_nav div.global_menu {
    padding-right: 2.5rem;
  }
  header.global_header nav.global_nav div.global_menu ul {
    gap: 2rem;
  }
  header.global_header nav.global_nav div.global_menu ul li.main_menu a {
    font-size: 1rem;
  }
  header.global_header nav.global_nav a.contact_btn {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav {
    height: 55px;
  }
  header.global_header nav.global_nav h1.lead_area {
    margin-left: 14px;
  }
  header.global_header nav.global_nav h1.lead_area span {
    display: none;
  }
  header.global_header nav.global_nav h1.lead_area a {
    width: 187px;
    margin-bottom: 6px;
  }
  header.global_header nav.global_nav div.global_menu {
    display: none;
  }
  header.global_header nav.global_nav a.contact_btn {
    width: 63px;
    font-size: 9px;
    line-height: 1;
    margin-left: auto;
    padding: 14px 8px 8px;
  }
  header.global_header nav.global_nav a.contact_btn img {
    width: 20px;
  }
  header.global_header nav.global_nav a.contact_btn span {
    white-space: nowrap;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  header.global_header nav.global_nav a.contact_btn span.pc_jp {
    display: none;
  }
  header.global_header nav.global_nav a.contact_btn span.sp_en {
    display: block;
  }
  header.global_header nav.global_nav label.modal_toggle_btn {
    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;
    z-index: 99999;
  }
}

/******************/
input#modal_menu_flg {
  display: none;
}

div.modal_menu {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  overflow-y: scroll;
  pointer-events: none;
  z-index: 99998;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  padding: 30px;
}
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;
  border-bottom: 1px solid #999;
  padding: 0.625rem;
}
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: #999;
  color: #fff;
}
div.modal_menu div.global_menu ul li div a {
  border-bottom: 1px solid #ccc;
  padding-left: 2rem;
}
div.modal_menu label {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 3rem;
  height: 3rem;
  line-height: 1;
  background-color: #c0c0c0;
  border: none;
  cursor: pointer;
  margin: 0;
  padding: 0.75rem;
}
div.modal_menu label span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 75%;
  height: 4px;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
div.modal_menu label span:first-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
div.modal_menu label span:last-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(315deg);
          transform: translate(-50%, -50%) rotate(315deg);
}

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

 FOOTER

*******************************************************************************************/
div.global_footer {
  position: relative;
  z-index: 1;
}
div.global_footer footer {
  position: relative;
  color: #b8b8b8;
  background-color: #070808;
  padding: 3.125rem 0 2.78125rem;
}
div.global_footer footer div.footer_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
div.global_footer footer div.footer_contents .footer_left {
  display: grid;
  gap: 0.75rem 2.4375rem;
  border-right: 1px solid #b8b8b8;
  padding-right: 3.65625rem;
  grid-template-columns: 293px 1fr;
  grid-template-rows: auto auto;
}
div.global_footer footer div.footer_contents .footer_left .logo {
  width: 293px;
  grid-column: 1/2;
  grid-row: 1/2;
}
div.global_footer footer div.footer_contents .footer_left .logo img {
  max-width: 100%;
}
div.global_footer footer div.footer_contents .footer_left .company {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  padding: 0;
  grid-column: 2/3;
  grid-row: 1/3;
}
div.global_footer footer div.footer_contents .footer_left .company li {
  list-style: none;
  letter-spacing: 0.05em;
}
div.global_footer footer div.footer_contents .footer_left .sns_list {
  grid-column: 1/2;
  grid-row: 2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 2rem;
  line-height: 1;
}
div.global_footer footer div.footer_contents .footer_left .sns_list a {
  color: #ffffff;
}
div.global_footer footer div.footer_contents .footer_left .sns_list a:is(:hover, :focus, :active) {
  opacity: 0.75;
}
div.global_footer footer div.footer_contents .footer_right {
  padding-left: 3.96875rem;
}
div.global_footer footer div.footer_contents .footer_right em, div.global_footer footer div.footer_contents .footer_right a, div.global_footer footer div.footer_contents .footer_right small {
  display: block;
  font-weight: 500;
}
div.global_footer footer div.footer_contents .footer_right em {
  font-size: 0.9375rem;
  font-style: normal;
}
div.global_footer footer div.footer_contents .footer_right a {
  color: #fff;
  font-family: "Roboto", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 2.3125rem;
  line-height: 1.32;
  letter-spacing: 0.037em;
  text-decoration: none;
}
div.global_footer footer div.footer_contents .footer_right small {
  font-size: 0.8125rem;
  margin-top: -0.5rem;
}
div.global_footer .copyright {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.111em;
  text-align: center;
  background-color: #242424;
  padding: 1.625rem 0;
}
@media screen and (max-width: 767px) {
  div.global_footer footer div.footer_contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  div.global_footer footer div.footer_contents .footer_left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #b8b8b8;
    border-right: none;
    padding-bottom: 1.5rem;
    padding-right: 0;
  }
  div.global_footer footer div.footer_contents .footer_left .logo {
    width: 250px;
  }
  div.global_footer footer div.footer_contents .footer_right {
    padding-top: 1.5rem;
    padding-left: 0;
  }
  div.global_footer footer div.footer_contents .footer_right small {
    margin-top: 0;
  }
}

section.footer_contact {
  position: relative;
  background-image: url("../files/images/photo00000058.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
section.footer_contact::before, section.footer_contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.footer_contact::before {
  background-color: rgba(0, 0, 0, 0.73);
}
section.footer_contact::after {
  opacity: 0.67;
  background-image: url("../img/material_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
section.footer_contact a {
  text-decoration: none;
}
section.footer_contact a .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  z-index: 1;
  padding: 8.4375rem 15px 10rem;
}
section.footer_contact a .inner .top_title, section.footer_contact a .inner p {
  color: #fff;
  text-align: center;
}
section.footer_contact a .inner .top_title {
  font-size: 3.75rem;
  letter-spacing: 0.025em;
}
section.footer_contact a .inner .top_title span {
  color: #fff;
  font-size: 1rem;
}
section.footer_contact a .inner p {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.0625rem;
}
section.footer_contact a .inner .arrow_link {
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
section.footer_contact:hover::after {
  opacity: 0.26;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
section.footer_contact:hover a .inner .arrow_link {
  background-color: #0d397f;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media screen and (max-width: 767px) {
  section.footer_contact a .inner {
    gap: 1.5rem;
    padding: 3.6rem 15px 3.8rem;
  }
  section.footer_contact a .inner .top_title {
    font-size: 2rem;
    margin-bottom: 0;
  }
  section.footer_contact a .inner .top_title span {
    font-size: 1rem;
  }
  section.footer_contact a .inner p {
    max-width: 70%;
    font-size: 0.85rem;
    text-align: left;
  }
}

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

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

 MAIN

*******************************************************************************************/
body:not(.top-page) main {
  padding-bottom: 3rem;
}
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;
  gap: 2.375rem;
  overflow: hidden;
}
main .rowwrap .primary {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
main .rowwrap .secondary {
  width: 28.6667%;
}
main .rowwrap:has(.secondary) .primary {
  max-width: 65%;
}
@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%;
  }
  main .rowwrap:has(.secondary) .primary {
    max-width: 100%;
  }
}

/*****************/
/* ページタイトル */
/****************/
main div.page-head {
  position: relative;
  height: 365px;
  background-color: #000;
  padding: 0 15px;
}
main div.page-head::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
main div.page-head span.head_bg {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 80%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
main div.page-head span.head_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/mainvisual_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
main div.page-head div.page-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  z-index: 1;
}
main div.page-head div.page-title > h2 {
  margin: 0;
}
main div.page-head div.page-title span {
  display: block;
  color: #fff;
}
main div.page-head div.page-title span.jp {
  font-size: 2.3125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.5rem;
}
main div.page-head div.page-title span.en {
  font-family: "Roboto", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  main div.page-head {
    height: 120px;
    margin-bottom: 2rem;
  }
  main div.page-head div.page-title span.jp {
    font-size: 1.5rem;
  }
  main div.page-head div.page-title span.en {
    font-size: 1rem;
    line-height: 1.2;
  }
}

/***************+*/
/* ぱんくずリスト */
/****************/
nav.breadcrumb-filud {
  margin-bottom: 4.875rem;
  background-color: #f4f4f4;
}
nav.breadcrumb-filud ol.breadcrumb {
  max-width: 1230px;
  font-size: 0;
  background-color: transparent;
  margin: 0 auto;
  padding: 0.8125rem 15px;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item {
  font-size: 0.75rem;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item a {
  color: #777;
  font-family: "游ゴシック", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item + .breadcrumb-item::before {
  content: "　>　";
  padding-right: 0.25rem;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item.active {
  color: #777;
}
@media screen and (max-width: 767px) {
  nav.breadcrumb-filud {
    display: none;
    margin-bottom: 3.125rem;
  }
  nav.breadcrumb-filud ol.breadcrumb {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.625rem 5%;
  }
  nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item {
    display: inline;
    font-size: 0.625rem;
  }
}

/****************/
/* サイドメニュー */
/***************/
aside.secondary nav.sidebar-menu {
  margin-bottom: 2rem;
  /* メニュー本体 */
}
aside.secondary nav.sidebar-menu > h3 {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  background-color: #000;
  margin: 0 auto;
  padding: 1rem 0;
}
aside.secondary nav.sidebar-menu > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
aside.secondary nav.sidebar-menu > ul > li {
  border: 10px solid #f4f4f4;
  border-bottom: none;
  line-height: 1.2;
}
aside.secondary nav.sidebar-menu > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  text-decoration: none;
  padding: 2rem 1.75rem;
}
aside.secondary nav.sidebar-menu > ul > li > a span {
  color: #333;
  font-family: "游ゴシック", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
aside.secondary nav.sidebar-menu > ul > li > a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #901118;
}
aside.secondary nav.sidebar-menu > ul > li:hover > a, aside.secondary nav.sidebar-menu > ul > li:active > a, aside.secondary nav.sidebar-menu > ul > li.active > a {
  text-decoration: none;
  background-color: #eee;
}
aside.secondary nav.sidebar-menu > ul > li:last-of-type {
  border-bottom: 10px solid #f4f4f4;
}
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) {
  aside.secondary nav.sidebar-menu {
    margin-bottom: 0;
  }
  aside.secondary nav.sidebar-menu > ul > li > a {
    padding: 1.25rem 1.5rem;
  }
  aside.secondary nav.sidebar-menu > ul > li > a span {
    font-size: 1rem;
  }
}

@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 {
  position: relative;
  color: #000;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1.3rem;
  padding-left: 1.4375rem;
}
.lv1::before, .lv1::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 50%;
  left: 0;
}
.lv1::before {
  top: 0;
  background-color: #000;
}
.lv1::after {
  bottom: 0;
  background-color: #b8b8b8;
}
@media screen and (max-width: 767px) {
  .lv1 {
    font-size: 1.2857rem;
    padding-left: 1rem;
  }
}

.lv2 {
  color: #fff;
  font-family: "游ゴシック", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  background: linear-gradient(45deg, #585858 15%, #818181 15%);
  margin-bottom: 1.3rem;
  padding: 10px 0;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .lv2 {
    font-size: 1.25rem;
    padding: 0.5rem 0.7857rem;
  }
}

.lv3 {
  color: #000;
  font-size: 1.5625rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
  .lv3 {
    font-size: 1.2rem;
  }
}

.lv4 {
  color: #444;
  font-size: 1.5625rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
  .lv4 {
    font-size: 1.2857rem;
  }
}

/*************/
/*テキストのみ*/
/************/
.text-only {
  margin-bottom: 1rem;
}
.text-only p {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .text-only p {
    font-size: 0.85714rem;
  }
}

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

/*****************/
/* 写真＋テキスト */
/****************/
.photo-and-text {
  margin-bottom: 1.3rem;
}
.photo-and-text:after {
  content: "";
  clear: both;
  display: block;
}
.photo-and-text p {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.photo-and-text span.photo-area {
  max-width: 80%;
}
.photo-and-text span.photo-area.float-right {
  margin-left: 2.5625rem;
}
.photo-and-text span.photo-area.float-left {
  margin-right: 2.5625rem;
}
.photo-and-text span.photo-area img {
  max-width: 100%;
  width: 100%;
  margin-bottom: 1rem;
}
@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 {
    margin-bottom: 0;
  }
  .photo-and-text p {
    font-size: 0.85714rem;
  }
}

/*********************/
/* 2列写真+キャプション */
/* 3列写真+キャプション */
/* 4列写真+キャプション */
/*********************/
.two-photo {
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}

.three-photo {
  -webkit-column-gap: 2.125rem;
     -moz-column-gap: 2.125rem;
          column-gap: 2.125rem;
}

.four-photo {
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
}

.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-bottom: 2rem;
}
.two-photo .photo_set,
.three-photo .photo_set,
.four-photo .photo_set {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.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.125rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
  margin-top: 11px;
  margin-bottom: 0;
}
.two-photo .photo_set .caption-text,
.three-photo .photo_set .caption-text,
.four-photo .photo_set .caption-text {
  text-align: left;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0.5rem 0;
}
.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;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.two-photo a:hover img,
.three-photo a:hover img,
.four-photo a:hover img {
  opacity: 0.7;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .two-photo,
  .three-photo,
  .four-photo {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .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 + 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;
  }
  .two-photo.turn_on div.photo_set .caption-title,
  .three-photo.turn_on div.photo_set .caption-title,
  .four-photo.turn_on div.photo_set .caption-title {
    font-size: 1rem;
    margin-top: 5px;
  }
  .two-photo.turn_on div.photo_set .caption-text,
  .three-photo.turn_on div.photo_set .caption-text,
  .four-photo.turn_on div.photo_set .caption-text {
    font-size: 0.85714rem;
    margin: 5px 0;
  }
  .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;
  }
}

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

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-bottom: 1.3rem;
  padding: 0;
}
ul.counter li, ol.counter li {
  display: table-row;
  list-style-type: none;
  counter-increment: number;
  margin: 0;
  padding: 0;
}
ul.counter li::before, ol.counter li::before {
  content: counter(number) ".";
  display: table-cell;
  text-align: right;
  padding-right: 0.4em;
}
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-bottom: 2rem;
}

.original-btn {
  display: inline-block;
  max-width: 400px;
  width: 100%;
  color: #fff;
  font-size: 1.125rem;
  text-align: center;
  text-decoration: none;
  background-color: #c0c0c0;
  border: 1px solid #c0c0c0;
  border-radius: 7px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  padding: 1.5rem;
}
.original-btn:hover, .original-btn:active, .original-btn:focus {
  color: #c0c0c0;
  background-color: #fff;
  text-decoration: none;
}
.original-btn.btn-big {
  max-width: 500px;
  padding: 2rem;
}
.original-btn.btn-small {
  max-width: 300px;
  font-size: 1rem;
  padding: 1.125rem;
}
.original-btn.btn-blue {
  background-color: #0d397f;
  border: 2px solid #0d397f;
}
.original-btn.btn-blue:hover, .original-btn.btn-blue:active, .original-btn.btn-blue:focus {
  color: #0d397f;
  background-color: transparent;
}
.original-btn.btn-green {
  background-color: #006837;
  border: 2px solid #006837;
}
.original-btn.btn-green:hover, .original-btn.btn-green:active, .original-btn.btn-green:focus {
  color: #006837;
  background-color: transparent;
}
.original-btn.btn-orange {
  background-color: #ff8000;
  border: 2px solid #ff8000;
}
.original-btn.btn-orange:hover, .original-btn.btn-orange:active, .original-btn.btn-orange:focus {
  color: #ff8000;
  background-color: transparent;
}
.original-btn.btn-gray {
  background-color: #999;
  border: 2px solid #999;
}
.original-btn.btn-gray:hover, .original-btn.btn-gray:active, .original-btn.btn-gray:focus {
  color: #999;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .original-btn {
    font-size: 0.85714rem;
    padding: 0.71428rem;
  }
  .original-btn.btn-big {
    padding: 1.0714rem;
  }
  .original-btn.btn-small {
    font-size: 0.71428rem;
    padding: 0.71428rem;
  }
}

hr.hr-on {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

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

.youtube-on,
.googlemap-on {
  margin-bottom: 2rem;
}

/************/
/* テーブル */
/***********/
table.table-standard,
table.table-flexible {
  width: 100%;
  border-collapse: collapse;
}
table.table-standard tr,
table.table-flexible tr {
  border: 1px solid #ccc;
  border-bottom: none;
}
table.table-standard tr th,
table.table-flexible tr th, table.table-standard tr td,
table.table-flexible tr td {
  color: #333;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.05em;
  border: none;
  padding: 1.375rem;
}
table.table-standard tr th,
table.table-flexible tr th {
  width: 30%;
  font-weight: 400;
  background-color: #f4f4f4;
  border-right: 1px solid #ccc;
  white-space: nowrap;
  padding-left: 1.8125rem;
}
table.table-standard tr td,
table.table-flexible tr td {
  width: 70%;
  padding-left: 2rem;
}
table.table-standard tr td:has(+ td),
table.table-flexible tr td:has(+ td) {
  border-right: 1px solid #ccc;
}
table.table-standard tr:last-of-type,
table.table-flexible tr:last-of-type {
  border-bottom: 1px solid #ccc;
}

.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: 0.85714rem;
    padding: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .table-responsive:has(.table-standard) {
    overflow-x: scroll;
  }
  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;
    padding: 0.5em 0.25em;
  }
  table.table-flexible tbody tr th {
    background-color: #ccc;
    padding: 0.25em;
  }
  table.table-flexible tbody tr td:has(+ td) {
    border-right: none;
  }
  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 {
    border-top: none;
    border-left: none;
    white-space: nowrap;
    margin-bottom: 0;
  }
  table.table-standard tbody {
    display: block;
  }
  table.table-standard tbody tr th,
  table.table-standard tbody tr td {
    min-width: 10em;
  }
  table.table-standard.tophead tbody tr th:last-of-type {
    border-right: none;
  }
}
main .rowwrap:has(.secondary) .table-on table tr th, main .rowwrap:has(.secondary) .table-on table tr td {
  width: auto;
}

/********/
/* 全幅 */
/*******/
section.extend {
  background-position: center;
  background-repeat: no-repeat;
  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 {
  position: relative;
  width: 100%;
  height: 0;
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: max(40%, 100vh - 125px);
}
body.top-page section.top_mainvisual div.top_slideshow {
  position: relative;
  width: 75%;
  height: 0;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  margin-left: auto;
  padding-bottom: max(40%, 100vh - 125px);
}
body.top-page section.top_mainvisual div.top_slideshow::before, body.top-page section.top_mainvisual div.top_slideshow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
body.top-page section.top_mainvisual div.top_slideshow::before {
  opacity: 0.6;
  background-image: url("../img/material_bg.jpg");
  background-position: center;
}
body.top-page section.top_mainvisual div.top_slideshow::after {
  background-image: url("../img/mainvisual_bg.png");
}
body.top-page section.top_mainvisual div.top_slideshow .slide {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -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-transform: scale(1.15) translate3d(0, 0, 0);
          transform: scale(1.15) translate3d(0, 0, 0);
  opacity: 0;
  z-index: -1;
}
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);
}
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%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
body.top-page section.top_mainvisual div.contents div.catch {
  max-width: 1200px;
  margin: 0 auto;
}
body.top-page section.top_mainvisual div.contents div.catch h2 {
  color: #fff;
  font-family: "lato", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 4.9375rem;
  letter-spacing: 0.02em;
}
body.top-page section.top_mainvisual div.contents div.catch p {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
body.top-page section.top_mainvisual div.contents div.catch p span {
  display: block;
  font-size: 1.625rem;
  margin-bottom: 2.75rem;
}
body.top-page section.top_mainvisual div.contents div.catch p br {
  display: none;
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual {
    width: 100%;
    padding-bottom: max(50%, 350px);
  }
  body.top-page section.top_mainvisual div.top_slideshow {
    width: 100%;
    padding-bottom: max(50%, 350px);
  }
  body.top-page section.top_mainvisual div.contents {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  body.top-page section.top_mainvisual div.contents div.catch h2 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
  }
  body.top-page section.top_mainvisual div.contents div.catch p {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2.2;
  }
  body.top-page section.top_mainvisual div.contents div.catch p span {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
  }
  body.top-page section.top_mainvisual div.contents div.catch p br {
    display: block;
  }
}
body.top-page .top_btn {
  display: block;
  max-width: 381px;
  width: 100%;
  border: 1px solid;
  text-align: center;
}
body.top-page .top_btn a {
  display: block;
  text-decoration: none;
  line-height: 1.5;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  body.top-page .top_btn {
    max-width: 250px;
    margin: 0 auto;
  }
  body.top-page .top_btn a {
    padding: 1rem;
  }
}
body.top-page .top_aboutus {
  position: relative;
  padding: 5.625rem 15px 4.8125rem;
}
body.top-page .top_aboutus .tag-on {
  max-width: 1200px;
  margin: 0 auto;
}
body.top-page .top_aboutus .tag-on .inner {
  width: 48%;
}
body.top-page .top_aboutus .tag-on .inner .top_title {
  letter-spacing: 0.05em;
}
body.top-page .top_aboutus .tag-on .inner h4 {
  font-size: 1.9375rem;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}
body.top-page .top_aboutus .tag-on .inner p {
  line-height: 2.25;
  letter-spacing: 0.1em;
  margin-bottom: 3.125rem;
}
body.top-page .top_aboutus .tag-on .inner .top_btn {
  border-color: #000;
}
body.top-page .top_aboutus .tag-on .inner .top_btn a {
  color: #000;
  font-weight: 500;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.top-page .top_aboutus .tag-on .inner .top_btn a:hover {
  background-color: #fff;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.top-page .top_aboutus .aboutus_bg {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 850px;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  body.top-page .top_aboutus {
    background-color: #fff !important;
    padding: 2.6rem 0 0;
  }
  body.top-page .top_aboutus .tag-on .inner {
    width: 100%;
    margin-bottom: 3.2rem;
    padding: 0 15px;
  }
  body.top-page .top_aboutus .tag-on .inner h4 {
    max-width: 100%;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  body.top-page .top_aboutus .tag-on .inner h4 br {
    display: none;
  }
  body.top-page .top_aboutus .tag-on .inner p {
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  body.top-page .top_aboutus .tag-on .inner p br {
    display: none;
  }
  body.top-page .top_aboutus .tag-on .inner .top_btn a {
    background-color: #f3f4f5;
  }
  body.top-page .top_aboutus .aboutus_bg {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
  }
}
body.top-page .top_material {
  color: #fff;
  text-align: center;
  padding: 4rem 15px;
}
body.top-page .top_material .tag-on {
  max-width: 1200px;
  margin: 0 auto;
}
body.top-page .top_material .tag-on .top_title {
  color: #fff;
}
body.top-page .top_material .tag-on .top_title span {
  color: #fff;
}
body.top-page .top_material .tag-on .top_title + p {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 2.375rem;
}
body.top-page .top_material .tag-on ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.375rem;
  margin-bottom: 5rem;
  padding: 0;
}
body.top-page .top_material .tag-on ul li {
  max-width: 560px;
  width: 50%;
  list-style: none;
}
body.top-page .top_material .tag-on ul li img {
  width: 100%;
  max-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 0.8125rem;
}
body.top-page .top_material .tag-on ul li h4, body.top-page .top_material .tag-on ul li p {
  text-align: left;
}
body.top-page .top_material .tag-on ul li h4 {
  font-family: "Roboto", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 2.1875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
body.top-page .top_material .tag-on ul li p {
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
body.top-page .top_material .tag-on ul li p span {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1.0625rem;
}
body.top-page .top_material .tag-on .top_btn {
  border-color: #fff;
  margin: 0 auto;
}
body.top-page .top_material .tag-on .top_btn a {
  color: #fff;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.top-page .top_material .tag-on .top_btn a:hover, body.top-page .top_material .tag-on .top_btn a:active, body.top-page .top_material .tag-on .top_btn a:focus {
  background-color: #000;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media screen and (max-width: 767px) {
  body.top-page .top_material {
    background-image: none !important;
    padding: 1.8rem 15px 3.2rem;
  }
  body.top-page .top_material .tag-on .top_title {
    margin-bottom: 1.5rem;
  }
  body.top-page .top_material .tag-on .top_title + p {
    font-size: 1rem;
    text-align: left;
  }
  body.top-page .top_material .tag-on ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    margin-bottom: 3.5rem;
  }
  body.top-page .top_material .tag-on ul li {
    max-width: 100%;
    width: 100%;
  }
  body.top-page .top_material .tag-on ul li img {
    margin-bottom: 9px;
  }
  body.top-page .top_material .tag-on ul li h4 {
    font-size: 1.785rem;
    margin-bottom: 0;
  }
  body.top-page .top_material .tag-on ul li p {
    line-height: 2;
  }
  body.top-page .top_material .tag-on ul li p span {
    font-size: 1.285rem;
    margin-bottom: 8px;
  }
  body.top-page .top_material .tag-on .top_btn a:hover, body.top-page .top_material .tag-on .top_btn a:active, body.top-page .top_material .tag-on .top_btn a:focus {
    color: #000;
    background-color: #fff;
  }
}
body.top-page .top_company {
  padding: 4.25rem 0 0;
}
body.top-page .top_company .top_title {
  text-align: center;
  margin-bottom: 3.125rem;
}
body.top-page .top_company ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}
body.top-page .top_company ul li {
  position: relative;
  width: 33.3333333333%;
  height: 500px;
  list-style: none;
  overflow: hidden;
}
body.top-page .top_company ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
body.top-page .top_company ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.top-page .top_company ul li a .company_bg {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.top-page .top_company ul li a .company_inner {
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  z-index: 1;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  padding: 1.375rem 2rem;
}
body.top-page .top_company ul li a .company_inner h4 {
  color: #fff;
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
body.top-page .top_company ul li a .company_inner h4 span {
  display: block;
  font-family: "Roboto", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1px;
}
body.top-page .top_company ul li a:hover::after {
  background-color: rgba(0, 0, 0, 0.82);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.top-page .top_company ul li a:hover .company_bg {
  scale: 1.1;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.top-page .top_company ul li a:hover .company_inner .arrow_link {
  background-color: #fff;
  background-image: url("../img/icon_rightarrow_black.svg");
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media screen and (max-width: 767px) {
  body.top-page .top_company {
    padding: 1.4rem 0 0;
  }
  body.top-page .top_company .top_title {
    margin-bottom: 1.7rem;
  }
  body.top-page .top_company ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body.top-page .top_company ul li {
    width: 100%;
    height: 180px;
  }
  body.top-page .top_company ul li a .company_inner {
    padding: 1rem 15px;
  }
  body.top-page .top_company ul li a .company_inner h4 {
    font-size: 1.4rem;
  }
  body.top-page .top_company ul li a .company_inner h4 span {
    font-size: 10px;
    margin-top: 2px;
  }
}
body.top-page .top_news_wrap {
  padding: 6.6875rem 0;
}
body.top-page .top_news_wrap #news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0;
}
body.top-page .top_news_wrap #news-list .news_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.0625rem;
}
body.top-page .top_news_wrap #news-list .news_btn .top_title {
  margin-bottom: 0;
}
body.top-page .top_news_wrap .arrow_link {
  background-color: #fff;
  border-color: #0d397f;
  background-image: url("../img/icon_rightarrow_blue.svg");
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.top-page .top_news_wrap .arrow_link:hover {
  background-color: #0d397f;
  background-image: url("../img/icon_rightarrow.svg");
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media screen and (max-width: 767px) {
  body.top-page .top_news_wrap {
    background-color: #fff !important;
    padding: 3.785rem 0 3.4rem;
  }
  body.top-page .top_news_wrap > .container-fluid {
    padding: 0;
  }
  body.top-page .top_news_wrap #news-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body.top-page .top_news_wrap #news-list .news_btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1.8rem;
    padding: 0 15px;
  }
  body.top-page .top_news_wrap #news-list .headline_list {
    width: 100%;
  }
}

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

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

*******************************************************************************************/
/***************************/
/* 一覧表示（TOP・一覧共通） */
/***************************/
#news-list .headline_list {
  max-width: 910px;
  width: 77%;
}
#news-list .headline_list dl.headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  color: #151515;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0;
  padding: 2.1875rem 1rem;
}
#news-list .headline_list dl.headline:first-of-type {
  border-top: 1px solid #ccc;
}
#news-list .headline_list dl.headline dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.40625rem;
  font-family: "Roboto", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.3125;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
#news-list .headline_list dl.headline dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
}
#news-list .headline_list dl.headline dd span.new {
  display: inline-block;
  color: #fff;
  font-family: "Roboto", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  background-color: #ad0306;
  white-space: nowrap;
  padding: 0 0.8125rem;
}
#news-list .headline_list dl.headline dd a {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #news-list .headline_list dl.headline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 5.5px;
    padding: 0.93rem 1rem;
  }
  #news-list .headline_list dl.headline dt {
    gap: 11px;
    font-size: 10px;
    font-weight: 500;
    margin-left: 0;
  }
  #news-list .headline_list dl.headline dd {
    margin-left: 0;
  }
  #news-list .headline_list dl.headline dd span.new {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.3;
    padding: 0 0.55rem;
  }
  #news-list .headline_list dl.headline dd a {
    font-size: 0.85rem;
  }
}
#news-list nav ul.pagination {
  margin-top: 5.20625rem;
}
#news-list nav ul.pagination li.page-item .page-link {
  color: #aeaeae;
  font-size: 1.125rem;
  font-weight: 400;
  background-color: transparent;
  border: none;
}
#news-list nav ul.pagination li.page-item.active .page-link {
  color: #c0c0c0;
}
#news-list nav ul.pagination li.page-item:first-of-type, #news-list nav ul.pagination li.page-item:last-of-type {
  background-color: #fafafa;
  border: 2px solid #ececec;
  border-radius: 10px;
}
#news-list nav ul.pagination li.page-item:first-of-type .page-link, #news-list nav ul.pagination li.page-item:last-of-type .page-link {
  color: #c0c0c0;
}
#news-list nav ul.pagination li.page-item:first-of-type {
  margin-right: 2.125rem;
}
#news-list nav ul.pagination li.page-item:last-of-type {
  margin-left: 2.125rem;
}
#news-list #top_news_slick {
  overflow: hidden;
  margin: 0;
  padding-bottom: 3.4375rem;
}
#news-list #top_news_slick .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.6875rem;
}
#news-list #top_news_slick .slick-track .headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
#news-list #top_news_slick .slick-track .headline .news_img {
  width: 100%;
  max-width: 526px;
  max-height: 420px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.125rem;
}
#news-list #top_news_slick .slick-track .headline .news_img img {
  height: auto;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
#news-list #top_news_slick .slick-track .headline .topnews_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #c0c0c0;
  font-family: "Roboto", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  padding-bottom: 0.5rem;
}
#news-list #top_news_slick .slick-track .headline .topnews_date .category {
  color: #c0c0c0;
  background-color: transparent;
  border: none;
}
#news-list #top_news_slick .slick-track .headline p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #343434;
  margin: 0;
}
#news-list #top_news_slick .slick-track .headline p span.new {
  display: inline-block;
  color: #fff;
  font-family: "Roboto", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  background-color: #ff7272;
  margin-right: 0.5rem;
  padding: 0 0.8125rem;
}
#news-list #top_news_slick .slick-track .headline:hover {
  text-decoration: none;
}
#news-list #top_news_slick .slick-track .headline:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  #news-list #top_news_slick {
    padding-bottom: 1.4714rem;
  }
  #news-list #top_news_slick .slick-track {
    gap: 1.43rem;
  }
  #news-list #top_news_slick .slick-track .headline {
    max-width: 200px;
  }
  #news-list #top_news_slick .slick-track .headline .news_img {
    max-width: 200px;
    max-height: 100%;
    margin-bottom: 0.429rem;
  }
  #news-list #top_news_slick .slick-track .headline .news_img img {
    width: 100%;
  }
  #news-list #top_news_slick .slick-track .headline .topnews_date {
    font-size: 0.7143rem;
    padding-bottom: 0.643rem;
  }
  #news-list #top_news_slick .slick-track .headline p {
    font-size: 0.85714rem;
  }
}

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

/*********/
/*詳細画面*/
/********/
body.news-page div.content em.content-title {
  display: block;
  font-style: normal;
  font-size: 1.75rem;
  font-weight: bold;
  border-bottom: 3px solid #c0c0c0;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
body.news-page div.content p.content-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  border-top: 1px solid #c0c0c0;
  border-bottom: 1px solid #c0c0c0;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}
body.news-page div.content p.content-data .category {
  display: inline-block;
  font-family: "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: 1px solid;
  padding: 3px 17px;
}
body.news-page div.content p.content-data .category + .category {
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  body.news-page div.content em.content-title {
    font-size: 1.3rem;
  }
  body.news-page div.content p.content-data .category {
    font-size: 0.9rem;
    padding: 3px 10px;
  }
}
body.news-page dl.headline {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #151515;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0;
  padding: 2rem 1.34375rem;
}
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", "Noto Sans JP", Roboto, Arial, "游ゴシック", "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;
  gap: 0.5rem;
  margin: 0;
}
body.news-page dl.headline dd span.new {
  display: inline-block;
  color: #fff;
  font-family: "Roboto", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  background-color: #ad0306;
  white-space: nowrap;
  padding: 0 0.8125rem;
}
body.news-page dl.headline dd a {
  color: #333;
  font-size: 1.125rem;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@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.information-list main {
  margin-bottom: 3.25rem;
}
@media screen and (max-width: 767px) {
  body.news-page.information-list main > .container-fluid .rowwrap .primary {
    padding: 0;
  }
  body.news-page.information-list main > .container-fluid .rowwrap .primary h3.lv1 {
    margin: 0 15px;
  }
}

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

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

 メールフォーム

*******************************************************************************************/
body.form-page .custom-form {
  margin-top: -4.25rem;
  padding-top: 8.5rem;
}
body.form-page .custom-form > p {
  margin-bottom: 2rem;
}
body.form-page p.form_lead {
  margin-bottom: 3.25rem;
  letter-spacing: 0.092em;
}
body.form-page section.contactform_wrap {
  max-width: 950px;
  margin: 0 auto;
}
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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #ccc;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
body.form-page section.contactform_wrap div.tel-number h4,
body.form-page section.contactform_wrap div.fax-number h4 {
  width: 100%;
  font-size: 1.25rem;
  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;
  letter-spacing: 0.092em;
  border-bottom: 2px solid #000;
  margin-right: 1em;
}
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;
  letter-spacing: 0.092em;
  margin-right: 2rem;
}
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%;
  }
}
body.form-page section.footer_contact {
  display: none;
}

section.input_wrap {
  width: 100%;
  margin-bottom: 3rem;
}
section.input_wrap .input_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
section.input_wrap .input_group:first-of-type {
  border-top: 1px solid #ccc;
}
section.input_wrap .input_group .input_label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  width: 13em;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  font-size: 1.125rem;
  margin: 0;
  padding: 0;
}
section.input_wrap .input_group .input_label span.required {
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  background-color: #ad0306;
  padding: 0 0.5rem;
}
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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
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 input[name=zip] {
    width: 75%;
  }
}
section.input_wrap .input_group.has-error .input_item {
  border-color: #ff5757;
}
section.input_wrap .input_group.has-error span.error_message {
  display: block;
  color: #ff5757;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5em;
}
section.input_wrap:last-of-type() {
  margin-bottom: 0;
}

.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;
}

.input_item {
  display: block;
  width: 100%;
  height: 3.5em;
  color: #3e3e3e;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  -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;
  padding: 1em 0.75rem;
}
.input_item::-webkit-input-placeholder {
  color: #aaa;
}
.input_item::-moz-placeholder {
  color: #aaa;
}
.input_item:-ms-input-placeholder {
  color: #aaa;
}
.input_item::-ms-input-placeholder {
  color: #aaa;
}
.input_item::placeholder {
  color: #aaa;
}
.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: #333;
  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 {
  position: relative;
  display: block;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 0.5em;
  padding-left: 1.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;
  background-color: #fff;
  border: 2px solid #999;
  -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: #0d397f;
  -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;
  line-height: 1.4;
  margin-bottom: 0;
  padding: 10px 0px 10px 35px;
}
input.input_item[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  width: 18px;
  height: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  border: 2px solid #c2ced2;
  margin-top: -9px;
}
input.input_item[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  left: 13px;
  width: 16px;
  height: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 3px solid #c0c0c0;
  border-left: 3px solid #c0c0c0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -8px;
}

.select_wrap {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
.select_wrap select.input_item {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}
.select_wrap::after {
  content: "";
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

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

 各種タブ

*******************************************************************************************/
/************************************
サイトマップテーブル
************************************/
table.sitemap-table {
  width: 100%;
}
table.sitemap-table th,
table.sitemap-table td {
  line-height: 1.2;
  border-top: none;
  border-bottom: 1px solid #ccc;
  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 {
  position: relative;
  display: inline-block;
  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: #c0c0c0;
}
@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;
  }
}

.cookie_content {
  position: fixed;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: 0.75rem;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  visibility: hidden;
  z-index: 999;
  padding: 1.2em;
}
.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;
  }
}
.top_title {
  color: #0d397f;
  font-family: "Roboto", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 3.125rem;
  font-weight: 500;
  margin-bottom: 1.71875rem;
}
.top_title span {
  display: block;
  color: #000;
  font-family: "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top_title {
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.93rem;
  }
  .top_title span {
    font-size: 0.8571rem;
  }
}

.arrow_link {
  display: block;
  width: 81px;
  height: 81px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-image: url("../img/icon_rightarrow.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.arrow_link a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .arrow_link {
    width: 51px;
    height: 51px;
    background-size: 30%;
  }
}

.facility_tbl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.1875rem;
}
.facility_tbl .tbl_img {
  max-width: 569px;
  width: 50%;
}
.facility_tbl .tbl_img img {
  width: 100%;
}
.facility_tbl .tbl_spec {
  width: 50%;
}
.facility_tbl .tbl_spec h5 {
  font-size: 1.375rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 1.21875rem;
}
.facility_tbl .tbl_spec .tbl_inner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #ccc;
  margin-bottom: 0;
  padding: 0.575rem 0.59375rem;
}
.facility_tbl .tbl_spec .tbl_inner dl:last-of-type {
  border-bottom: 1px solid #ccc;
}
.facility_tbl .tbl_spec .tbl_inner dl dt, .facility_tbl .tbl_spec .tbl_inner dl dd {
  font-weight: 500;
  letter-spacing: 0.05em;
}
.facility_tbl .tbl_spec .tbl_inner dl dt {
  width: 40%;
}
.facility_tbl .tbl_spec .tbl_inner dl dd {
  width: 60%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .facility_tbl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .facility_tbl:has(.tbl_spec + .tbl_img) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .facility_tbl .tbl_img {
    max-width: 100%;
    width: 100%;
  }
  .facility_tbl .tbl_spec {
    width: 100%;
  }
  .facility_tbl .tbl_spec h5 {
    font-size: 1.125rem;
  }
}

.facility_text p {
  font-size: 1.3125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .facility_text p {
    font-size: 1.125rem;
  }
}/*# sourceMappingURL=style.css.map */