@charset "UTF-8";
@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: "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.7;
}
@media screen and (max-width: 575px) {
  html, body {
    font-size: 14px;
  }
}

body {
  position: relative;
  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 {
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}
a:hover, a:active, a:focus {
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}

.cookie_policy {
  display: none;
  position: fixed;
  bottom: 0;
  right: calc(50px + 1rem);
  color: #C10000;
  background-color: #fff;
  border: 1px solid #C10000;
  border-bottom: none;
  padding: 10px;
  z-index: 999;
  cursor: pointer;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.cookie_policy p {
  margin: 0;
}
.cookie_policy:hover {
  color: #fff;
  background-color: #C10000;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.cookie_content {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  max-width: 30em;
  width: 100%;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1.2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 999;
}
.cookie_content .cookie_text {
  color: #fff;
}
.cookie_content .cookie_text a {
  color: dodgerblue;
}
.cookie_content .cookie_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.cookie_content .cookie_btn span {
  font-weight: 500;
  padding: 0.5em 1.5em;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.cookie_content .cookie_btn span.cookie_agree {
  color: #fff;
  background-color: dodgerblue;
}
.cookie_content .cookie_btn span.cookie_disagree {
  color: rgb(92, 114, 145);
  background-color: #fff;
}
.cookie_content .cookie_btn span:hover {
  cursor: pointer;
  opacity: 0.6;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media screen and (max-width: 575px) {
  .cookie_content {
    bottom: 0;
    right: auto;
    max-width: 100%;
    font-size: 0.75rem;
  }
  .cookie_content .cookie_text {
    margin-bottom: 1em;
  }
}

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

@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.anker {
  pointer-events: none;
  margin-top: -10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .anker {
    margin-top: -4rem;
    padding-top: 4rem;
  }
}

header.global_header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 100;
}
header.global_header nav.global_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 2.6rem;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
header.global_header nav.global_nav h1 {
  margin: 0;
  margin-left: 2.3375rem;
}
header.global_header nav.global_nav h1 a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 295px;
  height: 100%;
}
header.global_header nav.global_nav h1 a img {
  max-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;
}
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: 2.75rem;
  list-style: none;
  text-align: right;
  width: 100%;
  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: #222;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu .sub_menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-top: 1.375rem;
}
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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  background-color: rgba(242, 242, 242, 0.9);
  border-radius: 10px;
  padding: 1.5625rem 2.375rem;
  z-index: 10;
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu .sub_menu div.inner a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  width: 100%;
  font-size: 1rem;
  line-height: 1.45;
  white-space: nowrap;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 0.75rem;
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu .sub_menu div.inner a + a {
  margin-top: 0.75rem;
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu .sub_menu div.inner a::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid #C10000;
  border-bottom: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu .sub_menu div.inner a:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu:not(:has(.sub_menu)) a:hover {
  color: #C10000;
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu:has(.sub_menu) .sub_menu div.inner a:hover {
  color: #C10000;
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu:has(.sub_menu) > a::before {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 9px;
  height: 8px;
  background-color: #C10000;
  clip-path: polygon(50% 8px, 0% 0%, 9px 0%);
}
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;
  gap: 0.9375rem;
  width: 125px;
  line-height: 1;
  cursor: pointer;
  margin: 0;
  margin-left: auto;
  padding: 0.75rem;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
  z-index: 99999;
}
header.global_header nav.global_nav label.modal_toggle_btn span {
  display: block;
  width: 50px;
  height: 1px;
  background-color: #000;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
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: #333333;
}
header.global_header nav.global_nav label.modal_toggle_btn:hover span, header.global_header nav.global_nav label.modal_toggle_btn:active span, header.global_header nav.global_nav label.modal_toggle_btn:focus span {
  background-color: #fff;
}
header.global_header nav.global_nav:has(input:checked) label.modal_toggle_btn {
  position: relative;
}
header.global_header nav.global_nav:has(input:checked) label.modal_toggle_btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  margin: 0;
}
header.global_header nav.global_nav:has(input:checked) label.modal_toggle_btn span:first-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
header.global_header nav.global_nav:has(input:checked) label.modal_toggle_btn span:nth-of-type(2) {
  display: none;
  opacity: 0;
}
header.global_header nav.global_nav:has(input:checked) label.modal_toggle_btn span:last-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media (max-width: 1555px) {
  header.global_header nav.global_nav {
    gap: 1.25rem;
  }
  header.global_header nav.global_nav h1 {
    margin-left: 1.375rem;
  }
  header.global_header nav.global_nav h1 a {
    width: 250px;
  }
  header.global_header nav.global_nav > div.global_menu ul {
    gap: 1.375rem;
  }
  header.global_header nav.global_nav > div.global_menu ul li.main_menu a {
    font-size: 0.825rem;
  }
  header.global_header nav.global_nav label.modal_toggle_btn {
    width: 110px;
  }
}
@media screen and (max-width: 1199px) {
  header.global_header nav.global_nav {
    gap: 1rem;
  }
  header.global_header nav.global_nav h1 {
    margin-left: 1rem;
  }
  header.global_header nav.global_nav h1 a {
    width: 180px;
  }
  header.global_header nav.global_nav > div.global_menu ul {
    gap: 0.875rem;
  }
  header.global_header nav.global_nav > div.global_menu ul li.main_menu a {
    letter-spacing: normal;
  }
}
@media screen and (max-width: 991px) {
  header.global_header {
    height: 75px;
  }
  header.global_header nav.global_nav h1 {
    margin-left: 0.5rem;
  }
  header.global_header nav.global_nav > div.global_menu {
    display: none;
  }
  header.global_header nav.global_nav label.modal_toggle_btn {
    width: 75px;
  }
}
@media screen and (max-width: 575px) {
  header.global_header {
    height: 65px;
  }
  header.global_header nav.global_nav h1 a {
    width: 56.28dvw;
  }
  header.global_header nav.global_nav label.modal_toggle_btn {
    width: 65px;
  }
  header.global_header nav.global_nav label.modal_toggle_btn span {
    width: 40px;
  }
}

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

div.modal_menu {
  display: block;
  max-width: 430px;
  width: 100%;
  height: 100%;
  background-color: #222;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  overflow-y: scroll;
  padding: 50px 80px;
  z-index: 9998;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}
input#modal_menu_flg:checked + div.modal_menu {
  opacity: 1;
  pointer-events: auto;
}
div.modal_menu > div.global_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 100%;
}
div.modal_menu > div.global_menu ul {
  max-width: 767px;
  width: 100%;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
div.modal_menu > div.global_menu ul li {
  margin-bottom: 15px;
}
div.modal_menu > div.global_menu ul li a {
  display: block;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 10px 0;
}
div.modal_menu > div.global_menu ul li a[href="javascript:void(0);"] {
  cursor: default;
}
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, div.modal_menu > div.global_menu ul li a[href="javascript:void(0);"] {
  color: #999;
}
div.modal_menu > div.global_menu ul li div a {
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  div.modal_menu {
    max-width: 100%;
    padding: 35px 45px;
  }
  div.modal_menu div.global_menu ul li a {
    font-size: 1.125rem;
    padding: 5px 0;
  }
  div.modal_menu div.global_menu ul li .sub_menu a {
    line-height: 1.446;
    padding: 7.5px 1rem;
    padding-right: 0;
  }
}

div.global_footer {
  position: relative;
  z-index: 1;
}
div.global_footer .footer_contact {
  color: #fff;
  background-color: #222;
}
div.global_footer .footer_contact .footer_bg {
  display: block;
  width: 100%;
  height: 0;
  background-image: url("../files/images/photo00000006.jpg");
  background-repeat: no-repeat;
  background-size: 148%;
  background-position: left 51%;
  padding-bottom: 21.47%;
}
div.global_footer .footer_contact .container-fluid {
  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;
  gap: 3rem;
  padding: 4rem 15px;
}
div.global_footer .footer_contact .container-fluid .top_title {
  width: 40%;
  font-size: 1.3125rem;
  font-weight: bold;
  letter-spacing: normal;
  margin-left: auto;
}
div.global_footer .footer_contact .container-fluid .top_title span {
  font-size: 3.875rem;
  font-weight: 500;
  line-height: 1.483;
  letter-spacing: 0.017em;
}
div.global_footer .footer_contact .container-fluid .contact_inner {
  width: 41.417%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
div.global_footer .footer_contact .container-fluid .contact_inner small {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
div.global_footer .footer_contact .container-fluid .contact_inner p {
  margin-top: -6px;
  margin-bottom: 1.1875rem;
}
div.global_footer .footer_contact .container-fluid .contact_inner p a.tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: "Oswald", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 2.8125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.074em;
  text-decoration: none;
}
div.global_footer .footer_contact .container-fluid .contact_inner p a.tel i {
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}
div.global_footer .footer_contact .container-fluid .contact_inner a.original-btn {
  gap: 10px;
  min-width: unset;
  max-width: 342px;
  height: 62px;
  color: #222;
  font-weight: bold;
  letter-spacing: 0.05em;
  background-color: #fff;
  border-color: #fff;
  border-radius: 1.9375rem;
  padding: 0;
}
div.global_footer .footer_contact .container-fluid .contact_inner a.original-btn::before {
  content: "";
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("../img/icon_mail.svg");
          mask-image: url("../img/icon_mail.svg");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #222;
}
div.global_footer .footer_contact .container-fluid .contact_inner a.original-btn:hover {
  color: #fff;
  background-color: #C10000;
}
div.global_footer .footer_contact .container-fluid .contact_inner a.original-btn:hover::before {
  background-color: #fff;
}
div.global_footer footer {
  background-color: #fff;
  padding-top: 4.25rem;
  padding-bottom: 2.1875rem;
  position: relative;
}
div.global_footer footer div.footer_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
}
div.global_footer footer div.footer_contents .contents_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(4.75dvw, 3.75rem);
}
div.global_footer footer div.footer_contents .contents_inner > img {
  margin: 0 auto;
}
div.global_footer footer div.footer_contents .contents_inner .info_wrap p {
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
div.global_footer footer div.footer_contents .contents_inner .info_wrap p.wrap_ttl span {
  display: block;
  font-weight: 700;
  letter-spacing: 0.05em;
}
div.global_footer footer div.footer_contents .contents_inner .info_wrap p:last-of-type {
  margin-bottom: 0;
}
div.global_footer footer div.footer_contents .contents_inner .info_wrap a.btn_navi {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #C10000;
  border: 2px solid #C10000;
  color: #fff;
  width: 9.75rem;
  height: 2.75rem;
  text-decoration: none;
  border-radius: 5px;
}
div.global_footer footer div.footer_contents .contents_inner .info_wrap a.btn_navi:is(:hover, :focus, :active) {
  color: #C10000;
  background-color: #fff;
}
div.global_footer .copyright {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.111em;
  text-align: center;
  background-color: #222;
  padding: 0.75rem 0;
}
@media screen and (max-width: 991px) {
  div.global_footer .footer_contact .container-fluid .top_title {
    width: auto;
    margin: 0;
  }
  div.global_footer .footer_contact .container-fluid .contact_inner {
    width: auto;
  }
  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;
    gap: 2rem;
  }
  div.global_footer footer div.footer_contents .contents_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 2rem;
  }
  div.global_footer footer div.footer_contents .contents_inner .info_wrap p:has(a) {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  div.global_footer .footer_contact .footer_bg {
    padding-bottom: 40dvw;
  }
  div.global_footer .footer_contact .container-fluid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.2143rem;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 1.5rem 15px 3rem;
  }
  div.global_footer .footer_contact .container-fluid .top_title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.41;
    text-align: center;
  }
  div.global_footer .footer_contact .container-fluid .top_title span {
    font-size: 2.143rem;
  }
  div.global_footer .footer_contact .container-fluid .contact_inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  div.global_footer .footer_contact .container-fluid .contact_inner small {
    font-size: 1rem;
    text-align: center;
  }
  div.global_footer .footer_contact .container-fluid .contact_inner p {
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
  }
  div.global_footer .footer_contact .container-fluid .contact_inner p a.tel {
    gap: 1.102rem;
    font-size: 2.143rem;
  }
  div.global_footer .footer_contact .container-fluid .contact_inner p a.tel i {
    font-size: 1.746rem;
  }
  div.global_footer .footer_contact .container-fluid .contact_inner a.original-btn {
    max-width: 273px;
    width: 100%;
    height: 45px;
  }
  div.global_footer .footer_contact .container-fluid .contact_inner a.original-btn::before {
    width: 20px;
  }
}
@media screen and (max-width: 575px) {
  div.global_footer footer {
    padding-top: 3rem;
  }
  div.global_footer footer div.footer_contents .contents_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

/* ページトップへ戻るボタン */
#page-top {
  position: fixed;
  bottom: 15px;
  right: 20px;
  z-index: 50;
}
#page-top a {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  text-decoration: none;
  background-color: rgba(61, 61, 61, 0.5);
  border-radius: 50%;
}
#page-top a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  max-width: 1rem;
}
#page-top a:hover, #page-top a:active, #page-top a:focus {
  background-color: #3d3d3d;
}

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;
  overflow: hidden;
}
main .rowwrap .primary {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
main .rowwrap .secondary {
  width: 21.6667%;
  margin-left: 4.75%;
}
@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;
  }
}

/*****************/
/* ページタイトル */
/****************/
body main div.page-head {
  height: 463px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body main div.page-title {
  position: relative;
  height: 11.5rem;
  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: -webkit-gradient(linear, left top, right top, from(#222), to(#6b6b6b));
  background: linear-gradient(to right, #222 0%, #6b6b6b 100%);
}
body main div.page-title .title_inner > h2 {
  margin: 0;
}
body main div.page-title .title_inner span {
  display: block;
  color: #fff;
}
body main div.page-title .title_inner span.en {
  font-family: "Oswald", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 2.8125rem;
  font-weight: 500;
  line-height: 1.489;
  letter-spacing: 0.05em;
}
body main div.page-title .title_inner span.jp {
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1.44;
  letter-spacing: 0.1em;
}
body main div.page-title:has(+ .page-head) {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  body main div.page-head {
    height: 50dvw;
  }
  body main div.page-title {
    height: 7.5rem;
  }
  body main div.page-title .title_inner span.en {
    font-size: 1.75rem;
  }
  body main div.page-title .title_inner span.jp {
    font-size: 0.875rem;
  }
}

/***************+*/
/* ぱんくずリスト */
/****************/
nav.breadcrumb-filud {
  background-color: #222;
  margin-bottom: 4.1875rem;
}
nav.breadcrumb-filud:has(+ aside.news_filter) {
  margin-bottom: 0;
}
nav.breadcrumb-filud ol.breadcrumb {
  max-width: 1230px;
  font-size: 0;
  background-color: transparent;
  margin: 0 auto;
  padding: 0.75rem 15px;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item {
  font-size: 0.875rem;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item a {
  color: #fff;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item a[href="javascript:void(0);"] {
  pointer-events: none;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item + .breadcrumb-item::before {
  content: "　|　";
  color: #fff;
  padding-right: 0.25rem;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item.active {
  color: #fff;
}
@media screen and (max-width: 767px) {
  nav.breadcrumb-filud {
    margin-bottom: 3.125rem;
  }
  nav.breadcrumb-filud ol.breadcrumb {
    padding: 0.625rem 15px;
  }
  nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item {
    display: inline;
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item.active {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

/****************/
/* サイドメニュー */
/***************/
aside.secondary nav.sidebar-menu {
  margin-bottom: 2rem;
}
aside.secondary nav.sidebar-menu > h3 {
  font-size: 1.125rem;
  color: #ffffff;
  background-color: #C10000;
  margin: 0 auto;
  padding: 1rem 0;
  text-align: center;
  line-height: 1;
  font-weight: normal;
  font-weight: bold;
}
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 dotted #999999;
  line-height: 1.2;
  padding: 1px 0;
}
aside.secondary nav.sidebar-menu > ul > li > a {
  padding: 20px 15px;
  display: block;
  text-decoration: none;
  color: #000000;
  font-size: 0.875rem;
}
aside.secondary nav.sidebar-menu > ul > li > a::before {
  padding-right: 0.75em;
  color: #C10000;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}
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: #EEEEEE;
}
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;
}

/********/
/*見出し*/
/*******/
.lv1 span {
  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;
  color: #222;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.467;
  letter-spacing: 0.05em;
  padding-left: 1.625rem;
}
.lv1 span small {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.445;
  letter-spacing: 0.05em;
  padding-left: 1px;
}
.lv1 span::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 6px;
  height: calc(100% + 5px);
  background-color: #222;
}
@media screen and (max-width: 767px) {
  .lv1 span {
    gap: 3px;
    font-size: 1.5rem;
  }
  .lv1 span small {
    font-size: 1rem;
  }
}

.lv2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
}
.lv2::before {
  content: "";
  width: 1rem;
  height: 6px;
  background-color: #C10000;
}
.lv2 span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #222;
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .lv2 span {
    font-size: 1.375rem;
  }
}

.lv3 span {
  position: relative;
  display: inline-block;
  color: #222;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.35;
  border-bottom: 3px solid #C10000;
  padding-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .lv3 span {
    font-size: 1.2857rem;
  }
}

.lv4 span {
  color: #000;
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .lv4 span {
    font-size: 1.2857rem;
  }
}

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

/************/
/* 写真のみ */
/**********/
.photo-only {
  margin: 0;
  text-align: center;
}
.photo-only a img {
  display: inline-block;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #ffffff;
}
.photo-only a:hover img {
  opacity: 0.7;
  background-color: #ffffff;
}
.photo-only p.caption {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.05em;
  margin-top: 0.5em;
  margin-bottom: 0;
}

/*****************/
/* 写真＋テキスト */
/****************/
.photo-and-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.75rem;
}
.photo-and-text:where(.photo-left) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
}
.photo-and-text:where(.photo-right) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}
.photo-and-text div.text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.photo-and-text div.text-area > strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.photo-and-text div.text-area p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.photo-and-text span.photo-area {
  max-width: 80%;
}
.photo-and-text span.photo-area img {
  max-width: 100%;
  width: 100%;
  border-radius: 5px;
}
.photo-and-text span.photo-area a img {
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #ffffff;
}
.photo-and-text span.photo-area a:hover img {
  opacity: 0.7;
  background-color: #ffffff;
}
@media screen and (max-width: 991px) {
  .photo-and-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 1rem;
  }
  .photo-and-text span.photo-area {
    display: block;
    width: 100% !important;
    max-width: 100%;
    text-align: center;
    float: none !important;
  }
  .photo-and-text span.photo-area:not(:has(img)) {
    display: none;
  }
  .photo-and-text span.photo-area img {
    margin-bottom: 0;
  }
  .photo-and-text div.text-area > strong {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .photo-and-text div.text-area 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;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 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%;
  border-radius: 5px;
}
.two-photo .photo_set .caption-title, .two-photo .photo_set .caption-text,
.three-photo .photo_set .caption-title,
.three-photo .photo_set .caption-text,
.four-photo .photo_set .caption-title,
.four-photo .photo_set .caption-text {
  text-align: left;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.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: 1.44;
  letter-spacing: 0.017em;
}
.two-photo .photo_set .caption-text,
.three-photo .photo_set .caption-text,
.four-photo .photo_set .caption-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.two-photo .photo_set span.photo_even,
.three-photo .photo_set span.photo_even,
.four-photo .photo_set span.photo_even {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 1.5;
}
.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: 991px) {
  .two-photo,
  .three-photo,
  .four-photo {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
  .two-photo .photo_set .caption-title,
  .three-photo .photo_set .caption-title,
  .four-photo .photo_set .caption-title {
    font-size: 1.25rem;
    letter-spacing: 0.017em;
  }
  .two-photo .photo_set .caption-text,
  .three-photo .photo_set .caption-text,
  .four-photo .photo_set .caption-text {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}
@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;
  }
  .two-photo.sp_wrap,
  .three-photo.sp_wrap,
  .four-photo.sp_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .two-photo.sp_wrap div.photo_set + div.photo_set,
  .three-photo.sp_wrap div.photo_set + div.photo_set,
  .four-photo.sp_wrap div.photo_set + div.photo_set {
    margin: 0;
  }
}

/**********/
/* リスト */
/*********/
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 {
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  padding-left: 2em;
}
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: #C10000;
}

.list-on.list_font_big ul li {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .list-on.list_font_big ul li {
    font-size: 1.125rem;
  }
}

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 {
  display: table-row;
  font-size: 1.125rem;
  font-weight: 500;
  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;
  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;
}

@media screen and (max-width: 767px) {
  div.list-on ul li {
    font-size: 1rem;
  }
}
/**********/
/* ボタン */
/*********/
.btn-on {
  margin: 0;
}

.original-btn {
  --btn-font-color: #ffffff;
  --btn-back-color: #C10000;
  --btn-line-color: #C10000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--btn-line-color);
  background-color: var(--btn-back-color);
  color: var(--btn-font-color);
  padding: 1.5rem;
  font-size: 1.125rem;
  min-width: 400px;
  border-radius: 7px;
  font-weight: 500;
  letter-spacing: 0.017em;
}
.original-btn:is(:hover, :active, :focus) {
  text-decoration: none;
  background-color: var(--btn-font-color);
  color: var(--btn-back-color);
}
.original-btn.btn-big {
  min-width: 500px;
  padding: 2rem;
}
.original-btn.btn-small {
  min-width: 300px;
  font-size: 0.9375rem;
  padding: 1.125rem;
}
.original-btn.btn-blue {
  --btn-line-color:#00238C;
  --btn-back-color:#00238C;
}
.original-btn.btn-green {
  --btn-line-color:#006600;
  --btn-back-color:#006600;
}
.original-btn.btn-orange {
  --btn-line-color:#FF8000;
  --btn-back-color:#FF8000;
}
.original-btn.btn-gray {
  --btn-line-color:#999999;
  --btn-back-color:#999999;
}
@media screen and (max-width: 767px) {
  .original-btn {
    min-width: 80%;
    font-size: 1rem;
    padding: 0.71428rem;
  }
  .original-btn.btn-big {
    min-width: 100%;
    padding: 1.125rem;
  }
  .original-btn.btn-small {
    min-width: 60%;
    font-size: 0.875rem;
    padding: 0.71428rem;
  }
}

.hr-on {
  margin: 0;
}

/***********************************************/
/* Youtube GoogleMap 埋め込みタグ レスポンシブ化 */
/***********************************************/
.youtube-box,
.gmap-box {
  position: relative;
  height: 0;
  padding-bottom: 50%;
}
.youtube-box iframe,
.gmap-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .youtube-box,
  .gmap-box {
    padding-bottom: 65dvw;
  }
}

.gmap-box {
  padding-bottom: 39.7905%;
}

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

/************/
/* テーブル */
/***********/
table.table-standard,
table.table-flexible {
  width: 100%;
  border-collapse: collapse;
}
table.table-standard tr,
table.table-flexible tr {
  border-bottom: 1px solid #ccc;
}
table.table-standard tr th,
table.table-flexible tr th, table.table-standard tr td,
table.table-flexible tr td {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.05em;
  border: none;
  padding: 1.375rem 1.875rem;
}
table.table-standard tr th,
table.table-flexible tr th {
  color: #222;
  font-weight: bold;
}
table.table-standard tr td,
table.table-flexible tr td {
  color: #333;
}
table.table-standard tr:first-of-type,
table.table-flexible tr:first-of-type {
  border-top: 1px solid #ccc;
}

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

table.table-standard.lefthead tr:not(:has(td + td)) th,
table.table-flexible.lefthead tr:not(:has(td + td)) th {
  min-width: 10em;
}
table.table-standard.tophead:has(th + th + th) th, table.table-standard.tophead:has(th + th + th) td, table.table-standard.tophead:has(td + td + td) th, table.table-standard.tophead:has(td + td + td) td,
table.table-flexible.tophead:has(th + th + th) th,
table.table-flexible.tophead:has(th + th + th) td,
table.table-flexible.tophead:has(td + td + td) th,
table.table-flexible.tophead:has(td + td + td) td {
  min-width: 180px;
}
@media screen and (max-width: 991px) {
  table.table-standard tr th, table.table-standard tr td,
  table.table-flexible tr th,
  table.table-flexible tr td {
    font-size: 1rem;
    padding: 1.35714rem 0;
  }
}

@media screen and (max-width: 991px) {
  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%;
    padding: 0.5em 0;
    word-break: break-all;
  }
  table.table-flexible.lefthead tr td {
    padding-top: 0;
  }
  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;
    margin-bottom: 0;
  }
  table.table-standard tbody {
    display: block;
  }
  table.table-standard tbody tr th, table.table-standard tbody tr td {
    min-width: 10em;
    white-space: nowrap;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
/********/
/* 全幅 */
/*******/
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;
  }
}
/**********************************/
/* 追加ブロックタイプ、フロー説明 */
/*********************************/
.flow-figure .flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #C10000;
  padding: 2.1875rem 2.8125rem;
}
.flow-figure .flow-item:not(:last-of-type) {
  position: relative;
}
.flow-figure .flow-item:not(:last-of-type)::before, .flow-figure .flow-item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  left: 7.5%;
  border: 32px solid transparent;
  border-top: 21px solid;
  margin-left: -32px;
}
.flow-figure .flow-item:not(:last-of-type)::before {
  bottom: -52px;
  border-top-color: #fff;
  z-index: 2;
}
.flow-figure .flow-item:not(:last-of-type)::after {
  bottom: -53px;
  border-top-color: #C10000;
  z-index: 1;
}
.flow-figure .flow-item div.flow-item-step {
  width: 30%;
}
.flow-figure .flow-item div.flow-item-step span {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  background-color: #C10000;
  margin-bottom: 10px;
  padding: 4px 1rem;
}
.flow-figure .flow-item div.flow-item-step p.flow-item-title {
  color: #212529;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}
.flow-figure .flow-item p.flow-item-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.125rem;
  border-left: 3px dotted #C10000;
  margin: 0;
  padding-left: 2.5rem;
}
@media screen and (max-width: 1199px) {
  .flow-figure .flow-item {
    padding: 1.5rem 1.125rem;
  }
}
@media screen and (max-width: 991px) {
  .flow-figure .flow-item {
    padding-bottom: 1.25rem;
  }
  .flow-figure .flow-item div.flow-item-step {
    min-width: 280px;
  }
  .flow-figure .flow-item p.flow-item-text {
    padding-left: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .flow-figure .flow-item {
    -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;
    padding-top: 2.125rem;
    padding-left: 10px;
    padding-right: 10px;
  }
  .flow-figure .flow-item:first-of-type {
    padding-top: 0.5rem;
  }
  .flow-figure .flow-item div.flow-item-step {
    min-width: auto;
    width: 100%;
    border-bottom: 3px dotted #C10000;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .flow-figure .flow-item p.flow-item-text {
    border: none;
    padding-left: 0;
  }
}
@media screen and (max-width: 575px) {
  .flow-figure .flow-item {
    padding-left: 0;
    padding-right: 0;
  }
  .flow-figure .flow-item:not(:last-of-type)::before, .flow-figure .flow-item:not(:last-of-type)::after {
    margin-left: -20px;
  }
}

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 {
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.submit_area button + button {
  margin-top: 1rem;
}
.submit_area button:hover, .submit_area button:active, .submit_area button:focus {
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.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: #C10000;
  -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 #C10000;
  border-bottom: 3px solid #C10000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/***************************/
/* 一覧表示（TOP・一覧共通） */
/***************************/
#news-list .headline_list dl.headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0;
  padding: 2.09375rem 1.1875rem;
}
#news-list .headline_list dl.headline:first-of-type {
  border-top: 1px solid #ccc;
}
#news-list .headline_list dl.headline dt, #news-list .headline_list dl.headline dd {
  color: #222;
}
#news-list .headline_list dl.headline dt {
  width: 80px;
  font-family: "Oswald", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 300;
  line-height: 1.3125;
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin: 0;
}
#news-list .headline_list dl.headline dd {
  -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;
  gap: 0.875rem;
  margin: 0;
}
#news-list .headline_list dl.headline dd span.new {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3.0625rem;
  height: 23px;
  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.875rem;
  font-weight: 500;
  background-color: #C10000;
}
#news-list .headline_list dl.headline dd a {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 10px;
  color: #333;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.445;
  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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.8rem;
    padding: 1.125rem 1rem;
  }
  #news-list .headline_list dl.headline dt {
    font-size: 0.833rem;
    margin-left: 0;
  }
  #news-list .headline_list dl.headline dd {
    gap: 0.5rem;
    width: 100%;
  }
  #news-list .headline_list dl.headline dd span.new {
    font-size: 0.833rem;
    font-weight: 400;
    line-height: 1.3;
    padding: 0 0.55rem;
  }
  #news-list .headline_list dl.headline dd a {
    font-size: 1rem;
  }
}
#news-list > h3.lv1 {
  margin-bottom: 2rem;
}

nav.nav_pagination ul.item_wrap {
  --link-color: #222;
  --link-fond-color:#FAFAFA;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 5.20625rem 0 0;
}
nav.nav_pagination ul.item_wrap li:where(.arrow, .item) > a, nav.nav_pagination ul.item_wrap li:where(.arrow, .item) span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1.8em;
  aspect-ratio: 1/1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}
nav.nav_pagination ul.item_wrap li.arrow a {
  border: 2px solid var(--link-color);
  border-radius: 5px;
  background-color: var(--link-fond-color);
}
nav.nav_pagination ul.item_wrap li.arrow a i {
  width: 0.5em;
  aspect-ratio: 10/17;
  display: inline-block;
  background-color: var(--link-color);
}
nav.nav_pagination ul.item_wrap li.arrow a:is(:hover, :focus, :active) {
  --link-color: #FAFAFA;
  --link-fond-color: #C10000;
  border-color: var(--link-fond-color);
}
nav.nav_pagination ul.item_wrap li.arrow a[href="#"] {
  --link-color:#CCC;
  pointer-events: none;
}
nav.nav_pagination ul.item_wrap li.arrow:first-child {
  margin-right: 2.125rem;
}
nav.nav_pagination ul.item_wrap li.arrow:first-child a i {
  clip-path: polygon(90% 0, 100% 10%, 30% 50%, 100% 90%, 90% 100%, 0 50%);
}
nav.nav_pagination ul.item_wrap li.arrow:last-child {
  margin-left: 2.125rem;
}
nav.nav_pagination ul.item_wrap li.arrow:last-child a i {
  clip-path: polygon(10% 0, 0% 10%, 70% 50%, 0 90%, 10% 100%, 100% 50%);
}
nav.nav_pagination ul.item_wrap li.item a {
  color: #aeaeae;
}
nav.nav_pagination ul.item_wrap li.item a:hover, nav.nav_pagination ul.item_wrap li.item a:active, nav.nav_pagination ul.item_wrap li.item a:focus {
  color: #C10000;
}
nav.nav_pagination ul.item_wrap li.item.active span {
  color: var(--link-color);
}
@media screen and (max-width: 767px) {
  nav.nav_pagination ul.item_wrap {
    padding: 0;
  }
}

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

.category-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.category-list a {
  text-decoration: none;
}
.category-list .category {
  --cat-font-color: #ffffff;
  --cat-back-color: #C10000;
  --cat-line-color: #C10000;
  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;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  color: var(--cat-font-color);
  background-color: var(--cat-back-color);
  border: 1px solid var(--cat-line-color);
  height: 1.6875rem;
  font-size: 1rem;
  font-weight: bold;
  padding: 0 0.75rem;
}
@media screen and (max-width: 767px) {
  .category-list a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .category-list .category {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 20px;
    font-size: 0.75rem;
    padding: 0 0.5rem;
  }
}

body.top-page section.top_mainvisual {
  width: 100%;
  height: 0;
  padding-bottom: clamp(690px, 50%, 915px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  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;
}
body.top-page section.top_mainvisual div.top_slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-bottom: clamp(690px, 50%, 915px);
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  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;
  z-index: -1;
  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);
}
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;
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual div.top_photo {
    background-image: url(../img/main_visual_sp.jpg) !important;
  }
}
body.top-page section.top_mainvisual div.contents {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
body.top-page section.top_mainvisual div.contents div.catch {
  position: absolute;
  bottom: 7.3125rem;
  left: 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.0625rem;
  text-align: left;
  z-index: 1;
}
body.top-page section.top_mainvisual div.contents div.catch h2, body.top-page section.top_mainvisual div.contents div.catch p {
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.62);
  margin: 0;
}
body.top-page section.top_mainvisual div.contents div.catch h2 {
  font-size: 3.875rem;
  line-height: 1.25;
}
body.top-page section.top_mainvisual div.contents div.catch p {
  font-size: 2.3125rem;
}
@media screen and (max-width: 991px) {
  body.top-page section.top_mainvisual {
    width: 100%;
    min-height: auto;
    padding-bottom: 80.25dvw;
  }
  body.top-page section.top_mainvisual div.top_slideshow {
    width: 100%;
    padding-bottom: 80.25dvw;
  }
  body.top-page section.top_mainvisual div.contents div.catch {
    bottom: 5%;
    gap: 0.5rem;
  }
  body.top-page section.top_mainvisual div.contents div.catch h2 {
    font-size: 2.5rem;
  }
  body.top-page section.top_mainvisual div.contents div.catch p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 575px) {
  body.top-page section.top_mainvisual {
    height: 120dvw;
  }
  body.top-page section.top_mainvisual div.top_slideshow {
    width: 100%;
    padding-bottom: 120dvw;
  }
  body.top-page section.top_mainvisual div.contents div.catch h2 {
    font-size: 1.75rem;
  }
  body.top-page section.top_mainvisual div.contents div.catch p {
    font-size: 1rem;
  }
}
body.top-page .top_service_wrap {
  padding-top: 2.375rem;
  padding-bottom: 4.0625rem;
  overflow-x: hidden;
}
body.top-page .top_service_wrap .top_title {
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}
body.top-page .top_service_wrap .service_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  max-width: 97.6%;
  margin: 0 auto;
}
body.top-page .top_service_wrap .service_block ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem 1.875rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
body.top-page .top_service_wrap .service_block ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 590px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
body.top-page .top_service_wrap .service_block ul li > a {
  display: block;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
body.top-page .top_service_wrap .service_block ul li > a span {
  display: block;
  width: 100%;
  height: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 52.882%;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.top-page .top_service_wrap .service_block ul li .block_inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 2.125rem 2.5rem 2.625rem;
}
body.top-page .top_service_wrap .service_block ul li .block_inner h4 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.017em;
  text-align: center;
  margin-bottom: 0.75rem;
}
body.top-page .top_service_wrap .service_block ul li .block_inner h4:has(img) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem 1.25rem;
}
body.top-page .top_service_wrap .service_block ul li .block_inner p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 2.25rem;
}
body.top-page .top_service_wrap .service_block ul li .block_inner a.original-btn.btn-small {
  max-width: 269px;
  min-width: auto;
  width: 100%;
  height: 50px;
  border-radius: 2.25rem;
  padding: 10px;
}
body.top-page .top_service_wrap .service_block ul li:has(a:hover, a:active, a:focus) > a span {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.top-page .top_service_wrap .service_block ul li:has(a:hover, a:active, a:focus) .block_inner a.original-btn.btn-small {
  color: #C10000;
  background-color: #fff;
}
@media screen and (max-width: 1199px) {
  body.top-page .top_service_wrap .service_block {
    max-width: 100%;
  }
  body.top-page .top_service_wrap .service_block ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  body.top-page .top_service_wrap .service_block ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: auto;
    grid-column: unset !important;
  }
  body.top-page .top_service_wrap .service_block ul li .block_inner {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 1.5rem;
  }
  body.top-page .top_service_wrap .service_block ul li .block_inner h4 {
    font-size: 1.375rem;
  }
  body.top-page .top_service_wrap .service_block ul li .block_inner p {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  body.top-page .top_service_wrap .top_title {
    margin-bottom: 2rem;
  }
  body.top-page .top_service_wrap .service_block ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body.top-page .top_service_wrap .service_block ul li {
    max-width: 100%;
  }
}
body.top-page .top_news_wrap {
  padding: 6.625rem 0 7.0625rem;
}
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;
  gap: 3rem;
  margin-bottom: 0;
}
body.top-page .top_news_wrap #news-list .news_head .top_title {
  margin-bottom: 1.59375rem;
}
body.top-page .top_news_wrap #news-list .news_head .top_title span {
  line-height: 1.49;
}
body.top-page .top_news_wrap #news-list .news_head a.newslist_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3.6875rem;
  height: 3.6875rem;
  border: 1px solid #333;
  border-radius: 50%;
  padding-left: 5px;
}
body.top-page .top_news_wrap #news-list .news_head a.newslist_btn::before {
  content: "";
  display: block;
  width: 10px;
  height: 12px;
  background-color: #C10000;
  clip-path: polygon(10px 50%, 0% 0%, 0% 12px);
}
body.top-page .top_news_wrap #news-list .news_head a.newslist_btn:hover {
  background-color: rgba(51, 51, 51, 0.3);
}
body.top-page .top_news_wrap #news-list .headline_list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 946px;
}
@media screen and (max-width: 767px) {
  body.top-page .top_news_wrap {
    padding: 3rem 0 5rem;
  }
  body.top-page .top_news_wrap #news-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
  body.top-page .top_news_wrap #news-list .news_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
  }
  body.top-page .top_news_wrap #news-list .news_head .top_title {
    margin-bottom: 0;
  }
  body.top-page .top_news_wrap #news-list .headline_list {
    width: 100%;
  }
  body.top-page .top_news_wrap p.newslist_btn {
    text-align: center;
  }
  body.top-page .top_news_wrap p.newslist_btn a {
    width: 40%;
    margin-top: 1.6875rem;
  }
}
body.top-page .top_event_slide_wrap {
  padding-left: 0;
  padding-right: 0;
}
body.top-page .top_event_slide_wrap .top_title {
  color: #fff;
  margin-bottom: 2rem;
}
body.top-page .top_event_slide {
  overflow: hidden;
  padding-left: 0;
}
body.top-page .top_event_slide .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.625rem;
}
body.top-page .top_event_slide .slick-track .slick-slide {
  width: 320px;
}
body.top-page .top_event_slide article.event_list_item div.item_text > a {
  color: #fff;
}
body.top-page .top_event_slide article.event_list_item div.item_text > div p {
  color: #fff;
}
body.top-page .top_event_slide article.event_list_item div.item_text > div .category-list a.category {
  --cat-font-color: #fff;
}
@media screen and (max-width: 767px) {
  body.top-page .top_event_slide .slick-track {
    gap: 1.43rem;
  }
}
@media screen and (max-width: 575px) {
  body.top-page .top_event_slide .slick-track .slick-slide {
    width: 275px;
  }
}

/************************************
サイトマップテーブル
************************************/
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: #C10000;
}
@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;
  }
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

/** 共通見出し（細部は各項目で指定） **/
.top_title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.017em;
}
.top_title span {
  display: block;
  font-family: "Oswald", "Noto Sans JP", Roboto, Arial, "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 2.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .top_title span {
    font-size: 2rem;
  }
}

strong.text_head {
  display: inline-block;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.467;
  letter-spacing: 0.05em;
  margin-bottom: 1.375rem;
}
strong.text_head span {
  color: #C10000;
}
@media screen and (max-width: 991px) {
  strong.text_head {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  strong.text_head {
    font-size: 1.25rem;
  }
}

.text_head_red {
  display: inline-block;
  color: #C10000;
  font-size: 1.475rem;
  font-weight: 500;
  line-height: 1.467;
  letter-spacing: 0.05em;
  margin-bottom: 1.375rem;
}

@media screen and (max-width: 767px) {
  div.tag-on.instructor_list .four-photo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }
  div.tag-on.instructor_list .four-photo div.photo_set + div.photo_set {
    margin: 0;
  }
  div.tag-on.instructor_list .four-photo div.photo_set span.photo_even {
    aspect-ratio: 0.7778904665 !important;
  }
}

div.two-photo.contract_item {
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
div.two-photo.contract_item .photo_set {
  position: relative;
}
div.two-photo.contract_item .photo_set .caption-title, div.two-photo.contract_item .photo_set .caption-text {
  margin-top: 0.9375rem;
}
div.two-photo.contract_item .photo_set .caption-title {
  font-size: 1.5625rem;
  font-weight: bold;
}
div.two-photo.contract_item .photo_set .caption-text {
  position: absolute;
  bottom: 3.1875rem;
  right: 0;
  color: #fff;
  background-color: rgba(34, 34, 34, 0.5);
  border-radius: 0 0 5px 0;
  pointer-events: none;
  margin: 0;
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
}
div.two-photo.contract_item .photo_set a span {
  max-height: 360px;
}
@media screen and (max-width: 991px) {
  div.two-photo.contract_item {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}

div.page-head:has(div.top_video) {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30dvw;
}
div.page-head:has(div.top_video) .loader {
  margin: 100px auto;
  font-size: 25px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
          animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
div.page-head:has(div.top_video) div.top_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
div.page-head:has(div.top_video) div.top_video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 35%;
     object-position: 50% 35%;
}
@media screen and (max-width: 767px) {
  div.page-head:has(div.top_video) {
    height: 50dvw;
  }
  div.page-head:has(div.top_video) div.top_video video {
    -o-object-position: unset;
       object-position: unset;
  }
}

@-webkit-keyframes load5 {
  0%, 100% {
    -webkit-box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
            box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
@keyframes load5 {
  0%, 100% {
    -webkit-box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
            box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    -webkit-box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
.agenda_list ul li {
  font-size: 1.4rem;
  font-weight: bold;
}

.rental-cta p {
  font-size: 1.2rem;
}

.rental-item > .photo_set {
  border: solid 1px #ddd;
  border-radius: 10px;
  padding: 2rem;
}
.rental-item > .photo_set:not(:has(img)) {
  border: none;
  border-radius: unset;
}
@media (max-width: 855px) {
  .rental-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .rental-item {
    gap: 1rem !important;
  }
  .rental-item .photo_set {
    padding: 1rem;
  }
  .rental-item .photo_set p.caption-title {
    font-size: 1rem;
  }
}

.rental-item > .photo_set > .caption-title {
  font-weight: bold;
}

.photo-and-text.pat_step div.text-area > strong {
  font-weight: bold;
}
.photo-and-text.pat_transportation span.photo-area {
  max-height: 400px;
}
.photo-and-text.pat_transportation span.photo-area img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 991px) {
  .photo-and-text.pat_transportation span.photo-area {
    max-height: 100%;
  }
}

/*********/
/*詳細画面*/
/********/
body.news-page article.news_article {
  width: 100%;
  max-width: 1130px;
  padding: 0 15px;
  margin: 0 auto;
}
body.news-page article.news_article h3:has(+ #news-list) {
  color: #C10000;
  font-size: 1.5625rem;
  font-weight: 500;
  margin-bottom: 1em;
}
body.news-page aside.news_filter {
  background-color: #222;
  border-top: 1px solid #6b6b6b;
  margin-bottom: 4.375rem;
}
body.news-page aside.news_filter > div {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: 130px;
}
body.news-page aside.news_filter > div nav {
  display: contents;
}
body.news-page aside.news_filter > div nav h3 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: 0.025em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  body.news-page aside.news_filter > div nav:nth-of-type(2) h3 {
    margin-left: 40px;
  }
}
body.news-page aside.news_filter > div nav .select_wrap {
  font-size: 1rem;
  position: relative;
  width: min(18em, 100%);
}
body.news-page aside.news_filter > div nav .select_wrap select {
  padding: 0.875em;
  padding-right: 2.5em;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  position: relative;
  letter-spacing: 0.05em;
  width: 100%;
  outline: none;
  border-color: #CCCCCC;
  background-color: #fff;
  color: #111;
}
body.news-page aside.news_filter > div nav .select_wrap select:has(option:checked[value=""]) {
  color: #A8B19F;
}
body.news-page aside.news_filter > div nav .select_wrap select option {
  color: #111;
}
body.news-page aside.news_filter > div nav .select_wrap::after {
  content: "";
  display: block;
  width: 0.75em;
  height: 0.625em;
  background-color: #C10000;
  position: absolute;
  top: 50%;
  right: 0.875em;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  body.news-page aside.news_filter > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    height: auto;
    gap: 15px;
    padding: 1rem 30px;
  }
  body.news-page aside.news_filter > div nav {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
  body.news-page aside.news_filter > div nav h3 {
    width: 5.5em;
    text-align: right;
  }
  body.news-page aside.news_filter > div nav .select_wrap select {
    padding: 0.5em;
    padding-right: 1.75em;
  }
  body.news-page aside.news_filter > div nav .select_wrap::after {
    right: 0.5em;
  }
}
body.news-page div.content {
  border: 1px solid #DDDDDD;
  border-radius: 1.25rem;
  padding: 3.125rem;
  margin-bottom: 4rem;
}
body.news-page div.content em.content-title {
  display: block;
  border-bottom: 3px solid #C10000;
  font-style: normal;
  font-size: 1.75rem;
  font-weight: bold;
  padding-bottom: 1rem;
}
body.news-page div.content .content-data {
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 1.125rem 0 1.75rem;
}
@media screen and (max-width: 767px) {
  body.news-page div.content {
    padding: 1.75rem;
  }
  body.news-page div.content em.content-title {
    font-size: 1.3rem;
  }
}
body.news-page nav.detail_pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.125rem;
}
body.news-page nav.detail_pager a {
  --link-color: #222;
  color: var(--link-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  gap: 1rem;
}
body.news-page nav.detail_pager a span {
  width: 2em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  aspect-ratio: 1/1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FAFAFA;
  border: 2px solid var(--link-color);
  border-radius: 5px;
}
body.news-page nav.detail_pager a span i {
  width: 10px;
  aspect-ratio: 10/17;
  display: inline-block;
  background-color: var(--link-color);
}
body.news-page nav.detail_pager a:first-of-type {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
}
body.news-page nav.detail_pager a:first-of-type i {
  clip-path: polygon(90% 0, 100% 10%, 30% 50%, 100% 90%, 90% 100%, 0 50%);
}
body.news-page nav.detail_pager a:last-of-type {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}
body.news-page nav.detail_pager a:last-of-type i {
  clip-path: polygon(10% 0, 0% 10%, 70% 50%, 0 90%, 10% 100%, 100% 50%);
}
body.news-page nav.detail_pager a:is(:hover, :active, :focus) {
  --link-color: #C10000;
}
body.news-page nav.detail_pager a[href="#"] {
  --link-color: #CCC;
  pointer-events: none;
}
body.news-page.information-list main {
  margin-bottom: 3.25rem;
}

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

#case-list {
  text-align: center;
}
#case-list h3.lv1 {
  text-align: left;
  margin-bottom: 2.375rem;
}
#case-list > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.125rem 2.875%;
  list-style: none;
  text-align: left;
  margin-bottom: 4.75rem;
  padding: 0;
}
#case-list > ul li {
  max-width: 345px;
}
#case-list > ul li a.case_img {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 0.6875rem;
  padding-bottom: 66.67%;
}
#case-list > ul li a.case_img span {
  display: block;
  width: 100%;
  height: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 66.67%;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
#case-list > ul li a.case_img p.new {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-weight: bold;
  background-color: #C10000;
  margin: 0;
  padding: 0 5px;
}
#case-list > ul li div.case_text > a, #case-list > ul li div.case_text p {
  color: #222;
  letter-spacing: 0.05em;
}
#case-list > ul li div.case_text > a {
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.647;
  margin-bottom: 0.6875rem;
}
#case-list > ul li div.case_text > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0625rem;
}
#case-list > ul li div.case_text > div p {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}
#case-list > ul li div.case_text > div .category-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#case-list > ul li div.case_text > div .category-list a.category {
  text-decoration: none;
  height: 1.6875rem;
  font-size: 1rem;
  font-weight: bold;
  padding: 0 0.75rem;
}
#case-list > ul li:has(.case_img:hover, .case_text > a:hover) a.case_img span {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
#case-list > a.original-btn {
  max-width: 358px;
  min-width: unset;
  width: 100%;
  height: 5.25rem;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  background-color: #222;
  border-color: #222;
  border-radius: 0;
  margin-bottom: 100px;
}
#case-list > a.original-btn:hover, #case-list > a.original-btn:active, #case-list > a.original-btn:focus {
  color: #222;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  #case-list > ul {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 2.125rem;
       -moz-column-gap: 2.125rem;
            column-gap: 2.125rem;
  }
  #case-list > ul li {
    max-width: 100%;
  }
  #case-list > a.original-btn {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  #case-list > ul {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
  #case-list > ul li div.case_text > a {
    font-size: 1rem;
  }
  #case-list > ul li div.case_text > div {
    gap: 0.5rem;
  }
  #case-list > ul li div.case_text > div .category-list a.category {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 20px;
    font-size: 0.75rem;
    padding: 0 0.5rem;
  }
}
@media screen and (max-width: 575px) {
  #case-list > ul li div.case_text > div .category-list a span.category {
    min-height: 20px;
    height: auto;
    line-height: 1.2;
    padding: 3px 0.5rem;
  }
}

section.event_list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.125rem 2.875%;
  list-style: none;
  text-align: left;
  margin-bottom: 4.75rem;
  padding: 0;
}
section.event_list ul li {
  max-width: 345px;
}
@media screen and (max-width: 991px) {
  section.event_list ul {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 2.125rem;
       -moz-column-gap: 2.125rem;
            column-gap: 2.125rem;
  }
  section.event_list ul li {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.event_list ul {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

article.event_list_item {
  display: block;
}
article.event_list_item a.item_img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 5px;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 0.6875rem;
}
article.event_list_item a.item_img span {
  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;
}
article.event_list_item a.item_img p.new {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-weight: bold;
  background-color: #C10000;
  margin: 0;
  padding: 0 5px;
}
article.event_list_item div.item_text > a, article.event_list_item div.item_text p {
  color: #222;
  letter-spacing: 0.05em;
}
article.event_list_item div.item_text > a {
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.647;
  margin-bottom: 0.6875rem;
}
article.event_list_item div.item_text > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0625rem;
}
article.event_list_item div.item_text > div p {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}
article.event_list_item div.item_text > div .category-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
article.event_list_item div.item_text > div .category-list a.category {
  text-decoration: none;
  height: 1.6875rem;
  font-size: 1rem;
  font-weight: bold;
  padding: 0 0.75rem;
}
article.event_list_item:has(.item_img:hover, .item_text > a:hover) a.item_img span {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media screen and (max-width: 767px) {
  article.event_list_item div.item_text > a {
    font-size: 1rem;
  }
  article.event_list_item div.item_text > div {
    -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;
    gap: 0.5rem;
  }
  article.event_list_item div.item_text > div .category-list a.category {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 20px;
    font-size: 0.75rem;
    padding: 0 0.5rem;
  }
}
@media screen and (max-width: 575px) {
  article.event_list_item div.item_text > div .category-list a.category {
    min-height: 20px;
    height: auto;
    line-height: 1.2;
    padding: 3px 0.5rem;
  }
}/*# sourceMappingURL=style.css.map */