@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:wght@400..700&family=Noto+Serif+JP:wght@200..900&display=swap");
html {
  height: 100%;
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
html.noscroll .p-header {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 1201px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 16px;
    font-size: 1.333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
    font-size: 2.086vw;
  }
}
@media screen and (max-width: 576px) {
  html {
    font-size: 16px;
    font-size: 3.865vw;
  }
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.8125rem;
  }
}

b, strong, .fw-bold {
  font-weight: 700;
}

ul, ol {
  list-style: none;
}

p, ul, ol, table, dl {
  line-height: 1.8;
  letter-spacing: 0.03125rem;
}
@media screen and (max-width: 767px) {
  p, ul, ol, table, dl {
    letter-spacing: 0rem;
    line-height: 1.6;
  }
}

a {
  text-decoration: none;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

.bg-gray {
  background-color: #f0f0f0;
}

.pc-none {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
  .pc-none {
    display: block;
  }
}
i.othersite {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.75rem;
  background: url(../../images/common/icon_othersite.svg);
  background-size: cover;
  margin-bottom: -0.1875rem;
}

/*------------------------
  frame
------------------------*/
.frame {
  left: 0.75rem;
  right: 0.75rem;
  top: 0.75rem;
  bottom: 0.75rem;
  position: fixed;
  border: 0.3125rem solid #000;
  z-index: 800;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .frame {
    left: 0.25rem;
    right: 0.25rem;
    top: 0.25rem;
    bottom: 0.25rem;
    border: 0.1875rem solid #000;
  }
}
.frame .frame_corner_top, .frame .frame_corner_bottom {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.frame .frame_corner_top::before, .frame .frame_corner_top::after, .frame .frame_corner_bottom::before, .frame .frame_corner_bottom::after {
  content: "";
  position: absolute;
  border-style: solid;
}
.frame .frame_corner_top::before {
  top: 0;
  left: 0;
  border-color: #000000 transparent transparent transparent;
  border-width: 16px 16px 0px 0px;
}
@media screen and (max-width: 767px) {
  .frame .frame_corner_top::before {
    border-width: 6px 6px 0px 0px;
  }
}
.frame .frame_corner_top::after {
  top: 0;
  right: 0;
  border-color: transparent #000000 transparent transparent;
  border-width: 0px 16px 16px 0px;
}
@media screen and (max-width: 767px) {
  .frame .frame_corner_top::after {
    border-width: 0px 6px 6px 0px;
  }
}
.frame .frame_corner_bottom::before {
  bottom: 0;
  left: 0;
  border-color: transparent transparent transparent #000000;
  border-width: 16px 0px 0px 16px;
}
@media screen and (max-width: 767px) {
  .frame .frame_corner_bottom::before {
    border-width: 6px 0px 0px 6px;
  }
}
.frame .frame_corner_bottom::after {
  bottom: 0;
  right: 0;
  border-color: transparent transparent #000000 transparent;
  border-width: 0px 0px 16px 16px;
}
@media screen and (max-width: 767px) {
  .frame .frame_corner_bottom::after {
    border-width: 0px 0px 6px 6px;
  }
}

/*------------------------
  button
------------------------*/
.btn_line a {
  position: relative;
  display: inline-block;
  color: #1e2426;
  font-family: "Ibarra Real Nova", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  padding: 0.75rem 3.125rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
  overflow: hidden;
  border: 0.125rem solid #1e2426;
  cursor: pointer;
}
.btn_line a i {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.btn_line a:hover {
  background: #1e2426;
  color: #FFF;
}
.btn_line a:hover i {
  -webkit-filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(337deg) brightness(101%) contrast(103%);
          filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(337deg) brightness(101%) contrast(103%);
}
@media screen and (max-width: 767px) {
  .btn_line a {
    font-size: 0.875rem;
  }
}

/*------------------------
  header
------------------------*/
.p-header {
  width: 100%;
  height: 6.25rem;
  position: fixed;
  top: 0;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 600;
  background-color: #FFF;
  -webkit-box-shadow: 0px 3px 15px rgba(23, 90, 170, 0.2);
          box-shadow: 0px 3px 15px rgba(23, 90, 170, 0.2);
}
.p-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.75rem 7.5rem 0 4.375rem;
  height: 100%;
  position: relative;
}
.p-header .container.ticket_delete {
  padding: 0.75rem 2rem 0 4.375rem;
}
.p-header .p-header__logo {
  width: 13.75rem;
  margin-top: -0.125rem;
}
.p-header .p-header__logo a {
  display: block;
  font-size: 0;
}
.p-header .p-header__logo a img {
  width: 100%;
  height: auto;
}
.p-header .p-header__logo a:hover {
  opacity: 0.75;
}

@media screen and (max-width: 767px) {
  .p-header {
    height: 4.375rem;
  }
  .p-header__logo {
    display: none;
  }
}
/*------------------------
  global nav
------------------------*/
.p-header .p-header-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-header .p-header-menu__item {
  margin-right: 1.25rem;
}
.p-header .p-header-menu__item a {
  padding: 0.75rem;
  color: #1e2426;
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.0625rem;
}
.p-header .p-header-menu__item a:hover {
  color: #18819e;
}

.p-header-menu__item.ticket {
  position: absolute;
  top: 0;
  right: 2.5rem;
  margin-right: 0;
  width: 4.75rem;
  height: 7.375rem;
}
.p-header-menu__item.ticket a {
  background: url(../../images/common/ticket_shape_pc.svg);
  background-size: cover;
  background-position: bottom center;
  padding: 1.75rem 1.125rem 2.25rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  word-break: keep-all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
}
.p-header-menu__item.ticket a .main {
  display: block;
  color: #FFF;
  line-height: 1.625rem;
  font-size: 1.375rem;
  letter-spacing: -0.0625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-header-menu__item.ticket a .sub {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0rem;
  color: #FFF;
  margin-top: 0.25rem;
  font-family: "Ibarra Real Nova", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-header-menu__item.ticket a:hover {
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-header-menu__item.ticket {
    top: 0.9375rem;
    right: 0rem;
    margin-right: -0.0625rem;
    width: auto;
    height: auto;
  }
  .p-header-menu__item.ticket a {
    background: url(../../images/common/ticket_shape_sp.svg);
    background-size: cover;
    background-position: center left;
    padding: 0.375rem 1rem 0.375rem 1.75rem;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
  }
  .p-header-menu__item.ticket a .main {
    line-height: 1.3125rem;
    font-size: 1.25rem;
    letter-spacing: 0rem;
  }
  .p-header-menu__item.ticket a .sub {
    font-size: 0.625rem;
    letter-spacing: 0rem;
    color: #FFF;
    margin-top: 0rem;
  }
  .p-header-menu__item.ticket a:hover {
    padding-top: 0.5rem;
  }
}

/*------------------------
  burger
------------------------*/
.menu-btn {
  position: fixed;
  top: 0.4375rem;
  left: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3.75rem;
  width: 3.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1200;
  padding: 0.625rem;
}
.menu-btn span {
  position: relative;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  width: 100%;
  display: block;
  height: 0.125rem;
  background-color: #1e2426;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  width: 100%;
  position: absolute;
}
.menu-btn span::before {
  top: 0.75rem;
}
.menu-btn span::after {
  bottom: 0.75rem;
}

.frame.sp {
  opacity: 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  z-index: 1200;
}

#menu-btn-check {
  display: none;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: transparent; /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before, #menu-btn-check:checked ~ .menu-btn span::after {
  -webkit-transform-origin: center;
          transform-origin: center;
  background-color: #FFF;
}
#menu-btn-check:checked ~ .menu-btn span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#menu-btn-check:checked ~ .menu-content {
  bottom: 0; /*メニューを画面内へ*/
  overflow: scroll;
}
#menu-btn-check:checked ~ .menu-content .frame.sp {
  border: 0.1875rem solid #FFF;
  opacity: 1;
  z-index: 1200;
}
#menu-btn-check:checked ~ .menu-content .frame.sp .frame_corner_top::before {
  border-color: #FFF transparent transparent transparent;
}
#menu-btn-check:checked ~ .menu-content .frame.sp .frame_corner_top::after {
  border-color: transparent #FFF transparent transparent;
}
#menu-btn-check:checked ~ .menu-content .frame.sp .frame_corner_bottom::before {
  border-color: transparent transparent transparent #FFF;
}
#menu-btn-check:checked ~ .menu-content .frame.sp .frame_corner_bottom::after {
  border-color: transparent transparent #FFF transparent;
}

.menu-content {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  z-index: 1000;
  padding: 2.5rem 2.25rem;
  bottom: 100%;
  left: 0; /*leftの値を変更してメニューを画面外へ*/
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  background-color: #1e2426;
  background-size: auto 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #1e2426;
  background-image: url(../../images/common/bg_shokkou_wh.png);
  background-size: 6.25rem;
  background-attachment: fixed;
}
.menu-content .burger-logo {
  margin: 0 auto 1.5rem;
  width: 18.75rem;
  max-width: 90%;
}
.menu-content .burger-logo a {
  display: block;
}
.menu-content ul {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
  width: 100%;
}
.menu-content ul li {
  margin: 0 auto;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
  font-size: 1.5625rem;
  font-weight: 700;
  color: #FFF;
  padding: 1.25rem 0;
}
.menu-content ul li.ticket {
  margin-top: 1.875rem;
}
.menu-content ul li.ticket a {
  background: url(../../images/common/ticket_shape_sp.svg);
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  padding: 0.875rem 0 0.625rem 0.75rem;
  width: 13.125rem;
  margin: 0 auto;
}
.menu-content ul li.ticket a .main {
  line-height: 1.875rem;
  font-size: 1.875rem;
  letter-spacing: 0rem;
  display: block;
}
.menu-content ul li.ticket a .sub {
  font-size: 0.75rem;
  letter-spacing: 0rem;
  color: #FFF;
  margin-top: 0rem;
  display: block;
}

/*------------------------
  layout
------------------------*/
.main-content {
  margin-top: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .main-content {
    margin-top: 4.375rem;
  }
}

.grid-container {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

.ly-container {
  padding: 10.625rem 0 11.875rem;
}
@media screen and (max-width: 767px) {
  .ly-container {
    padding: 5rem 0 4.375rem;
  }
}

.ly-wrapper {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  padding: 0 4.375rem;
}
@media screen and (max-width: 767px) {
  .ly-wrapper {
    padding: 0 2.25rem;
  }
}

.ly-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .ly-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.col2 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .col2 {
    width: 100%;
  }
}

.col3 {
  width: 33.333%;
}
@media screen and (max-width: 767px) {
  .col3 {
    width: 100%;
  }
}

.col4 {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .col4 {
    width: 50%;
  }
}

/*------------------------
  heading
------------------------*/
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
}

section {
  position: relative;
}

.wrapper:not(.home) section {
  position: relative;
  z-index: 3;
}

.sec-title {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  margin-bottom: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .sec-title {
    margin-bottom: 2.5rem;
  }
}
.sec-title .main {
  margin-bottom: 1rem;
}
.sec-title .main img {
  height: 4.375rem;
  -webkit-filter: invert(9%) sepia(26%) saturate(356%) hue-rotate(148deg) brightness(97%) contrast(89%);
          filter: invert(9%) sepia(26%) saturate(356%) hue-rotate(148deg) brightness(97%) contrast(89%);
}
@media screen and (max-width: 767px) {
  .sec-title .main {
    margin-bottom: 0.625rem;
  }
  .sec-title .main img {
    height: 2.625rem;
  }
}
.sec-title .sub {
  font-family: "Ibarra Real Nova", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #FFF;
  font-size: 1.25rem;
  background-color: #1e2426;
  text-align: center;
  line-height: 1.625rem;
  width: 5.625rem;
}
@media screen and (max-width: 767px) {
  .sec-title .sub {
    font-size: 0.6875rem;
    width: 6.25rem;
    line-height: 1.25rem;
  }
}

.headline_line {
  margin-bottom: 1.25rem;
  width: 100%;
  border-bottom: 0.125rem solid #1e2426;
}
.headline_line span {
  background: #1e2426;
  display: inline-block;
  padding: 0 2rem;
  color: #FFF;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.875rem;
  letter-spacing: 0.09375rem;
}
.headline_line span b {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .headline_line {
    margin-bottom: 0.9375rem;
    border-bottom: 0.125rem solid #1e2426;
  }
  .headline_line span {
    padding: 0 0.875rem;
    font-size: 0.8125rem;
    line-height: 1.5rem;
    letter-spacing: 0.0625rem;
    margin-bottom: -0.0625rem;
  }
  .headline_line span b {
    font-size: 1.25rem;
  }
}

.heading-large {
  font-size: 2.5rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .heading-large {
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
  }
}

.heading-medium {
  font-size: 1.875rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .heading-medium {
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
  }
}

.heading-small {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .heading-small {
    font-size: 1rem;
  }
}

/*------------------------
  mainvisual2
------------------------*/
.mainvisual2 {
  padding-top: 8.75rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .mainvisual2 {
    padding-top: 6.875rem;
    margin-bottom: -2.5rem;
  }
}
.mainvisual2 .sec-title {
  z-index: 2;
  margin-bottom: 0;
}
.mainvisual2::before {
  content: "";
  position: absolute;
  display: block;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 220, 230, 0)), color-stop(35%, rgba(0, 156, 176, 0.53)), to(rgba(0, 76, 102, 0.8)));
  background: linear-gradient(0deg, rgba(0, 220, 230, 0), rgba(0, 156, 176, 0.53) 35%, rgba(0, 76, 102, 0.8));
  opacity: 0.6;
  mix-blend-mode: multiply;
  height: 37.5rem;
  left: 0;
  right: 0;
  top: -6.25rem;
}
.mainvisual2::after {
  content: "";
  position: absolute;
  display: block;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(34%, rgba(255, 255, 255, 0)), to(rgb(255, 255, 255))), url(../../images/common/bg_stone.png);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 34%, rgb(255, 255, 255)), url(../../images/common/bg_stone.png);
  height: 37.5rem;
  left: 0;
  right: 0;
  top: -6.25rem;
}
.mainvisual2 .mainvisual2_chara {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
.mainvisual2 .mainvisual2_chara img {
  position: absolute;
  right: -12.5rem;
}
@media screen and (max-width: 767px) {
  .mainvisual2 .mainvisual2_chara img {
    right: -5rem;
    top: -1rem;
    width: 140%;
    max-width: unset;
  }
}

/*------------------------
  coming soon
------------------------*/
.coming_soon {
  display: none;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: calc(100% - 400px);
  min-height: 31.25rem;
  padding: 3.75rem 0rem;
}
@media screen and (max-width: 767px) {
  .coming_soon {
    height: calc(100% - 233px);
  }
}
.coming_soon .ly-wrapper {
  padding: 0;
}
.coming_soon img {
  width: 50%;
  max-width: 560px;
}
@media screen and (max-width: 767px) {
  .coming_soon img {
    width: 80%;
  }
}
.coming_soon.is-active {
  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;
}
.coming_soon.is-active ~ section {
  display: none;
}

/*------------------------
  footer
------------------------*/
.p-footer {
  width: 100%;
  text-align: center;
  background-color: #1e2426;
  padding: 5rem 0 3.125rem;
  background-image: url(../../images/common/bg_shokkou_bk.png);
  background-repeat: repeat;
  background-size: 6.25rem;
  background-attachment: fixed;
  z-index: 4;
  position: relative;
}
.p-footer .p-footer-menu {
  margin: 0 auto;
}
.p-footer .p-footer-menu__item {
  width: 33.333%;
  margin: 2.8rem auto;
  text-align: center;
}
.p-footer .p-footer-social {
  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;
}
.p-footer .p-footer-social .p-footer-social__item {
  margin: 0 1.5625rem;
}
.p-footer .p-footer-social .p-footer-social__item img {
  width: 2.5rem;
  max-width: 40px;
  height: auto;
}
.p-footer .p-footer-social .p-footer-social__item a {
  display: block;
}
.p-footer .p-footer-social .p-footer-social__item a:hover {
  opacity: 0.8;
}
.p-footer .p-footer-banner {
  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;
  margin: 0 auto 5rem;
  max-width: 56.25rem;
}
.p-footer .p-footer-banner__item {
  width: calc(50% - 1.875rem);
  max-width: 18.75rem;
  margin: 0 0.9375rem;
}
.p-footer .p-footer-banner__item a {
  display: block;
}
.p-footer .p-footer-banner__item a:hover {
  opacity: 0.8;
}
.p-footer .p-footer-copyright {
  color: #FFF;
  text-align: center;
  font-size: 0.625rem;
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .p-footer {
    padding: 3.125rem 0 1rem;
  }
  .p-footer .p-footer-social .p-footer-social__item {
    margin: 0 1.25rem;
  }
  .p-footer .p-footer-social .p-footer-social__item img {
    width: 2.25rem;
  }
  .p-footer .p-footer-nav {
    margin-top: 2.5rem;
  }
  .p-footer .p-footer-nav a {
    font-size: 0.75rem;
  }
  .p-footer .p-footer-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto 3.75rem;
    max-width: 25rem;
  }
  .p-footer .p-footer-banner__item {
    width: 70%;
    margin: 0 auto;
  }
  .p-footer .p-footer-banner__item:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
/*------------------------
  scroll to top
------------------------*/
.page-top {
  position: fixed;
  bottom: 3.125rem;
  display: inline-block;
  right: 0;
  z-index: 10;
  display: none;
  padding: 0.375rem 1.5rem 0.375rem 1rem;
  cursor: pointer;
  background-color: #1e2426;
  background-size: 57px 84.6px;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: -webkit-transform 0.15s;
  transition: -webkit-transform 0.15s;
  transition: transform 0.15s;
  transition: transform 0.15s, -webkit-transform 0.15s;
  color: #FFF;
  font-size: 1.25rem;
  letter-spacing: 0.125rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-top:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .page-top {
    bottom: 1.25rem;
    font-size: 1rem;
    padding: 0.375rem 0.875rem 0.375rem 0.75rem;
  }
}

div [data-remodal-id=modal_recipe] {
  background: none;
}

.slider {
  width: 100%;
}

.n_pad {
  padding-left: 0;
  padding-right: 0;
}

.pad_2 {
  padding-left: 2%;
  padding-right: 2%;
}

.remodal-overlay {
  background: rgba(0, 0, 0, 0.9);
}

.slick-dots li button:before {
  color: #999999;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: #FFA64D;
}

.remodal-wrapper {
  bottom: 0;
  top: 0;
}

.taxin_text {
  font-size: 11.5px;
}

.wwimg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.features .inner .wwimg img {
  width: 50%;
}

.features .inner .chikawa_f_img {
  width: 200px;
  margin: 0 auto;
}

button.btn.btn-success.btn-block.reject {
  background-color: #525252 !important;
  color: #ffffff !important;
}

/*------------------------
  loading
------------------------*/
.loading {
  width: 100vw;
  height: 100%;
  min-height: -webkit-fill-available;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  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;
  pointer-events: none;
  background-color: #000;
  background-size: 100% 130%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.loading-animation {
  width: 40%;
  max-width: 37.5rem;
  height: auto;
  z-index: 9999;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.loading-animation img {
  -webkit-animation-name: loading_logo;
          animation-name: loading_logo;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-timing-function: liner;
          animation-timing-function: liner;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@media screen and (max-width: 767px) {
  .loading-animation {
    width: 70%;
  }
}

@-webkit-keyframes loading_logo {
  0% {
    -webkit-filter: invert(0%) sepia(70%) saturate(1641%) hue-rotate(227deg) brightness(100%) contrast(91%);
            filter: invert(0%) sepia(70%) saturate(1641%) hue-rotate(227deg) brightness(100%) contrast(91%);
  }
  100% {
    -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
            filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
  }
}

@keyframes loading_logo {
  0% {
    -webkit-filter: invert(0%) sepia(70%) saturate(1641%) hue-rotate(227deg) brightness(100%) contrast(91%);
            filter: invert(0%) sepia(70%) saturate(1641%) hue-rotate(227deg) brightness(100%) contrast(91%);
  }
  100% {
    -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
            filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
  }
}
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 10000;
}

.loading.is-active {
  opacity: 0;
}
.loading.is-active::before {
  width: 0%;
}
.loading.is-active .loading-animation {
  opacity: 0;
}

.load_logo {
  width: 100%;
  margin-bottom: 3.125rem;
  display: block;
}

.prog-bar {
  width: 60%;
  height: 5px;
  border: 1.5px solid #1e2426;
  position: relative;
  overflow: hidden;
}
.prog-bar .bar {
  height: 100%;
  background: #1e2426; /*バーカラー*/
  position: absolute;
  -webkit-animation: progress 1.8s normal;
          animation: progress 1.8s normal; /*アニメーションスピード*/
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes animate__fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes animate__fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpSmall {
  -webkit-animation-name: animate__fadeInUpSmall;
  animation-name: animate__fadeInUpSmall;
}

@-webkit-keyframes animate__fadeInLeftSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60px, 0, 0);
    transform: translate3d(-60px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes animate__fadeInLeftSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60px, 0, 0);
    transform: translate3d(-60px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftSmall {
  -webkit-animation-name: animate__fadeInLeftSmall;
  animation-name: animate__fadeInLeftSmall;
}

@-webkit-keyframes slideInLeftUp {
  0% {
    -webkit-transform: translate3d(-100%, 15%, 0);
    transform: translate3d(-100%, -15%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeftUp {
  0% {
    -webkit-transform: translate3d(-100%, 15%, 0);
    transform: translate3d(-100%, 15%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInLeftUp {
  -webkit-animation-name: slideInLeftUp;
  animation-name: slideInLeftUp;
}

@-webkit-keyframes lead {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    visibility: visible;
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes lead {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    visibility: visible;
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.animate__lead {
  -webkit-animation-name: lead;
  animation-name: lead;
}

/*------------------------
  box
------------------------*/
.attention {
  border: 0.125rem solid #c61717;
  padding: 1.875rem 2.625rem;
  background-color: rgba(255, 255, 255, 0.4);
  max-width: 62.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .attention {
    padding: 1.25rem 1.5rem;
  }
}
.attention h3 {
  color: #c61717;
  font-size: 1.875rem;
  letter-spacing: 2;
  margin-bottom: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .attention h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.attention p {
  font-size: 0.875rem;
}
.attention p a {
  color: #18819e;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .attention p {
    font-size: 0.75rem;
  }
}

.wrapper:not(.home) .attention {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .wrapper:not(.home) .attention {
    margin-bottom: 1.875rem;
  }
}

.border_box {
  padding: 3.125rem 5rem;
  border: 0.125rem solid #1e2426;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .border_box {
    padding: 1.5rem 1.25rem;
  }
}
.border_box:not(:last-child) {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .border_box:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
.border_box .border_box_h3 {
  font-size: 2.875rem;
  text-align: center;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .border_box .border_box_h3 {
    font-size: 1.5625rem;
    margin-bottom: 0.5rem;
  }
}
.border_box .border_box_h4 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.25rem;
}
.border_box .border_box_h4:not(:first-child) {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .border_box .border_box_h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  .border_box .border_box_h4:not(:first-child) {
    margin-top: 1.875rem;
  }
}
.border_box .border_box_item {
  padding: 1.875rem 0 0;
}
.border_box .border_box_item:not(:last-child) {
  border-bottom: 1px solid #bcbcbc;
  position: relative;
  width: calc(100% - 4px);
  padding: 1.875rem 0;
}
.border_box .border_box_item:not(:last-child)::before, .border_box .border_box_item:not(:last-child)::after {
  content: "";
  display: block;
  background-image: url(../../images/common/line_flower.svg);
  width: 9px;
  height: 10px;
  bottom: -5.5px;
  position: absolute;
  z-index: 2;
}
.border_box .border_box_item:not(:last-child)::before {
  left: -2px;
}
.border_box .border_box_item:not(:last-child)::after {
  right: -2px;
}
@media screen and (max-width: 767px) {
  .border_box .border_box_item:not(:last-child)::before, .border_box .border_box_item:not(:last-child)::after {
    width: 6px;
    height: 7px;
    bottom: -4px;
  }
  .border_box .border_box_item:not(:last-child)::before {
    left: -1px;
  }
  .border_box .border_box_item:not(:last-child)::after {
    right: -1px;
  }
}
@media screen and (max-width: 767px) {
  .border_box .border_box_item {
    padding: 1rem 0 0;
  }
  .border_box .border_box_item:not(:last-child) {
    border-bottom: 1px solid #bcbcbc;
    position: relative;
    width: calc(100% - 4px);
    padding: 1rem 0;
  }
  .border_box .border_box_item:not(:last-child)::before, .border_box .border_box_item:not(:last-child)::after {
    content: "";
    display: block;
    background-image: url(../../images/common/line_flower.svg);
    width: 9px;
    height: 10px;
    bottom: -5.5px;
    position: absolute;
    z-index: 2;
  }
  .border_box .border_box_item:not(:last-child)::before {
    left: -2px;
  }
  .border_box .border_box_item:not(:last-child)::after {
    right: -2px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .border_box .border_box_item:not(:last-child)::before, .border_box .border_box_item:not(:last-child)::after {
    width: 6px;
    height: 7px;
    bottom: -4px;
  }
  .border_box .border_box_item:not(:last-child)::before {
    left: -1px;
  }
  .border_box .border_box_item:not(:last-child)::after {
    right: -1px;
  }
}
.border_box .border_box_item p span.blue {
  color: #18819e;
}
.border_box .border_box_item p span.text_l {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .border_box .border_box_item p span.text_l {
    font-size: 0.9375rem;
  }
}
.border_box .border_box_item p span.text_m {
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .border_box .border_box_item p span.text_m {
    font-size: 0.75rem;
  }
}
.border_box .border_box_item p span.text_s {
  font-size: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .border_box .border_box_item p span.text_s {
    font-size: 0.625rem;
  }
}
.border_box .border_box_item p span.bold {
  font-weight: 700;
}
.border_box .border_box_item p a {
  color: #18819e;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .border_box .border_box_item p a {
    font-size: 0.8125rem;
  }
}
.border_box .border_box_item p a:hover {
  opacity: 0.5;
}
.border_box .border_box_item p.large {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .border_box .border_box_item p.large {
    font-size: 1.25rem;
  }
}
.border_box .border_box_item p.small {
  font-size: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .border_box .border_box_item p.small {
    font-size: 0.625rem;
  }
}
.border_box .border_box_item .btn_line {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: -0.625rem;
}
@media screen and (max-width: 767px) {
  .border_box .border_box_item .btn_line {
    margin-top: 1.25rem;
  }
}
.border_box .border_box_item > p:not(:last-child), .border_box .border_box_item > div:not(:last-child), .border_box .border_box_item > img:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .border_box .border_box_item > p:not(:last-child), .border_box .border_box_item > div:not(:last-child), .border_box .border_box_item > img:not(:last-child) {
    margin-bottom: 0.75rem;
  }
}

.border_box_point {
  font-size: 1.25rem;
  background-color: #18819e;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  color: #FFF;
  font-weight: 700;
  height: 2.8125rem;
  position: relative;
  text-align: center;
  width: 18.75rem;
}
@media screen and (max-width: 576px) {
  .border_box_point {
    font-size: 0.9375rem;
    width: 12.5rem;
    height: 2.25rem;
  }
}
.border_box_point::before {
  content: "";
  position: absolute;
  left: -1.71875rem;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 1.40625rem solid transparent;
  border-bottom: 1.40625rem solid transparent;
  border-right: 1.75rem solid #18819e;
  border-left: 0;
}
@media screen and (max-width: 576px) {
  .border_box_point::before {
    left: -1.21rem;
    border-top: 1.14375rem solid transparent;
    border-bottom: 1.14375rem solid transparent;
    border-right: 1.25rem solid #18819e;
  }
}
.border_box_point::after {
  content: "";
  position: absolute;
  right: -1.71875rem;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 1.40625rem solid transparent;
  border-bottom: 1.40625rem solid transparent;
  border-left: 1.75rem solid #18819e;
  border-right: 0;
}
@media screen and (max-width: 576px) {
  .border_box_point::after {
    right: -1.21rem;
    border-top: 1.14375rem solid transparent;
    border-bottom: 1.14375rem solid transparent;
    border-left: 1.25rem solid #18819e;
  }
}
.border_box_point p {
  line-height: 2.8125rem;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 576px) {
  .border_box_point p {
    line-height: 2.25rem;
  }
}
.border_box_point .baloon_tail {
  position: absolute;
  bottom: -16px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 30px solid #18819e;
  border-bottom: 0;
  left: 64%;
  -webkit-transform: translateX(-60%) rotate(27deg);
          transform: translateX(-60%) rotate(27deg);
}

.border_box_table {
  border-top: 0.0625rem solid #1e2426;
  border-left: 0.0625rem solid #1e2426;
}
.border_box_table .table_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  width: 100%;
}
.border_box_table .table_row p {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 100;
      -ms-flex-positive: 100;
          flex-grow: 100;
  font-size: 0.875rem;
  padding: 0.75rem 0.5rem;
  border-right: 0.0625rem solid #1e2426;
  border-bottom: 0.0625rem solid #1e2426;
}
.border_box_table .table_row p a {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .border_box_table .table_row p {
    font-size: 0.75rem;
    padding: 0;
  }
  .border_box_table .table_row p a {
    font-size: 0.6875rem;
  }
}
.border_box_table .table_row p.front {
  background-color: #d3e7ed;
  font-size: 0.75rem;
  font-weight: 700;
  width: 15%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .border_box_table .table_row p.front {
    font-size: 0.6875rem;
  }
}
.border_box_table .table_row.table_head p {
  background-color: #464d4f;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .border_box_table .table_row.table_head p {
    font-size: 0.625rem;
    padding: 0;
    text-align: center;
    line-height: 1.2;
    width: 7.8125rem;
  }
}

.border_box_table.column_2 p {
  width: 50%;
}
.border_box_table.column_4 p {
  width: 25%;
}

.table_inner:not(:first-child) .table_head {
  display: none;
}

@media screen and (max-width: 767px) {
  .border_box_table.ticket_schedule {
    border: none;
  }
  .border_box_table.ticket_schedule .table_inner {
    border-top: 0.0625rem solid #1e2426;
    border-left: 0.0625rem solid #1e2426;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .border_box_table.ticket_schedule .table_inner:not(:last-child) {
    margin-bottom: 0.75rem;
  }
  .border_box_table.ticket_schedule .table_inner .table_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .border_box_table.ticket_schedule .table_inner .table_row p {
    width: 100%;
    height: 5rem;
  }
  .border_box_table.ticket_schedule .table_inner .table_row.table_head {
    width: 4.375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .border_box_table.ticket_price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .border_box_table.ticket_price .table_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .border_box_table.ticket_price .table_row p {
    height: 2.1875rem;
    width: 100%;
  }
  .border_box_table.ticket_price .table_row.table_head {
    width: 4.375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .table_inner:not(:first-child) .table_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.border_box_tokuten {
  padding: 2.5rem;
  background: #1e2426;
}
@media screen and (max-width: 767px) {
  .border_box_tokuten {
    padding: 1.25rem 1rem;
  }
}
.border_box_tokuten .tokten_head {
  color: #18819e;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.875rem;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .border_box_tokuten .tokten_head {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 576px) {
  .border_box_tokuten .tokten_head {
    font-size: 0.9375rem;
    text-align: left;
  }
}
.border_box_tokuten .tokuten_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 100;
      -ms-flex-positive: 100;
          flex-grow: 100;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.border_box_tokuten img {
  max-height: 31.25rem;
  max-width: 100%;
  margin-bottom: 0.75rem;
}
.border_box_tokuten .tokuten_description {
  color: #FFF;
}
.border_box_tokuten .tokuten_description .tokuten_title {
  font-size: 1.75rem;
  margin-bottom: 1.875rem;
  line-height: 1.5;
  font-weight: 900;
}
.border_box_tokuten .tokuten_description .tokuten_title_sub {
  font-size: 0.875rem;
  display: block;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .border_box_tokuten .tokuten_description .tokuten_title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  .border_box_tokuten .tokuten_description .tokuten_title_sub {
    font-size: 0.625rem;
  }
}
.border_box_tokuten .tokuten_description .tokuten_text {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .border_box_tokuten .tokuten_description .tokuten_text {
    margin-bottom: 0.75rem;
  }
}
.border_box_tokuten .tokuten_description .tokuten_memo {
  display: block;
  font-size: 0.625rem;
}
.border_box_tokuten .tokuten_description .tokuten_info {
  border: 0.0625rem solid #FFF;
  font-size: 0.6875rem;
  padding: 0.75rem 1.25rem;
}
.border_box_tokuten .tokuten_description .tokuten_info .bold {
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .border_box_tokuten .tokuten_description .tokuten_info {
    padding: 0.5rem 0.75rem;
    font-size: 0.625rem;
  }
  .border_box_tokuten .tokuten_description .tokuten_info .bold {
    font-size: 0.6875rem;
    display: block;
    margin-top: 0.375rem;
  }
}
.border_box_tokuten .tokuten_description .credit {
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .border_box_tokuten .tokuten_description .credit {
    font-size: 0.625rem;
    margin-top: 0.25rem;
  }
}

.border_box_calendar .calendar_wrap {
  margin-top: -0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 0.0625rem solid #1e2426;
  border-left: 0.0625rem solid #1e2426;
}
.border_box_calendar .calendar_cell {
  width: 14.2857142857%;
  border-right: 0.0625rem solid #1e2426;
  border-bottom: 0.0625rem solid #1e2426;
  background-color: #eaeaea;
  height: 4.375rem;
  font-size: 0.875rem;
  padding: 0.125rem 0.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .border_box_calendar .calendar_cell {
    height: 2.625rem;
    font-size: 0.5625rem;
    padding: 0.0625rem 0.125rem;
  }
}
.border_box_calendar .calendar_cell.week {
  height: auto;
  text-align: center;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 700;
  padding: 0;
  background-color: #FFF;
}
.border_box_calendar .calendar_cell.week:nth-child(1) {
  color: #c61717;
}
.border_box_calendar .calendar_cell.week:nth-child(7) {
  color: #18819e;
}
@media screen and (max-width: 767px) {
  .border_box_calendar .calendar_cell.week {
    font-size: 0.6875rem;
    line-height: 1.25rem;
  }
}
.border_box_calendar .calendar_cell.outside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: -webkit-gradient(linear, right bottom, left top, from(transparent), color-stop(49.6%, transparent), color-stop(49.5%, #1e2426), color-stop(50.5%, #1e2426), color-stop(50.5%, transparent), to(transparent));
  background-image: linear-gradient(to top left, transparent, transparent 49.6%, #1e2426 49.5%, #1e2426 50.5%, transparent 50.5%, transparent);
}
.border_box_calendar .calendar_cell.target {
  background: #FFF;
}
.border_box_calendar .calendar_cell.target::before {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 0.1875rem solid #c61717;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .border_box_calendar .calendar_cell.target::before {
    width: 1.4375rem;
    height: 1.4375rem;
    border: 0.125rem solid #c61717;
  }
}
.border_box_calendar .target_date {
  font-size: 14px;
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.border_box_calendar .target_date .target_date_mark {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.0625rem solid #1e2426;
  margin-right: 6px;
  position: relative;
}
.border_box_calendar .target_date .target_date_mark::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  border: 0.125rem solid #c61717;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}