@charset "UTF-8";
/*reset==========================================================================*/
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*, *::before, *::after {
  box-sizing: border-box;
}

a, button {
  cursor: revert;
}

ol, ul, menu {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

/*base==========================================================================*/
html {
  color: #1f0f0a;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

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

.body {
  background-image: url(../img/body_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  min-width: 320px;
}
@media (min-width: 920px) {
  .body {
    padding-top: 110px;
  }
}
@media (max-width: 919px) {
  .body {
    padding-top: 70px;
  }
}

.hover {
  transition: opacity 0.1s;
}
.hover:hover {
  opacity: 0.5;
  cursor: pointer;
}

.scroll-btn {
  display: block;
  position: fixed;
  background-image: url(../img/pagetop.png);
  background-position: left;
  bottom: -80px;
  opacity: 0;
  transition: bottom 0.2s, opacity 0.2s;
}
@media (min-width: 768px) {
  .scroll-btn {
    width: 80px;
    height: 80px;
    background-size: 160px 80px;
    right: 30px;
  }
}
@media (max-width: 767px) {
  .scroll-btn {
    width: 50px;
    height: 50px;
    background-size: 100px 50px;
    right: 10px;
  }
}
.scroll-btn:hover {
  background-position: right;
}

/*z-index==========================================================================*/
.g-nav-sheet {
  z-index: 80;
}

.header {
  z-index: 90;
}

.g-nav {
  z-index: 100;
}

/*.main==========================================================================*/ /*.breadcrumb==========================================================================*/
.breadcrumb {
  padding: 20px 0 10px;
  display: block;
  align-items: center;
  border-bottom: 1px solid #e85920;
}
.breadcrumb__item {
  font-size: 12px;
  color: #93959d;
  display: inline;
}
.breadcrumb__item:not(:last-of-type)::after {
  margin: 1em;
  content: ">";
  color: #93959d;
}

/*.header==========================================================================*/
.header {
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
@media (min-width: 920px) {
  .header {
    height: 110px;
  }
  .header__logo {
    margin-left: 30px;
    margin-right: 30px;
    width: 380px;
  }
  .header__contact {
    margin-left: auto;
    margin-right: 30px;
    width: 110px;
  }
  .header__tel {
    margin-right: 30px;
    width: 234px;
  }
  .header__tel-link {
    display: block;
  }
  .header__tel-time {
    margin-left: 39px;
    font-size: clamp(10px, 5vw, 14px);
    color: #505157;
  }
  .header__tel-time span {
    display: inline-block;
  }
  .header__menu {
    display: none;
  }
}
@media (max-width: 919px) {
  .header {
    height: 50px;
  }
  .header__logo {
    margin-left: 10px;
    margin-right: 10px;
    width: 215px;
  }
  .header__contact {
    margin-left: auto;
    margin-right: 1px;
    width: 50px;
    min-width: 50px;
  }
  .header__tel {
    display: none;
  }
  .header__menu {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-image: url(../img/header_menu.png);
    background-size: 200% 100%;
    background-repeat: no-repeat;
  }
}

body.sp-menu-active .header__menu {
  background-position: right;
}

/*.footer==========================================================================*/
.footer {
  background-color: #3d3f44;
}
@media (min-width: 1050px) {
  .footer {
    padding: 100px 0 30px;
  }
}
@media (max-width: 1049px) {
  .footer {
    padding: 50px 0 20px;
  }
}
.footer__logo {
  max-width: 400px;
}
@media (min-width: 1050px) {
  .footer__logo {
    margin-bottom: 20px;
  }
}
@media (max-width: 1049px) {
  .footer__logo {
    margin-bottom: 15px;
  }
}
.footer__name {
  color: #fff;
}
.footer__name-2 {
  color: #fff;
  font-size: 1.25em;
}
@media (min-width: 1050px) {
  .footer__name {
    margin-bottom: 60px;
  }
}
@media (max-width: 1049px) {
  .footer__name {
    margin-bottom: 35px;
  }
}
.footer__box {
  border-bottom: 1px solid #fff;
}
@media (min-width: 1050px) {
  .footer__box {
    margin-bottom: 30px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 1049px) {
  .footer__box {
    margin-bottom: 20px;
    padding-bottom: 35px;
    justify-content: center;
  }
}
@media (min-width: 1050px) {
  .footer__box-inner-1 {
    width: 320px;
    border-right: 1px solid #e85920;
  }
}
@media (max-width: 1049px) {
  .footer__box-inner-1 {
    margin-bottom: 20px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e85920;
  }
}
.footer__address-box {
  display: flex;
  align-items: center;
}
@media (min-width: 1050px) {
  .footer__address-box {
    margin-bottom: 40px;
  }
}
@media (max-width: 1049px) {
  .footer__address-box {
    margin-bottom: 25px;
  }
}
.footer__address-icon {
  margin-right: 10px;
  width: 29px;
}
.footer__address-text {
  color: #fff;
}
.footer__tel {
  width: 234px;
}
@media (min-width: 1050px) {
  .footer__tel {
    margin-right: 30px;
  }
}
.footer__tel-link {
  display: block;
}
.footer__tel-time {
  margin-left: 39px;
  font-size: clamp(10px, 5vw, 14px);
  color: #fff;
}
.footer__tel-time span {
  display: inline-block;
}
.footer__box-inner-2 {
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 1049px) {
  .footer__box-inner-2 {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 1050px) {
  .footer__box-inner-2-item {
    margin-right: 40px;
  }
}
@media (max-width: 1049px) {
  .footer__box-inner-2-item {
    margin-right: clamp(10px, 3vw, 20px);
  }
}
@media (max-width: 1049px) {
  .footer__box-inner-2-item--sitemap {
    margin-right: 0;
  }
}
.footer__box-inner-2-item--contact {
  margin-right: 0;
}
@media (max-width: 1049px) {
  .footer__box-inner-2-item--contact {
    margin: 20px calc((100% - 160px) / 2) 0;
    width: 160px;
    height: 40px;
  }
}
.footer__box-inner-2-link {
  color: #fff;
  font-weight: 300;
}
@media (min-width: 1050px) {
  .footer__box-inner-2-link {
    font-size: 14px;
  }
}
@media (max-width: 1049px) {
  .footer__box-inner-2-link {
    font-size: clamp(10px, 3vw, 14px);
  }
}
.footer__box-inner-2-link--contact {
  padding: 6px 32px;
  background-color: #e85920;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.footer__copy {
  text-align: right;
  color: #fff;
  font-weight: 300;
  display: block;
}
@media (min-width: 1050px) {
  .footer__copy {
    font-size: 14px;
  }
}
@media (max-width: 1049px) {
  .footer__copy {
    font-size: clamp(10px, 3vw, 14px);
  }
}

/*.g-nav==========================================================================*/
.g-nav-sheet {
  opacity: 0;
  left: 100%;
  transition: 0.3s opacity;
}

@media (min-width: 920px) {
  body.sp-menu-active .g-nav-sheet {
    display: none;
  }
}
@media (max-width: 919px) {
  body.sp-menu-active .g-nav-sheet {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
    opacity: 1;
  }
}

.g-nav {
  /*
  //アニメーションあり bk
  //sp only
  @media(max-width: 919px){
      position: fixed;
      top: 50px;
      right: -300px;
      width: 300px;
      height: calc(100% - 50px);
      opacity: 0;
      background-color: v.$color-white;
      transition: 0.5s all;
      &__item {
          border-bottom: 1px solid #e1e3eb;
          position: relative;
          &::before {
              content: "";
              display: block;
              position: absolute;
              width: 0%;
              height: 100%;
              background: v.$color-orange;
              top: 0;
              left: 0;
              opacity: 0;
              transition: 0.3s all;
          }
          &--active {
              &::before {
                  content: "";
                  display: block;
                  position: absolute;
                  width: 100%;
                  opacity: 1;
                  background: v.$color-orange;
              }
              .g-nav__en,
              .g-nav__ja {
                  color: v.$color-white;
              }
          }
          &:hover {
              .g-nav__en,
              .g-nav__ja {
                  color: v.$color-white;
              }
              &::before {
                  width: 100%;
                  opacity: 1;
              }
          }
      }
      &__link {
          display:flex;
          flex-flow: column;
          position: relative;
      }
      &__ja {
          padding-bottom: 8px;
          order: 2;
          text-align: center;
          font-size: 13px;
          font-weight: 500;
          color: v.$color-orange;
      }
      &__en {
          padding-top: 8px;
          order: 1;
          text-align: center;
          font-size: 16px;
          font-weight: 500;
          color: #3d3f44;
      }
  }
  */
}
@media (min-width: 920px) {
  .g-nav {
    margin: 1px auto 0;
    width: 100%;
    max-width: 1050px;
  }
  .g-nav__inner {
    display: flex;
    align-items: center;
  }
  .g-nav__item {
    width: 16.6666666667%;
    position: relative;
  }
  .g-nav__item::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 0%;
    background: #e85920;
    bottom: 50%;
    left: 0;
    opacity: 0;
    transition: 0.1s all;
  }
  .g-nav__item--active::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    bottom: 0%;
    opacity: 1;
    background: #e85920;
  }
  .g-nav__item--active .g-nav__en,
.g-nav__item--active .g-nav__ja {
    color: #fff;
  }
  .g-nav__item:hover .g-nav__en,
.g-nav__item:hover .g-nav__ja {
    color: #fff;
  }
  .g-nav__item:hover::before {
    height: 100%;
    bottom: 0%;
    opacity: 1;
  }
  .g-nav__link {
    display: flex;
    flex-flow: column;
    position: relative;
  }
  .g-nav__ja {
    padding-bottom: 16px;
    order: 2;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #e85920;
  }
  .g-nav__en {
    padding-top: 16px;
    order: 1;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #3d3f44;
  }
}
@media (max-width: 919px) {
  .g-nav {
    position: fixed;
    top: 50px;
    right: -300px;
    width: 300px;
    height: calc(100% - 50px);
    opacity: 0;
    background-color: #fff;
    transition: 0.5s all;
  }
  .g-nav__item {
    border-bottom: 1px solid #e1e3eb;
    position: relative;
  }
  .g-nav__item::before {
    content: "";
    display: block;
    position: absolute;
    width: 0%;
    height: 100%;
    background: #e85920;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0s all;
  }
  .g-nav__item--active::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    opacity: 1;
    background: #e85920;
  }
  .g-nav__item--active .g-nav__en,
.g-nav__item--active .g-nav__ja {
    color: #fff;
  }
  .g-nav__item:hover .g-nav__en,
.g-nav__item:hover .g-nav__ja {
    color: #fff;
  }
  .g-nav__item:hover::before {
    width: 100%;
    opacity: 1;
  }
  .g-nav__link {
    display: flex;
    flex-flow: column;
    position: relative;
  }
  .g-nav__ja {
    padding-bottom: 8px;
    order: 2;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #e85920;
  }
  .g-nav__en {
    padding-top: 8px;
    order: 1;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #3d3f44;
  }
}

body.sp-menu-active .g-nav {
  right: 0;
  opacity: 1;
}

/*.sec==========================================================================*/
.sec--orange {
  background-color: #e85920;
}

/*.wrap==========================================================================*/
.wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.wrap--1400-max {
  max-width: 1400px;
}
.wrap--1260 {
  max-width: 1260px;
}
@media (min-width: 768px) {
  .wrap--1260 {
    width: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  .wrap--1260 {
    width: calc(100% - 20px);
  }
}
.wrap--1260-max {
  max-width: 1260px;
}
.wrap--1200 {
  max-width: 1200px;
}
@media (min-width: 768px) {
  .wrap--1200 {
    width: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  .wrap--1200 {
    width: calc(100% - 20px);
  }
}
.wrap--1200-2 {
  max-width: 1200px;
}
@media (min-width: 768px) {
  .wrap--1200-2 {
    width: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  .wrap--1200-2 {
    width: calc(100% - 20px);
  }
}
.wrap--1200-max {
  max-width: 1200px;
}
.wrap--1000 {
  max-width: 1000px;
}
@media (min-width: 768px) {
  .wrap--1000 {
    width: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  .wrap--1000 {
    width: calc(100% - 20px);
  }
}
.wrap--1000-max {
  max-width: 1000px;
}
.wrap--820 {
  max-width: 820px;
}
@media (min-width: 768px) {
  .wrap--820 {
    width: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  .wrap--820 {
    width: calc(100% - 20px);
  }
}
.wrap--820-max {
  max-width: 820px;
}

/*page-title(h1)==========================================================================*/
.page-title {
  position: relative;
}
@media (min-width: 768px) {
  .page-title {
    aspect-ratio: 1200/320;
  }
}
@media (max-width: 767px) {
  .page-title {
    aspect-ratio: 768/280;
  }
}
.page-title__text {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .page-title__text {
    padding: 0 52px;
  }
}
@media (max-width: 767px) {
  .page-title__text {
    padding: 0 20px;
  }
}
.page-title__text__ja {
  font-weight: 100;
  color: #fff;
}
@media (min-width: 768px) {
  .page-title__text__ja {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .page-title__text__ja {
    font-size: 14px;
  }
}
.page-title__text__en {
  color: #fff;
  font-weight: 100;
  position: relative;
}
@media (min-width: 768px) {
  .page-title__text__en {
    margin-bottom: 16px;
    padding-bottom: 16px;
    font-size: 48px;
    letter-spacing: 4px;
  }
}
@media (max-width: 767px) {
  .page-title__text__en {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 32px;
    letter-spacing: 1px;
  }
}
.page-title__text__en::after {
  content: "";
  display: block;
  background-color: #fff;
  width: 50px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.page-title__bg {
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .page-title__bg {
    aspect-ratio: 1200/320;
  }
}
@media (max-width: 767px) {
  .page-title__bg {
    aspect-ratio: 768/280;
  }
}

/*title(h2以下)==========================================================================*/
.title-1 {
  font-weight: 500;
  font-family: "M PLUS Rounded 1c", sans-serif;
  transform: rotate(0.05deg);
  color: #e85920;
  text-align: center;
}
@media (min-width: 768px) {
  .title-1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .title-1 {
    font-size: clamp(18px, 5.5vw, 24px);
  }
}
.title-1::after {
  display: block;
  content: "";
  background: #93959d;
  width: 70px;
  height: 2px;
}
@media (min-width: 768px) {
  .title-1::after {
    margin: 16px auto 40px;
  }
}
@media (max-width: 767px) {
  .title-1::after {
    margin: 16px auto 20px;
  }
}
.title-1--2 {
  color: #fff;
}
.title-1--2::after {
  background: #fff;
}

.title-2 {
  text-align: center;
  position: relative;
}
.title-2::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #3d3f44;
  position: absolute;
  top: 23px;
  left: 0;
}
.title-2__en {
  font-size: 32px;
  font-weight: 500;
  font-family: "M PLUS Rounded 1c", sans-serif;
  transform: rotate(0.05deg);
  color: #e85920;
  display: inline-block;
  position: relative;
  background-color: #fafafa;
}
@media (min-width: 768px) {
  .title-2__en {
    margin-bottom: 5px;
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .title-2__en {
    margin-bottom: -5px;
    padding: 0 24px;
  }
}
.title-2__ja {
  color: #93959d;
  display: block;
}
@media (min-width: 768px) {
  .title-2__ja {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .title-2__ja {
    font-size: 12px;
  }
}

.title-3 {
  font-weight: 500;
  color: #fff;
  background-color: #e85920;
}
@media (min-width: 768px) {
  .title-3 {
    padding: 14px 28px;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .title-3 {
    padding: 8px 16px;
    font-size: 20px;
  }
}

.title-4 {
  padding: 6px 16px;
  font-size: 18px;
  font-weight: 500;
  color: #1f0f0a;
  border-bottom: 1px solid #d4d6df;
  position: relative;
}
.title-4::after {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background-color: #e85920;
  position: absolute;
  top: 0;
  left: 0;
}

.title-5 {
  padding: 10px 24px;
  font-size: 21px;
  font-weight: 500;
  font-family: "M PLUS Rounded 1c", sans-serif;
  transform: rotate(0.05deg);
  text-align: center;
  color: #e85920;
  border-top: 1px solid #e85920;
  border-bottom: 1px solid #e85920;
}

.title-6 {
  color: #e85920;
  font-weight: 500;
  font-family: "M PLUS Rounded 1c", sans-serif;
  transform: rotate(0.05deg);
}
@media (min-width: 768px) {
  .title-6 {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .title-6 {
    font-size: 20px;
  }
}

.title-7 {
  color: #e85920;
  text-align: center;
}
@media (min-width: 768px) {
  .title-7 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .title-7 {
    font-size: 20px;
  }
}

/*text==========================================================================*/
.text-1 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}
.text-1--left {
  text-align: left;
}
.text-1--right {
  text-align: right;
}

.text-2 {
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 768px) {
  .text-2 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .text-2 {
    font-size: clamp(12px, 3.1vw, 16px);
  }
}
.text-2--left {
  text-align: left;
}
.text-2--right {
  text-align: right;
}
@media (min-width: 768px) {
  .text-2--pc-left {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .text-2--pc-right {
    text-align: right;
  }
}

/*list==========================================================================*/
.list-1 {
  background-color: #fff;
}
@media (min-width: 768px) {
  .list-1 {
    padding: 60px 0 80px;
  }
}
@media (max-width: 767px) {
  .list-1 {
    padding: 30px 0 40px;
  }
}
@media (min-width: 768px) {
  .list-1--2 {
    padding: 60px 0 60px;
  }
}
@media (max-width: 767px) {
  .list-1--2 {
    padding: 30px 0 40px;
  }
}
.list-1__inner {
  margin-bottom: 40px;
}
.list-1__inner--2 {
  margin-bottom: 0;
}
.list-1__link {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e1e3eb;
  transition: 0.1s all;
}
@media (min-width: 768px) {
  .list-1__link {
    padding: 35px 30px;
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .list-1__link {
    padding: 15px;
    flex-wrap: wrap;
  }
}
.list-1__link:hover {
  background-color: #e1e3eb;
}
.list-1__time {
  font-size: 14px;
  color: #505157;
}
@media (min-width: 768px) {
  .list-1__time {
    width: 114px;
  }
}
@media (max-width: 767px) {
  .list-1__time {
    width: 92px;
  }
}
.list-1__tag {
  font-size: 14px;
  border-radius: 4px;
  text-align: center;
}
@media (min-width: 768px) {
  .list-1__tag {
    margin-right: 30px;
    width: 120px;
  }
}
@media (max-width: 767px) {
  .list-1__tag {
    margin-right: calc(100% - 92px - 112px);
    width: 112px;
  }
}
.list-1__tag--information {
  color: #16a8be;
  border: 1px solid #16a8be;
}
.list-1__tag--event {
  color: #e85920;
  border: 1px solid #e85920;
}
.list-1__text {
  font-size: 14px;
  color: #505157;
}
@media (min-width: 768px) {
  .list-1__text {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .list-1__text {
    margin-top: 8px;
    width: 100%;
  }
}

.list-2__item {
  background: #fff;
  border-bottom: 1px solid #e1e3eb;
}
.list-2__item__logo {
  width: 300px;
}
.list-2__item__text {
  line-height: 1.8;
}
@media (min-width: 768px) {
  .list-2__item {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .list-2__item__logo {
    margin-right: 30px;
    max-width: 30%;
  }
  .list-2__item__text {
    flex: 1;
  }
  .list-2__item__btn {
    margin-left: 30px;
    width: 240px;
  }
}
@media (max-width: 767px) {
  .list-2__item {
    padding: 20px;
  }
  .list-2__item__logo {
    margin: 0 auto 20px;
    max-width: 100%;
  }
  .list-2__item__text {
    margin-bottom: 20px;
  }
  .list-2__item__btn {
    margin: auto;
    width: 260px;
  }
}
.list-2__item--last {
  border-style: none;
}

.list-3 {
  display: block;
}
.list-3__item {
  padding: 3px 0 3px 1em;
  display: block;
  position: relative;
  line-height: 1.8;
}
.list-3__item::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 0;
}
.list-3__item a {
  padding: 1px 26px 0 0;
  display: inline-block;
  position: relative;
}
.list-3__item a::after {
  content: "";
  background-image: url(../img/icon_pdf.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right 4px;
  width: 18px;
  height: 28px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}
.list-3__item--no-dot {
  padding-left: 0;
}
.list-3__item--no-dot::before {
  display: none;
}
.list-3__item--no-dot a {
  padding-right: 0;
  color: #e85920;
}
.list-3__item--no-dot a::after {
  display: none;
}
.list-3__item--nest {
  padding-left: 1.5em;
}
.list-3__item--nest::before {
  content: "├";
}
.list-3__item--nest a {
  padding-right: 0;
  color: #e85920;
}
.list-3__item--nest a::after {
  display: none;
}
.list-3__item--nest-last {
  padding-left: 1.5em;
}
.list-3__item--nest-last::before {
  content: "└";
}
.list-3__item--nest-last a {
  padding-right: 0;
  color: #e85920;
}
.list-3__item--nest-last a::after {
  display: none;
}

/*table==========================================================================*/
.table-1__cell {
  padding: 16px 8px;
  color: #1f0f0a;
  font-size: 13px;
  font-weight: 400;
  border: solid 1px #d4d6df;
  background-color: #fff;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.table-1__cell--th-1 {
  color: #fff;
  background-color: #3d3f44;
}
.table-1__cell--th-2 {
  background-color: #f6ede8;
}

.table-2 td {
  color: #1f0f0a;
  font-weight: 400;
  line-height: 1.8;
  border: solid 1px #f6ede8;
  background-color: #fff;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #d4d6df;
}
@media (min-width: 768px) {
  .table-2 td {
    padding: 16px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .table-2 td {
    padding: 12px;
    font-size: 14px;
  }
}

/*button==========================================================================*/
.button-1 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  background-color: #73ae0c;
  border-radius: 9999px;
}
.button-1::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
}
@media (min-width: 768px) {
  .button-1 {
    padding: 20px 50px;
  }
}
@media (max-width: 767px) {
  .button-1 {
    padding: 15px 50px;
  }
}

/*.wrap==========================================================================*/
.photo-gallery {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .photo-gallery__item {
    margin-right: 30px;
    margin-bottom: 30px;
    width: calc((100% - 60px) / 3);
  }
  .photo-gallery__item:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .photo-gallery__item {
    margin-right: 10px;
    margin-bottom: 10px;
    width: calc((100% - 10px) / 2);
  }
  .photo-gallery__item:nth-child(2n) {
    margin-right: 0;
  }
}
.photo-gallery__link {
  display: block;
}
@media (min-width: 768px) {
  .photo-gallery__link {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .photo-gallery__link {
    margin-bottom: 3px;
  }
}
@media (min-width: 768px) {
  .photo-gallery__text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .photo-gallery__text {
    font-size: 12px;
  }
}

.lb-loader, .lightbox {
  text-align: center;
  line-height: 0;
  position: absolute;
  left: 0;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000;
  filter: alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  width: 100%;
  z-index: 10000;
  font-weight: 400;
  outline: 0;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  border: 4px solid #fff;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  background-color: #fff;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  top: 43%;
  height: 25%;
  width: 100%;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: 0;
  background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==);
}

.lb-next, .lb-prev {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../img/prev.png) left 48% no-repeat;
  filter: alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../img/next.png) right 48% no-repeat;
  filter: alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: 700;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) top right no-repeat;
  text-align: right;
  outline: 0;
  filter: alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: alpha(Opacity=100);
  opacity: 1;
} /**
 * Swiper 7.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 31, 2021
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/*swiper override==========================================================================*/
@media (min-width: 768px) {
  .swiper {
    aspect-ratio: 1200/600;
  }
}
@media (max-width: 767px) {
  .swiper {
    aspect-ratio: 768/385;
  }
}

.swiper-wrapper {
  height: 100%;
}

.swiper-slide {
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 300px;
}
.swiper-slide__text {
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.2;
  border-bottom: 1px solid #fff;
  font-weight: 300;
  position: absolute;
  top: 14%;
  right: 0;
}
@media (min-width: 768px) {
  .swiper-slide__text {
    padding: 0 30px 12px 0;
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .swiper-slide__text {
    padding: 0 20px 0.5em 0;
    font-size: clamp(18px, 4.5vw, 32px);
  }
}

.swiper-pagination {
  position: relative;
}
@media (min-width: 768px) {
  .swiper-pagination {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .swiper-pagination {
    margin-bottom: 40px;
  }
}

.swiper-pagination-bullet {
  width: 50px !important;
  height: 2px !important;
  margin: 0 0 0 2px !important;
  background: #3d3f44;
  opacity: 1;
  border-radius: 0%;
}

.swiper-pagination-bullet-active {
  background: #e85920 !important;
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: auto;
  left: auto;
}

/*contact-form==========================================================================*/
@media (min-width: 768px) {
  .page-contact__flex {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .page-contact__flex__img {
    margin-right: 30px;
    width: calc((100% - 30px) / 2);
    max-width: 490px;
  }
}
@media (min-width: 768px) {
  .page-contact__flex__text {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .page-contact__flex__text p {
    text-align: center;
  }
}
.page-contact__flex__tel {
  margin-right: 30px;
  width: 234px;
}
@media (max-width: 767px) {
  .page-contact__flex__tel {
    margin: auto;
  }
}
.page-contact__flex__tel-link {
  display: block;
}
@media (max-width: 767px) {
  .page-contact__flex__tel {
    text-align: center;
  }
}
.page-contact__flex__tel-time {
  margin-left: 39px;
  font-size: clamp(10px, 5vw, 14px);
  color: #505157;
}
.page-contact__flex__tel-time span {
  display: inline-block;
}

.contact-form {
  background-color: #fff;
}
@media (min-width: 768px) {
  .contact-form {
    padding: 64px 0 50px 0;
  }
}
@media (max-width: 767px) {
  .contact-form {
    padding: 20px 0 40px 0;
  }
}
.contact-form__label {
  margin-left: auto;
  margin-right: auto;
  border-bottom: solid 1px #d7d9e1;
  display: flex;
  align-items: flex-start;
  text-align: left;
}
@media (min-width: 768px) {
  .contact-form__label {
    padding: 20px;
    width: calc(100% - 80px);
  }
}
@media (max-width: 767px) {
  .contact-form__label {
    padding: 6px 0 16px;
    flex-wrap: wrap;
  }
}
.contact-form__title {
  margin: 5px 20px 0 0;
}
@media (min-width: 768px) {
  .contact-form__title {
    width: 135px;
  }
}
.contact-form__must {
  padding: 0 12px 3px 12px;
  border-radius: 4px;
  width: 48px;
  background-color: #16a8be;
  color: #fff;
  font-size: 12px;
}
@media (min-width: 768px) {
  .contact-form__must {
    margin: 9px 20px 0 0;
  }
}
@media (max-width: 767px) {
  .contact-form__must {
    margin: 9px calc(100% - 135px - 48px - 40px) 0 0;
  }
}
.contact-form__input, .contact-form__textarea {
  padding: 6px 16px;
  width: 100%;
  border: solid 1px #d7d9e1;
  border-radius: 4px;
  font-weight: 300;
  outline: none;
}
@media (max-width: 767px) {
  .contact-form__input, .contact-form__textarea {
    margin-top: 12px;
  }
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #d7d9e1;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: #d7d9e1;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  border-color: #3d3f44;
}
.contact-form__acceptance {
  margin-bottom: 20px;
}
.contact-form__acceptance p {
  line-height: 2;
}
.contact-form__acceptance-text-1 p {
  line-height: 1.5;
}
.contact-form__acceptance-text-2 a {
  color: #e85920;
  text-decoration: underline;
}
.contact-form__acceptance-text-3 label {
  cursor: pointer;
}
.contact-form__acceptance-text-3 label input {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 9999px;
  border: 1px solid #e85920;
  background: rgba(255, 255, 255, 0.9333333333);
}
.contact-form__acceptance-text-3 label input:checked {
  background: #e85920;
}
.contact-form__acceptance-text-3 label .wpcf7-list-item-label {
  left: 10px;
  top: -2px;
  position: relative;
  display: inline-block;
}
.contact-form__submit {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .body .wpcf7-form-control-wrap {
    width: calc(100% - 135px - 20px - 48px - 20px);
  }
}
@media (max-width: 767px) {
  .body .wpcf7-form-control-wrap {
    width: 100%;
  }
}

.body .wpcf7-form {
  text-align: center;
}

.body .wpcf7 form .wpcf7-response-output {
  margin-top: -2em;
  padding: 20px;
  text-align: center;
  display: inline-block;
  border-radius: 9999px;
}

/*pagination==========================================================================*/
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

@media (min-width: 768px) {
  .navigation.pagination {
    margin-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .navigation.pagination {
    margin-bottom: 100px;
  }
}

.pagination ul.page-numbers {
  display: flex;
  justify-content: center;
}
.pagination ul.page-numbers li {
  margin-right: 10px;
  width: 36px;
  height: 36px;
}
.pagination ul.page-numbers .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  width: 100%;
  height: 100%;
  border: 1px solid #3d3f44;
  border-radius: 5px;
}
.pagination ul.page-numbers .page-numbers.current {
  border-color: #e85920;
  background-color: #e85920;
  color: #fff;
}
.pagination ul.page-numbers .page-numbers img {
  width: 25px;
  height: 16px;
}
.pagination ul.page-numbers .page-numbers.prev {
  border-style: none;
}
.pagination ul.page-numbers .page-numbers.prev img {
  transform: scale(-1, 1);
}
.pagination ul.page-numbers .page-numbers.next {
  border-style: none;
}
.pagination ul.page-numbers a {
  transition: 0.1s opacity;
}
.pagination ul.page-numbers a:hover {
  opacity: 0.5;
}

/*page-top==========================================================================*/
.page-top__floor-map-layout__text {
  text-align: right;
}
@media (min-width: 768px) {
  .page-top__floor-map-layout {
    display: flex;
  }
  .page-top__floor-map-layout__left {
    margin-right: 80px;
    flex: 1;
  }
  .page-top__floor-map-layout__right {
    width: 35%;
  }
}
@media (max-width: 767px) {
  .page-top__floor-map-layout {
    font-size: 12px;
  }
}
.page-top__sec-point {
  position: relative;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .page-top__sec-point {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .page-top__sec-point {
    padding: 60px 0;
  }
}
.page-top__sec-point__bg-text {
  color: #ff7234;
  font-weight: 100;
  transform: rotate(90deg);
  position: absolute;
}
@media (min-width: 768px) {
  .page-top__sec-point__bg-text {
    font-size: 150px;
    top: 103px;
    right: -170px;
  }
}
@media (max-width: 767px) {
  .page-top__sec-point__bg-text {
    font-size: 126px;
    top: 79px;
    right: -141px;
  }
}
.page-top__sec-point__inner {
  position: relative;
}
@media (min-width: 768px) {
  .page-top__point {
    display: flex;
  }
}
.page-top__point__item {
  background-color: #fff;
}
@media (min-width: 768px) {
  .page-top__point__item {
    width: calc(100% - 60px);
  }
  .page-top__point__item:not(:last-child) {
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .page-top__point__item:not(:last-child) {
    margin-bottom: 48px;
  }
}
.page-top__point__img-box {
  position: relative;
}
.page-top__point__point {
  position: absolute;
  color: #fff;
  font-weight: 100;
  left: 4px;
}
@media (min-width: 768px) {
  .page-top__point__point {
    top: -40px;
    left: 0;
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .page-top__point__point {
    top: -44px;
    font-size: 44px;
  }
  .page-top__point__point--even {
    left: auto;
    right: 0;
  }
}
@media (min-width: 768px) {
  .page-top__point__text-box {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .page-top__point__text-box {
    padding: 20px;
  }
}
.page-top__point__title {
  color: #e85920;
  text-align: center;
}
@media (min-width: 768px) {
  .page-top__point__title {
    padding-bottom: 10px;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .page-top__point__title {
    padding-bottom: 10px;
    font-size: 20px;
  }
}
.page-top__point__text {
  text-align: center;
}
@media (max-width: 767px) {
  .page-top__point__text {
    font-size: clamp(12px, 3.4vw, 16px);
  }
}
@media (min-width: 768px) {
  .page-top__sec-map {
    padding: 140px 0 160px;
  }
}
@media (max-width: 767px) {
  .page-top__sec-map {
    padding: 50px 0 100px;
  }
}
@media (min-width: 768px) {
  .page-top__map {
    display: flex;
  }
}
@media (min-width: 768px) {
  .page-top__map__map-box {
    width: 50%;
  }
  .page-top__map__map-box iframe {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .page-top__map__map-box {
    margin: auto;
    width: calc(100% - 20px);
  }
  .page-top__map__map-box iframe {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.page-top__map__text-box {
  background-color: #fff;
}
@media (min-width: 768px) {
  .page-top__map__text-box {
    padding: 60px 50px;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .page-top__map__text-box {
    padding: 24px 32px;
  }
}
.page-top__map__item {
  display: flex;
  align-items: center;
}
.page-top__map__item:not(:last-child) {
  margin-bottom: 20px;
}
.page-top__map__icon {
  margin-right: 20px;
}
@media (min-width: 768px) {
  .page-top__map__icon {
    width: 29px;
  }
}
@media (max-width: 767px) {
  .page-top__map__icon {
    width: 20px;
  }
}
.page-top__map__title {
  font-size: 20px;
  color: #e85920;
}
@media (min-width: 768px) {
  .page-top__map__title {
    margin-bottom: 6px;
  }
}
@media (max-width: 767px) {
  .page-top__map__title {
    margin-bottom: 2px;
  }
}
@media (max-width: 767px) {
  .page-top__map__text {
    font-size: clamp(12px, 3.4vw, 16px);
  }
}

/*page-outline==========================================================================*/
.page-outline__lead {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-outline__lead__item {
    width: calc((100% - 20px) / 3);
  }
  .page-outline__lead__item:nth-child(1), .page-outline__lead__item:nth-child(2), .page-outline__lead__item:nth-child(4) {
    margin-right: 10px;
  }
  .page-outline__lead__item:nth-child(1), .page-outline__lead__item:nth-child(2), .page-outline__lead__item:nth-child(3) {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .page-outline__lead__item {
    width: calc((100% - 5px) / 2);
  }
  .page-outline__lead__item:nth-child(1), .page-outline__lead__item:nth-child(3) {
    margin-right: 5px;
  }
  .page-outline__lead__item:nth-child(1), .page-outline__lead__item:nth-child(2), .page-outline__lead__item:nth-child(3), .page-outline__lead__item:nth-child(4) {
    margin-bottom: 5px;
  }
}
.page-outline__lead__title {
  text-align: center;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 500;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #fff;
  background-color: #e85920;
}
.page-outline__lead__title span {
  display: inline-block;
  transform: rotate(0.05deg);
}
@media (min-width: 768px) {
  .page-outline__lead__title {
    padding: 16px;
    font-size: clamp(16px, 1.2vw, 18px);
  }
}
@media (max-width: 767px) {
  .page-outline__lead__title {
    padding: 12px 6px;
    font-size: clamp(10px, 2.6vw, 18px);
  }
}
.page-outline__lead__title--2 {
  background-color: #628284;
}
.page-outline__lead__title--3 {
  background-color: #245b7a;
}
.page-outline__lead__title--4 {
  background-color: #16a8be;
}
.page-outline__lead__title--5 {
  background-color: #73ae0c;
}
.page-outline__hall-image__layout {
  background-color: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .page-outline__hall-image__layout {
    display: flex;
    top: -40px;
  }
}
@media (max-width: 767px) {
  .page-outline__hall-image__layout {
    padding-bottom: 40px;
    top: -20px;
  }
}
.page-outline__hall-image__hall {
  position: relative;
}
@media (min-width: 768px) {
  .page-outline__hall-image__hall {
    padding-left: 60px;
    width: calc((100% - 30px) / 2);
  }
  .page-outline__hall-image__hall img {
    position: absolute;
    bottom: 100px;
    width: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  .page-outline__hall-image__hall {
    margin-bottom: -40px;
    padding: 10px;
  }
  .page-outline__hall-image__hall img {
    position: relative;
    top: -40px;
  }
}
@media (min-width: 768px) {
  .page-outline__hall-image__text-box {
    margin-left: 30px;
    padding: 60px 60px 60px 0;
    width: calc((100% - 30px) / 2);
  }
}
.page-outline__hall-image__title {
  color: #e85920;
}
@media (min-width: 768px) {
  .page-outline__hall-image__title {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .page-outline__hall-image__title {
    margin-bottom: 20px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .page-outline__hall-image__text {
    margin-bottom: 20px;
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .page-outline__hall-image__text {
    margin-bottom: 20px;
  }
}
.page-outline__hotel {
  position: relative;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .page-outline__hotel {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .page-outline__hotel {
    padding: 40px 0;
  }
}
.page-outline__hotel__bg-text {
  color: #ff7234;
  font-weight: 100;
  transform: rotate(90deg);
  position: absolute;
}
@media (min-width: 768px) {
  .page-outline__hotel__bg-text {
    font-size: 150px;
    top: 120px;
    right: -183px;
  }
}
@media (max-width: 767px) {
  .page-outline__hotel__bg-text {
    font-size: 126px;
    top: 89px;
    right: -152px;
  }
}
.page-outline__hotel__logo {
  margin: 20px auto;
}
@media (min-width: 768px) {
  .page-outline__hotel__logo {
    width: 109px;
  }
}
@media (max-width: 767px) {
  .page-outline__hotel__logo {
    width: 55px;
  }
}
.page-outline__hotel__layout {
  background-color: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .page-outline__hotel__layout {
    display: flex;
    top: -40px;
  }
}
@media (max-width: 767px) {
  .page-outline__hotel__layout {
    padding-bottom: 40px;
    top: -20px;
  }
}
.page-outline__hotel__hotel {
  position: relative;
}
@media (min-width: 768px) {
  .page-outline__hotel__hotel {
    padding-right: 60px;
    width: calc((100% - 30px) / 2);
    order: 2;
  }
  .page-outline__hotel__hotel img {
    position: absolute;
    bottom: 100px;
    width: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  .page-outline__hotel__hotel {
    margin-bottom: -40px;
    padding: 10px;
  }
  .page-outline__hotel__hotel img {
    position: relative;
    top: -20px;
  }
}
@media (min-width: 768px) {
  .page-outline__hotel__text-box {
    margin-right: 30px;
    padding: 60px 0 60px 60px;
    width: calc((100% - 30px) / 2);
    order: 1;
  }
}
.page-outline__hotel__title {
  color: #e85920;
}
@media (min-width: 768px) {
  .page-outline__hotel__title {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .page-outline__hotel__title {
    margin-bottom: 20px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .page-outline__hotel__text {
    margin-bottom: 20px;
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .page-outline__hotel__text {
    margin-bottom: 20px;
  }
}
.page-outline__facility {
  position: relative;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .page-outline__facility {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .page-outline__facility {
    padding: 40px 0;
  }
}
.page-outline__facility__bg-text {
  color: #f0ddd5;
  font-weight: 100;
  transform: rotate(90deg);
  position: absolute;
}
@media (min-width: 768px) {
  .page-outline__facility__bg-text {
    font-size: 150px;
    top: 170px;
    right: -236px;
  }
}
@media (max-width: 767px) {
  .page-outline__facility__bg-text {
    font-size: 126px;
    top: 89px;
    right: -152px;
  }
}
.page-outline__facility__logo {
  margin: 20px auto;
}
@media (min-width: 768px) {
  .page-outline__facility__logo {
    width: 208px;
  }
}
@media (max-width: 767px) {
  .page-outline__facility__logo {
    width:208px;
  }
}
.page-outline__facility__layout {
  background-color: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .page-outline__facility__layout {
    display: flex;
    top: -40px;
  }
}
@media (max-width: 767px) {
  .page-outline__facility__layout {
    padding-bottom: 40px;
    top: -20px;
  }
}
.page-outline__facility__hall {
  position: relative;
}
@media (min-width: 768px) {
  .page-outline__facility__hall {
    padding-left: 60px;
    width: calc((100% - 30px) / 2);
  }
  .page-outline__facility__hall img {
    position: absolute;
    bottom: 12px;
    width: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  .page-outline__facility__hall {
    margin-bottom: -40px;
    padding: 10px;
  }
  .page-outline__facility__hall img {
    position: relative;
    top: -40px;
  }
}
@media (min-width: 768px) {
  .page-outline__facility__text-box {
    margin-left: 30px;
    padding: 60px 60px 60px 0;
    width: calc((100% - 30px) / 2);
  }
}
.page-outline__facility__title {
  color: #e85920;
}
@media (min-width: 768px) {
  .page-outline__facility__title {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .page-outline__facility__title {
    margin-bottom: 20px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .page-outline__facility__text {
    margin-bottom: 20px;
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .page-outline__facility__text {
    margin-bottom: 20px;
  }
}
.page-outline__sec-point {
  position: relative;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .page-outline__point {
    display: flex;
    max-width: 790px;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-outline__point__item {
  background-color: #fff;
  border-bottom: 1px solid #e85920;
}
@media (min-width: 768px) {
  .page-outline__point__item {
    /*width: calc(100% - 60px);*/
    width: calc(100% - 30px);
  }
  .page-outline__point__item:not(:last-child) {
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .page-outline__point__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.page-outline__point__img-box {
  position: relative;
}
@media (min-width: 768px) {
  .page-outline__point__text-box {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .page-outline__point__text-box {
    padding: 20px;
  }
}
.page-outline__point__title {
  color: #e85920;
  text-align: center;
}
@media (min-width: 768px) {
  .page-outline__point__title {
    padding-bottom: 10px;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .page-outline__point__title {
    padding-bottom: 10px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .page-outline__point__text {
    font-size: clamp(12px, 3.4vw, 16px);
  }
}
.page-outline__sec-area-all__text {
  text-align: center;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .page-outline__sec-area-all {
    font-size: clamp(12px, 3.4vw, 16px);
  }
}

/*page-floor-map==========================================================================*/
.page-floor-map__sec-link__text span {
  font-weight: bold;
  line-height: 1.8;
}

.page-floor-map__sec-link__ul {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .page-floor-map__sec-link__li--1, .page-floor-map__sec-link__li--3, .page-floor-map__sec-link__li--4, .page-floor-map__sec-link__li--6 {
    margin-right: 20px;
  }
  .page-floor-map__sec-link__li--1, .page-floor-map__sec-link__li--2, .page-floor-map__sec-link__li--3, .page-floor-map__sec-link__li--4, .page-floor-map__sec-link__li--5 {
    margin-bottom: 20px;
  }
  .page-floor-map__sec-link__li--1, .page-floor-map__sec-link__li--2, .page-floor-map__sec-link__li--6, .page-floor-map__sec-link__li--7, .page-floor-map__sec-link__li--8 {
    width: calc((100% - 20px) / 2);
  }
  .page-floor-map__sec-link__li--3, .page-floor-map__sec-link__li--4, .page-floor-map__sec-link__li--5 {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 767px) {
  .page-floor-map__sec-link__li--1, .page-floor-map__sec-link__li--3, .page-floor-map__sec-link__li--4, .page-floor-map__sec-link__li--6 {
    margin-right: 10px;
  }
  .page-floor-map__sec-link__li--1, .page-floor-map__sec-link__li--2, .page-floor-map__sec-link__li--3, .page-floor-map__sec-link__li--4, .page-floor-map__sec-link__li--5 {
    margin-bottom: 10px;
  }
  .page-floor-map__sec-link__li--1, .page-floor-map__sec-link__li--2, .page-floor-map__sec-link__li--6, .page-floor-map__sec-link__li--7, .page-floor-map__sec-link__li--8 {
    width: calc((100% - 10px) / 2);
  }
  .page-floor-map__sec-link__li--3, .page-floor-map__sec-link__li--4, .page-floor-map__sec-link__li--5 {
    width: calc((100% - 20px) / 3);
  }
}
.page-floor-map__sec-link__li a {
  padding: 12px 0;
  color: #fff;
  border-radius: 8px;
  background-color: #1f0f0a;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .page-floor-map__sec-link__li a {
    font-size: 10px;
  }
}
.page-floor-map__sec-link__li a::after {
  content: "";
  position: absolute;
  display: block;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 12px;
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .page-floor-map__sec-link__li a::after {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 767px) {
  .page-floor-map__sec-link__li a::after {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 767px) {
  .page-floor-map__tax-pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .page-floor-map__tax-sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .page-floor-map__tax-sp {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .page-floor-map__tax-sp p {
    font-size: 12px;
    text-align: right;
  }
  .page-floor-map__tax-sp img {
    width: 126px;
  }
}
@media (min-width: 768px) {
  .page-floor-map__flex-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .page-floor-map__flex-1__item {
    width: calc((100% - 30px) / 3);
  }
}
@media (min-width: 768px) {
  .page-floor-map__flex-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .page-floor-map__flex-2__item {
    width: calc((100% - 30px) / 2);
  }
  .page-floor-map__flex-2__item h4 {
    margin-bottom: 10px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .page-floor-map__flex-2__item h4 {
    margin-bottom: 5px;
    font-size: 10px;
  }
}
.page-floor-map__flex-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .page-floor-map__flex-3__item {
    width: calc((100% - 60px) / 4);
  }
  .page-floor-map__flex-3__item h4 {
    margin-bottom: 10px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .page-floor-map__flex-3__item {
    width: calc((100% - 10px) / 2);
  }
  .page-floor-map__flex-3__item h4 {
    margin-bottom: 5px;
    font-size: 10px;
  }
}
.page-floor-map__list {
  background: #fff;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .page-floor-map__list {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .page-floor-map__list {
    padding: 20px 10px;
  }
}
.page-floor-map__list li {
  padding-left: 1em;
  position: relative;
}
@media (max-width: 767px) {
  .page-floor-map__list li {
    font-size: clamp(12px, 3.1vw, 16px);
  }
}
.page-floor-map__list li::before {
  content: "・";
  display: inline;
  position: absolute;
  top: 0;
  left: 0;
}
.page-floor-map__btn-text {
  text-align: center;
  font-size: 12px;
  color: #93959d;
}

/*page-user-guidance==========================================================================*/
.tab-btn-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #e85920;
}
.tab-btn-box__btn {
  width: calc((100% - 4px) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3d3f44;
  color: #fff;
  position: relative;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
@media (min-width: 768px) {
  .tab-btn-box__btn {
    height: 76px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .tab-btn-box__btn {
    height: 56px;
    font-size: clamp(12px, 3.5vw, 18px);
  }
}
.tab-btn-box__btn--active {
  padding-bottom: 12px;
  background: #fff;
  color: #e85920;
  border: 1px solid #e85920;
  border-bottom-style: none;
}
@media (min-width: 768px) {
  .tab-btn-box__btn--active {
    height: 86px;
  }
}
@media (max-width: 767px) {
  .tab-btn-box__btn--active {
    height: 66px;
  }
}
.tab-btn-box__btn--active::after {
  content: "";
  position: absolute;
  transform: rotate(45deg);
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #e85920;
  border-right: 2px solid #e85920;
}
@media (min-width: 768px) {
  .tab-btn-box__btn--active::after {
    bottom: 16px;
  }
}
@media (max-width: 767px) {
  .tab-btn-box__btn--active::after {
    bottom: 12px;
  }
}

.page-user-guidance__kakomi {
  padding: 2px 1em;
  color: #16a8be;
  border: 1px solid #16a8be;
}
@media (min-width: 768px) {
  .page-user-guidance__kakomi {
    margin-right: 1em;
  }
}
@media (max-width: 767px) {
  .page-user-guidance__kakomi {
    font-size: clamp(12px, 3.1vw, 16px);
  }
}
.page-user-guidance__orange {
  color: #e85920;
}
.page-user-guidance__mini {
  color: #707579;
  font-size: 0.8em;
}
.page-user-guidance__download {
  display: flex;
  background: #fff;
}
@media (min-width: 768px) {
  .page-user-guidance__download {
    flex-wrap: nowrap;
  }
  .page-user-guidance__download__item-1 {
    width: 380px;
  }
  .page-user-guidance__download__item-2 {
    width: 226px;
  }
  .page-user-guidance__download__item-3 {
    width: 239px;
  }
}
@media (max-width: 767px) {
  .page-user-guidance__download {
    flex-wrap: wrap;
  }
  .page-user-guidance__download__item-1 {
    width: 100%;
  }
  .page-user-guidance__download__item-2, .page-user-guidance__download__item-3 {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .page-user-guidance__cancel {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .page-user-guidance__cancel__item {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .page-user-guidance__cancel__item {
    width: 100%;
  }
}
.page-user-guidance__download-2 {
  display: flex;
  background: #fff;
}
@media (min-width: 768px) {
  .page-user-guidance__download-2 {
    flex-wrap: nowrap;
  }
  .page-user-guidance__download-2__item-1 {
    width: 380px;
  }
  .page-user-guidance__download-2__item-2 {
    width: 220px;
  }
}
@media (max-width: 767px) {
  .page-user-guidance__download-2 {
    flex-wrap: wrap;
  }
}

/*page-download==========================================================================*/ /*page-access==========================================================================*/
.page-access__sec-google-map__map-box {
  width: 100%;
  aspect-ratio: 16/9;
}
.page-access__sec-google-map__map-box iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.page-access__sec-google-map__btn {
  margin-top: 10px;
  display: block;
  width: 159px;
}
@media (min-width: 768px) {
  .page-access__sec-kokyo__box-2 {
    display: flex;
    flex-wrap: wrap;
  }
}
.page-access__sec-kokyo__box-2__item {
  background: #fff;
}
@media (min-width: 768px) {
  .page-access__sec-kokyo__box-2__item {
    padding: 32px;
    width: calc((100% - 30px) / 2);
  }
  .page-access__sec-kokyo__box-2__item:nth-child(5) {
    width: 100%;
  }
  .page-access__sec-kokyo__box-2__item:nth-child(1), .page-access__sec-kokyo__box-2__item:nth-child(3) {
    margin-right: 30px;
  }
  .page-access__sec-kokyo__box-2__item:nth-child(1), .page-access__sec-kokyo__box-2__item:nth-child(2), .page-access__sec-kokyo__box-2__item:nth-child(3), .page-access__sec-kokyo__box-2__item:nth-child(4) {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .page-access__sec-kokyo__box-2__item {
    padding: 20px;
  }
}
.page-access__sec-kokyo__box-2__title-box {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.page-access__sec-kokyo__box-2__title-box img {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .page-access__sec-kokyo__box-2__title-box img {
    width: 45px;
  }
}
@media (max-width: 767px) {
  .page-access__sec-kokyo__box-2__title-box img {
    width: 32px;
  }
}
.page-access__sec-kokyo__box-2__title {
  flex: 1;
}
@media (min-width: 768px) {
  .page-access__sec-kokyo__box-2__title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .page-access__sec-kokyo__box-2__title {
    font-size: 16px;
  }
}
.page-access__sec-kokyo__box-2__title--1 {
  color: #e85920;
}
.page-access__sec-kokyo__box-2__title--2 {
  color: #245b7a;
}
.page-access__sec-kokyo__box-2__title--3 {
  color: #16a8be;
}
.page-access__sec-kokyo__box-2__title--4 {
  color: #628284;
}
.page-access__sec-kokyo__box-2__title--5 {
  color: #73ae0c;
}
@media (min-width: 768px) {
  .page-access__sec-kokyo__box-2__text-box {
    padding-left: 55px;
  }
}
.page-access__sec-kokyo__box-2__text-box--green {
  border: 1px solid #73ae0c;
}
@media (min-width: 768px) {
  .page-access__sec-kokyo__box-2__text-box--green {
    padding: 20px 30px;
    width: 60%;
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .page-access__sec-kokyo__box-2__text-box--green {
    padding: 10px 16px;
  }
}
.page-access__sec-kokyo__box-2__text-box--green a {
  color: #73ae0c;
}
.page-access__sec-kokyo__box-2__title-2 {
  margin-bottom: 8px;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .page-access__sec-kokyo__box-2__title-2 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .page-access__sec-kokyo__box-2__title-2 {
    font-size: 15px;
  }
}
.page-access__sec-kokyo__box-2__title-2--1 {
  color: #e85920;
  border-bottom: 1px solid #e85920;
}
.page-access__sec-kokyo__box-2__title-2--2 {
  color: #245b7a;
  border-bottom: 1px solid #245b7a;
}
.page-access__sec-kokyo__box-2__title-2--2 span {
  margin-right: 8px;
  padding: 4px;
  width: 66px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  background-color: #245b7a;
  display: inline-block;
}
.page-access__sec-kokyo__box-2__title-2--2-2 {
  color: #245b7a;
}
.page-access__sec-kokyo__box-2__title-2--3 {
  color: #16a8be;
}
.page-access__sec-kokyo__box-2__title-2--4 {
  color: #628284;
}
.page-access__sec-kokyo__box-2__title-2--5 {
  color: #73ae0c;
  border-bottom: 1px solid #73ae0c;
}
.page-access__sec-kokyo__box-2__text {
  line-height: 1.8;
}
@media (min-width: 768px) {
  .page-access__sec-kokyo__box-2__text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .page-access__sec-kokyo__box-2__text {
    font-size: clamp(14px, 3.1vw, 16px);
  }
}
.page-access__sec-kokyo__box-2__text--mini {
  font-size: 14px;
}
@media (min-width: 768px) {
  .page-access__sec-kokyo__box-2__pc-flex {
    display: flex;
  }
  .page-access__sec-kokyo__box-2__pc-flex-first-item {
    flex: 1;
  }
}
.page-access__sec-car__map {
  margin: 0 auto 0;
  max-width: 960px;
}
@media (min-width: 768px) {
  .page-access__sec-car__box {
    display: flex;
    align-items: flex-end;
  }
}
@media (min-width: 768px) {
  .page-access__sec-car__item-1 {
    margin-right: 30px;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .page-access__sec-car__item-1 {
    width: 100%;
  }
}
.page-access__sec-car__item-2 {
  line-height: 1.8;
}
@media (min-width: 768px) {
  .page-access__sec-car__item-2 {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .page-access__sec-car__item-2 {
    font-size: 14px;
  }
}

/*page-privacy-policy==========================================================================*/
.page-privacy-policy__box {
  background: #fff;
}
@media (min-width: 768px) {
  .page-privacy-policy__box {
    padding: 60px 30px;
  }
}
@media (max-width: 767px) {
  .page-privacy-policy__box {
    padding: 40px 10px;
  }
}
.page-privacy-policy__box__inner {
  background: #f6f6f6;
}
@media (min-width: 768px) {
  .page-privacy-policy__box__inner {
    padding: 30px 30px;
  }
}
@media (max-width: 767px) {
  .page-privacy-policy__box__inner {
    padding: 20px 10px;
  }
}
@media (min-width: 768px) {
  .page-privacy-policy__box__last-box {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .page-privacy-policy__box__last-box {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .page-privacy-policy__box__last-box-2 {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .page-privacy-policy__box__last-box-2 {
    text-align: center;
  }
}

/*page-site-policy==========================================================================*/
.page-site-policy__box {
  background: #fff;
}
@media (min-width: 768px) {
  .page-site-policy__box {
    padding: 60px 30px;
  }
}
@media (max-width: 767px) {
  .page-site-policy__box {
    padding: 40px 10px;
  }
}

/*page-thanks==========================================================================*/
.page-thanks__box {
  background: #fff;
}
@media (min-width: 768px) {
  .page-thanks__box {
    padding: 30px 30px 80px;
  }
}
@media (max-width: 767px) {
  .page-thanks__box {
    padding: 10px 10px 40px;
  }
}
.page-thanks__box__title {
  font-weight: 500;
}
@media (min-width: 768px) {
  .page-thanks__box__title {
    font-size: 24px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .page-thanks__box__title {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .page-thanks__box__text {
    text-align: center;
  }
}
.page-thanks__box__link {
  color: #e85920;
}

/*.single==========================================================================*/
.sec-single {
  background: #fff;
}
@media (min-width: 768px) {
  .sec-single {
    padding: 60px 0 40px;
  }
}
@media (max-width: 767px) {
  .sec-single {
    padding: 20px 0;
  }
}
.sec-single__data time {
  margin-right: 1em;
}
.sec-single__data span {
  margin: 0;
  padding: 2px 16px;
}
.sec-single h1 {
  font-weight: 500;
  border-bottom: 1px solid #93959d;
}
@media (min-width: 768px) {
  .sec-single h1 {
    margin-bottom: 40px;
    padding-bottom: 30px;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .sec-single h1 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
  }
}
.sec-single h2 {
  margin-bottom: 20px;
  padding: 6px 16px;
  font-size: 18px;
  font-weight: 500;
  color: #1f0f0a;
  border-bottom: 1px solid #e85920;
  position: relative;
}
.sec-single h2::after {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background-color: #e85920;
  position: absolute;
  top: 0;
  left: 0;
}
.sec-single h3 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #93959d;
  border-bottom: 1px solid #93959d;
}
@media (min-width: 768px) {
  .sec-single p {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .sec-single p {
    margin-bottom: 20px;
  }
}
.sec-single strong {
  font-weight: 500;
}
.sec-single b {
  font-weight: 500;
  color: #ea145b;
}
.sec-single a {
  font-weight: 500;
  color: #e85920;
  text-decoration: underline;
  transition: 0.1s opacity;
}
.sec-single a:hover {
  opacity: 0.5;
}
.sec-single img {
  width: auto;
}

/*scroll==========================================================================*/
.scroll-x {
  padding-bottom: 16px;
  overflow-x: auto;
}

/*margin==========================================================================*/
.mlr-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .pc-mlr-auto {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .sp-mlr-auto {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .pc-mb-100 {
    margin-bottom: 100px;
  }
  .pc-mb-80 {
    margin-bottom: 80px;
  }
  .pc-mb-60 {
    margin-bottom: 60px;
  }
  .pc-mb-40 {
    margin-bottom: 40px;
  }
  .pc-mb-20 {
    margin-bottom: 20px;
  }
  .pc-mb-10 {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .sp-mb-100 {
    margin-bottom: 100px;
  }
  .sp-mb-80 {
    margin-bottom: 80px;
  }
  .sp-mb-60 {
    margin-bottom: 60px;
  }
  .sp-mb-40 {
    margin-bottom: 40px;
  }
  .sp-mb-20 {
    margin-bottom: 20px;
  }
  .sp-mb-10 {
    margin-bottom: 10px;
  }
  .sp-mb-5 {
    margin-bottom: 5px;
  }
}
/*relative==========================================================================*/
.relative {
  position: relative;
}

/*w==========================================================================*/
.w-1200 {
  width: 1200px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .pc-w-300 {
    width: 300px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .sp-w-260 {
    width: 260px;
    max-width: 100%;
  }
}
/*display==========================================================================*/
.dsp-no {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

/*20231114 追加==========================================================================*/

@media (min-width: 768px){
  .list-1__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .list-1__item {
    width: calc(100% / 3);
  }
  .list-1__link {
    padding: 10px 20px;
    flex-wrap: wrap;
    align-items: flex-start;
    border-bottom: 0px solid #e1e3eb;
  }
  .list-1__img {
    margin-bottom: 16px;
  }
  .list-1__img img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  .list-1__time {
    margin-right: 0;
    width: 100px;
  }
  .list-1__tag {
    margin-right: 0;
    width: calc(100% - 100px);
  }
  .list-1__text {
    margin-top: 6px;
  }
}
@media (max-width: 767px){
  .list-1__link {
    position: relative;
    padding: 11px 11px 11px 108px;
  }
  .list-1__img {
    position: absolute;
    top: 12px;
    left: 6px;
    width: 86px;
  }
  .list-1__img img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  .list-1__text {
    font-size: 12px;
  }
}

/*20240328 追加==========================================================================*/

.footer__group-title {
  text-align: center;
  color: #fff;
  font-weight: 100;
}
.footer__group-link {
  display: flex;
  width: 100%;
  max-width: calc((160px * 2) + 16px);
}
.footer__group-link__item {
  width: calc((100% - 16px) / 2);
}
.footer__group-link__item:not(:last-of-type) {
  margin-right: 16px;
}
.footer__group-link__logo {
  margin: 0 auto 16px;
  display: block;
}
.footer__group-link__name {
  margin: auto;
  width: calc((125 / 160) * 100%);
}

.footer__name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer__name__insta {
  margin-left: 16px;
  display: block;
  width: 24px;
}

@media (min-width: 1050px){
  .footer__group-link {
    margin: 0 auto 30px;
  }
}

@media (max-width: 1049px){
  .footer__group-link {
    margin: 0 auto 20px;
  }
}

@media (min-width: 768px){
  .footer__group-title {
    font-size: 36px;
    letter-spacing: 4px;
  }
}

@media (max-width: 767px){
  .footer__group-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
}

/*20240604 追加==========================================================================*/

@media (min-width: 768px) {
  .page-outline__facility__hall img {
      bottom: 60px;
  }
}

@media (max-width: 767px) {
  .page-outline__facility__hall img {
      top: -50px;
  }
}

@media (min-width: 768px) {
  .youtube-box {
    display: flex;
  }
  .youtube-box__item {
    margin-right: 20px;
    width: calc((100% - (20px * 2)) / 3);
  }
  .youtube-box__item:last-of-type {
    margin-right: 0;
  }
  .youtube-box__item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 767px) {
  .youtube-box__item {
    margin-bottom: 10px;
    width: 100%;
  }
  .youtube-box__item:last-of-type {
    margin-bottom: 0;
  }
  .youtube-box__item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/*20250110 追加==========================================================================*/

@media (min-width: 768px) {
  .list-1__img {
    width: 100%;
    height: 100%;
  }
}

.footer__group-link {
  max-width: calc((160px* 3) + 16px);
}
.footer__group-link__img {
  margin-bottom: 10px;
}
.footer__group-link__name {
  margin: 0;
  text-align: center;
  color: #fff;
  width: 100%;
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer__group-link {
    width: 100%;
    max-width: none;
    display: block;
  }
  .footer__group-link__item {
    width: 100%;
  }
  .footer__group-link__logo {
    margin: 0;
    width: 100%;
    display: flex;
  }
  .footer__group-link__img {
    width: 60%;
    max-width: 160px;
  }
  .footer__group-link__name {
    padding-bottom: 1em;
    padding-left: 1em;
    text-align: left;
    display: flex;
    align-items: center;
  }
}

.sec--black {
  background-color: #000;
}

.page-outline__theater {
  position: relative;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .page-outline__theater {
      padding: 60px 0;
  }
}
.page-outline__theater__logo {
  margin: 20px auto;
}
@media (min-width: 768px) {
  .page-outline__theater__logo {
      width: 300px;
  }
}
.page-outline__theater__title {
  color: #e85920;
}
@media (min-width: 768px) {
  .page-outline__theater__title {
      margin-bottom: 20px;
      font-size: 30px;
  }
}
.page-outline__theater__theater {
  position: relative;
}
@media (min-width: 768px) {
  .page-outline__theater__theater {
      padding-left: 60px;
      width: calc((100% - 30px) / 2);
      order: 1;
  }
}
@media (min-width: 768px) {
  .page-outline__theater__theater img {
      position: absolute;
      bottom: 100px;
      width: calc(100% - 60px);
  }
}
.page-outline__theater__layout {
  background-color: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .page-outline__theater__layout {
      display: flex;
      top: -40px;
  }
}
@media (min-width: 768px) {
  .page-outline__theater__text {
      margin-bottom: 20px;
      line-height: 2;
  }
}
@media (min-width: 768px) {
  .page-outline__theater__text-box {
      margin-left: 30px;
      padding: 60px 60px 60px 0px;
      width: calc((100% - 30px) / 2);
      order: 2;
  }
}
.page-outline__theater__bg-text {
  color: #333;
  font-weight: 100;
  transform: rotate(90deg);
  position: absolute;
}
@media (min-width: 768px) {
  .page-outline__theater__bg-text {
      font-size: 150px;
      top: 195px;
      right: -261px;
  }
}
.page-outline__facility__hall {
  order: 2;
}
@media (min-width: 768px) {
  .page-outline__facility__hall {
      padding-right: 60px;
  }
}
.page-outline__facility__text-box {
  order: 1;
}
@media (min-width: 768px) {
  .page-outline__facility__text-box {
      margin-right: 30px;
      padding: 60px 0px 60px 60px;
  }
}
.page-outline__theater__logo {
  margin: 20px auto;
}
@media (max-width: 767px) {
  .page-outline__theater__logo {
      width: 240px;
  }
}
@media (max-width: 767px) {
  .page-outline__theater {
      padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .page-outline__theater__title {
      margin-bottom: 20px;
      text-align: center;
  }
}
@media (max-width: 767px) {
  .page-outline__theater__text {
      margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .page-outline__theater__layout {
      padding-bottom: 40px;
      top: -20px;
  }
}
@media (max-width: 767px) {
  .page-outline__theater__bg-text {
      font-size: 126px;
      top: 163px;
      right: -220px;
  }
}

/*20250428 追加==========================================================================*/

.wrap--banner {
  margin-bottom: 40px;
  max-width: 760px;
  display: block;
  @media(max-width: 767px){
      margin-bottom: 0;
  }
}

/*20250901 追加==========================================================================*/

.swiper-slide__text {
  text-align: right;
}
.swiper-slide__text__mini {
  font-size: 0.5em;
}