@charset "UTF-8";
body {
  margin: 0;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3vw;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin-block: 0;
  font-size: 1em;
}

p {
  margin-block-start: 0em;
  margin-block-end: 0em;
}

html, body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 7.5em;
}
@media screen and (max-width: 768px) {
  html, body {
    scroll-padding-top: 22vw;
  }
}

body {
  color: #1E1E1E;
}

ul {
  list-style: none;
}

:where(th, td) {
  border: 1px solid;
  padding: 0;
}

:where(audio, iframe, img, svg, video) {
  max-block-size: 100%;
  max-inline-size: fit-content;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pc-block {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .pc-block {
    display: none !important;
  }
}

.sp-block {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-block {
    display: block !important;
  }
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(0.4em, -0.9em) rotate(2deg);
  }
  50% {
    transform: translate(0, -1.4em) rotate(-1.5deg);
  }
  75% {
    transform: translate(-0.4em, -0.7em) rotate(-2.5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
.is-float {
  animation: float 5.5s ease-in-out infinite;
  will-change: transform;
}
.is-float--b {
  animation-duration: 6.5s;
  animation-delay: -1.2s;
}
.is-float--c {
  animation-duration: 5s;
  animation-delay: -2.4s;
}
.is-float--d {
  animation-duration: 6s;
  animation-delay: -0.8s;
}
.is-float--e {
  animation-duration: 7s;
  animation-delay: -3.1s;
}
.is-float--f {
  animation-duration: 4.5s;
  animation-delay: -1.8s;
}

@media (prefers-reduced-motion: reduce) {
  .is-float {
    animation: none;
  }
}
.wrap01 {
  max-width: 1000px;
  width: 90.6666%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .wrap01 {
    max-width: inherit;
    width: 90.6666%;
  }
}

.wrap02 {
  max-width: 840px;
  width: 90.6666%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .wrap02 {
    max-width: inherit;
    width: 90.6666%;
  }
}

.wrap03 {
  max-width: 800px;
  width: 90.6666%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .wrap03 {
    max-width: inherit;
    width: 90.66666%;
  }
}

.wrap04 {
  max-width: 980px;
  width: 90.66666%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .wrap04 {
    max-width: inherit;
    width: 100%;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 6.5em;
}
.header__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25em;
  background-color: #177b93;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .header__line {
    display: none;
  }
}
.header__logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 20em;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 20em;
    top: 0.25em;
  }
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header__nav {
  position: absolute;
  top: 2.5em;
  right: 1.875em;
  z-index: 1;
  display: flex;
  align-items: center;
  column-gap: 0.625em;
}
@media screen and (max-width: 768px) {
  .header__nav {
    top: 4.8vw;
    right: 5.33vw;
  }
}
.header__btn {
  display: block;
  width: 11em;
  line-height: 0;
  transition: filter 0.3s ease;
}
.header__btn img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .header__btn {
    display: none;
  }
}
@media screen and (any-hover: hover) {
  .header__btn:hover {
    filter: brightness(0.95);
  }
}
.header__menu {
  appearance: none;
  margin-left: 1.0625em;
  padding: 0;
  width: 6.875em;
  border: none;
  background-color: transparent;
  line-height: 0;
  cursor: pointer;
  transition: filter 0.3s ease;
}
.header__menu img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .header__menu {
    margin-left: 0;
    width: 14.67vw;
  }
}
@media screen and (any-hover: hover) {
  .header__menu:hover {
    filter: brightness(0.95);
  }
}

.global-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(0, 64, 151, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.global-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.global-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 38.75em;
  max-width: 100%;
  height: 100%;
  padding: 3.75em 2.875em 2.5em;
  background-color: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
@media screen and (max-width: 768px) {
  .global-menu__panel {
    width: 100%;
    padding: 16vw 8vw 6vw;
  }
}
.global-menu.is-open .global-menu__panel {
  transform: translateX(0);
}
.global-menu__logo {
  display: none;
  position: absolute;
  top: 7.2vw;
  left: 8.53vw;
  z-index: 2;
  width: 43.47vw;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .global-menu__logo {
    display: block;
  }
}
.global-menu__logo img {
  width: 100%;
  height: auto;
}
.global-menu__close {
  position: absolute;
  top: 2.5em;
  right: 2.875em;
  z-index: 2;
  width: 6.875em;
  appearance: none;
  padding: 0;
  border: none;
  background-color: transparent;
  line-height: 0;
  cursor: pointer;
  transition: filter 0.3s ease;
}
.global-menu__close img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .global-menu__close {
    top: 4.8vw;
    right: 5.33vw;
    width: 14.67vw;
  }
}
@media screen and (any-hover: hover) {
  .global-menu__close:hover {
    filter: brightness(0.95);
  }
}
.global-menu__actions {
  order: 0;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1em;
  margin-bottom: 1.875em;
}
@media screen and (max-width: 768px) {
  .global-menu__actions {
    order: 9;
    flex-direction: column;
    align-items: center;
    gap: 4.27vw;
    margin-top: 8vw;
    margin-bottom: 0;
  }
}
.global-menu__btn {
  display: block;
  width: 11em;
  line-height: 0;
  transition: filter 0.3s ease;
}
.global-menu__btn img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .global-menu__btn {
    width: 58.67vw;
  }
}
@media screen and (any-hover: hover) {
  .global-menu__btn:hover {
    filter: brightness(0.95);
  }
}
.global-menu__nav {
  order: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.global-menu__list, .global-menu__sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-menu__sublist {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75em;
}
@media screen and (max-width: 768px) {
  .global-menu__sublist {
    display: block;
    margin-top: 0;
  }
}
.global-menu__link {
  display: flex;
  align-items: center;
  gap: 0.375em;
  padding: 0.75em 0 0.5em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.125em;
  line-height: 1.6667;
  letter-spacing: 0.02em;
  color: #177b93;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .global-menu__link {
    gap: 1.6vw;
    padding: 2.67vw 0;
    font-size: 4vw;
    line-height: 1.6;
  }
}
@media screen and (any-hover: hover) {
  .global-menu__link:hover {
    opacity: 0.7;
  }
}
.global-menu__link--sub {
  color: #2d2d2d;
}
.global-menu__list .global-menu__link {
  border-bottom: 1px solid rgba(45, 45, 45, 0.2);
}
.global-menu__sublist .global-menu__item {
  border-bottom: 1px solid rgba(45, 45, 45, 0.2);
  width: 30%;
}
@media screen and (max-width: 768px) {
  .global-menu__sublist .global-menu__item {
    width: 100%;
  }
}
.global-menu__num {
  flex-shrink: 0;
  width: 1.875em;
  height: auto;
}
@media screen and (max-width: 768px) {
  .global-menu__num {
    width: 7.47vw;
  }
}
.global-menu__label {
  display: inline-block;
}
.global-menu__illust {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  height: auto;
}
.global-menu__illust--01 {
  top: 10.75em;
  left: 28.94em;
  width: 5.06em;
}
.global-menu__illust--02 {
  top: 17.31em;
  left: 22.25em;
  width: 4.56em;
}
.global-menu__illust--03 {
  top: 21.69em;
  left: 25.5em;
  width: 6.375em;
}
@media screen and (max-width: 768px) {
  .global-menu__illust--01 {
    top: 37vw;
    left: 69vw;
    width: 21.6vw;
  }
  .global-menu__illust--02 {
    top: 65.9vw;
    left: 74.9vw;
    width: 19.33vw;
  }
  .global-menu__illust--03 {
    top: 92.4vw;
    left: 54.13vw;
    width: 27.3vw;
  }
}

body.is-menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .header__btn,
  .header__menu,
  .global-menu,
  .global-menu__panel,
  .global-menu__close,
  .global-menu__btn,
  .global-menu__link {
    transition: none;
  }
}
.mv {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130vw;
  margin-inline: auto;
  margin-top: 1.25em;
}
@media screen and (max-width: 768px) {
  .mv {
    width: 100%;
    left: 0%;
    transform: translateX(0%);
    margin-top: 0;
  }
}
.mv h1 {
  margin: 0;
  line-height: 0;
}
.mv_bg {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/top/mv_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: auto;
  width: 100%;
  height: 62.5em;
}
@media screen and (max-width: 768px) {
  .mv_bg {
    background-image: url(../img/top/mv_bg_sp.png);
    height: 133.33333vw;
  }
}
.mv_content {
  max-width: 1200px;
  width: 100%;
  position: relative;
  height: 75em;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .mv_content {
    height: 133.33333vw;
  }
}
.mv_header {
  position: absolute;
  top: 53%;
  right: -5%;
  width: 20em;
  height: 5.75em;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .mv_header {
    top: 53%;
    right: inherit;
    left: 19%;
    width: 38.66666vw;
    height: 10.13333vw;
  }
}
.mv_place {
  position: absolute;
  top: 94%;
  left: 46%;
  transform: translate(-50%, -50%);
  width: 16.6875em;
  height: 15.625em;
  z-index: 3;
}
@media screen and (max-width: 1250px) {
  .mv_place {
    top: 93%;
    left: 43vw;
  }
}
@media screen and (max-width: 1000px) {
  .mv_place {
    top: 94%;
    left: 40%;
  }
}
@media screen and (max-width: 768px) {
  .mv_place {
    top: 318vw;
    left: 54%;
    width: 86.93333vw;
    height: 192vw;
  }
}
.mv_dinosaur {
  position: absolute;
  top: 27%;
  left: 29%;
  transform: translate(-50%, -50%);
  width: 51.25em;
  height: 38.375em;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .mv_dinosaur {
    left: 22%;
  }
}
@media screen and (max-width: 768px) {
  .mv_dinosaur {
    top: 15%;
    top: 40%;
    left: 50%;
    width: 100%;
    height: auto;
  }
}
.mv_treat {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 920px;
  height: 57.5em;
  background-image: url(../img/top/mv_bg_02.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .mv_treat {
    background-image: url(../img/top/mv_bg_02_sp.png);
    width: 100%;
    height: 71.266667vw;
    left: 0%;
    bottom: 0%;
  }
}
.mv_content_02 {
  position: absolute;
  top: 70%;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 19.6875em;
}
@media screen and (max-width: 768px) {
  .mv_content_02 {
    background: #006F3A;
    height: 186.6666666667vw;
    top: 226vw;
    top: 167%;
  }
}
.mv_content_02_left {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .mv_content_02_left {
    top: 72vw;
  }
}
.mv_content_02_header {
  position: relative;
  top: 0;
  left: 0;
  width: 53.125em;
  height: 12.5em;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .mv_content_02_header {
    width: 63vw;
    height: 9.5em;
  }
}
@media screen and (max-width: 768px) {
  .mv_content_02_header {
    width: 100%;
    height: auto;
  }
}
.mv_content_02_btn {
  position: absolute;
  top: -11em;
  right: clamp(60px, 45.833vw - 490px, 390px);
  width: 18.75em;
  height: 18.75em;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mv_content_02_btn {
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 90.66666vw;
    height: 24vw;
  }
}
.mv_content_02_list {
  width: 37em;
  margin-top: 1em;
  margin-left: 10.75em;
  padding-left: 0;
  padding-inline-start: 0px;
}
@media screen and (max-width: 1200px) {
  .mv_content_02_list {
    margin-left: 11vw;
    width: 51vw;
  }
}
@media screen and (max-width: 768px) {
  .mv_content_02_list {
    width: 90.666666%;
    margin-inline: auto;
    font-size: 2.9333vw;
    color: #fff;
    font-feature-settings: "palt" 1;
  }
}
.mv_content_02_list li {
  font-size: 1.125em;
  letter-spacing: 0.01em;
  font-feature-settings: "palt" 1;
  font-weight: 500;
  color: #fff;
  padding-left: 1em;
  text-indent: -1em;
}

.section_title {
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  padding-top: 1.5em;
}
@media screen and (max-width: 768px) {
  .section_title {
    padding-top: 4.5vw;
  }
}
.section_title p {
  position: relative;
  isolation: isolate;
  display: inline-block;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.66667;
  letter-spacing: 0.02em;
  color: #177b93;
}
.section_title p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.58333em;
  height: 3.33333em;
  background-image: url(../img/top/bg_wakusei.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.section_title h2 {
  margin-top: 0.6875em;
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  font-size: 3em;
  line-height: 1.41667;
  letter-spacing: 0.02em;
  color: #177b93;
}

.outline {
  padding-top: 5em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .outline {
    padding-top: 13.3333vw;
  }
}
.outline .wrap02 {
  position: relative;
}
.outline_illust {
  position: absolute;
  top: 3.5em;
  right: 17.5%;
  width: 18.75em;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 1250px) {
  .outline_illust {
    right: 8%;
  }
}
@media screen and (max-width: 768px) {
  .outline_illust {
    width: 30vw;
    top: 20vw;
    right: 0%;
  }
}
.outline_illust img {
  display: block;
  width: 100%;
  height: auto;
}

.outline_list {
  margin-block: 1.875em 0;
  border-top: 1px solid rgba(106, 114, 130, 0.5);
}
.outline_list > div {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  padding-block: 1.5em 2em;
  border-bottom: 1px solid rgba(106, 114, 130, 0.5);
}
@media screen and (max-width: 768px) {
  .outline_list > div {
    gap: 2.13333vw;
    padding-block: 4vw 5.3333vw;
    align-items: center;
  }
}
.outline_list dt {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.33333em;
  min-height: 1.66667em;
  background-color: #177b93;
  color: #fff;
  border-radius: 0.44444em;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.66667;
  letter-spacing: -0.02em;
  white-space: nowrap;
  font-feature-settings: "palt" 1;
}
.outline_list dd {
  flex: 1;
  margin-inline-start: 0;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.5;
  color: #2d2d2d;
}
.outline_list dd a {
  color: #177b93;
  text-decoration: underline;
  text-underline-position: from-font;
}
.outline_list .outline_note {
  font-size: 0.9em;
  font-weight: 400;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .outline_list .outline_note {
    letter-spacing: -0.04em;
  }
}

.content_01,
.content_02,
.content_03,
.content_04,
.content_05,
.content_06 {
  position: relative;
  z-index: 1;
  padding-block: 13.4375vw 6.75em;
}
@media screen and (max-width: 768px) {
  .content_01,
  .content_02,
  .content_03,
  .content_04,
  .content_05,
  .content_06 {
    padding-block: 8.4375em 6.75em;
  }
}

.content_01 {
  margin-top: 5em;
  background-color: #F9F5E0;
}
.content_01_bg_upper {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .content_01_bg_upper {
    width: 170%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .content_01 {
    margin-top: 13.3333vw;
  }
}
.content_01_img_left {
  position: absolute;
  top: 37%;
  left: -14%;
  width: 22em;
  height: 10.75em;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .content_01_img_left {
    top: -25%;
    left: -6%;
    width: 12em;
    height: 5.75em;
  }
}
.content_01_img_right {
  position: absolute;
  top: -30%;
  right: -2%;
  width: 13.4375em;
  height: 26.3125em;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .content_01_img_right {
    top: -44%;
    right: -2%;
    width: 8.4375em;
    height: 15.3125em;
  }
}
.content_01 .content_h2p_img {
  margin-top: 1.875em;
}

.content_02 {
  z-index: 2;
}
.content_02_bg_upper {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .content_02_bg_upper {
    width: 170%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.content_02_left {
  position: absolute;
  top: 33%;
  left: -17%;
  width: 14.375em;
  object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .content_02_left {
    left: -4.5%;
  }
}
@media screen and (max-width: 768px) {
  .content_02_left {
    top: -36%;
    left: -3%;
    width: 7.375em;
  }
}
.content_02_right {
  position: absolute;
  top: 34%;
  right: -11%;
  width: 17.0625em;
  object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .content_02_right {
    right: -2.5%;
  }
}
@media screen and (max-width: 768px) {
  .content_02_right {
    top: -11%;
    right: -8%;
    width: 9.0625em;
  }
}
.content_02_image {
  margin-top: 2.5em;
}

.content_03 {
  background-color: #F9F5E0;
  z-index: 3;
  padding-block: 13.4375vw 6.75em;
}
@media screen and (max-width: 768px) {
  .content_03 {
    padding-block: 8.4375em 6.75em;
  }
}
.content_03_bg_upper {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .content_03_bg_upper {
    width: 170%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.content_03_left {
  position: absolute;
  top: 3%;
  left: -5%;
  width: 16.125em;
}
@media screen and (max-width: 768px) {
  .content_03_left {
    top: -36%;
    left: 0%;
    width: 7.125em;
  }
}
.content_03_right {
  position: absolute;
  top: 10%;
  right: -3%;
  width: 20.625em;
}
@media screen and (max-width: 768px) {
  .content_03_right {
    top: -30%;
    right: -4%;
    width: 7.625em;
  }
}
.content_03_img_left {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 22em;
  height: 10.75em;
  object-fit: cover;
}
.content_03_img_right {
  position: absolute;
  top: -5%;
  right: 13%;
  width: 13.4375em;
  height: 26.3125em;
  object-fit: cover;
}
.content_03_image {
  margin-top: 2.5em;
}

.content_04 {
  z-index: 4;
  padding-block: 17.4375vw 0;
}
@media screen and (max-width: 768px) {
  .content_04 {
    padding-block: 9.4375em 0;
  }
}
.content_04_bg_upper {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .content_04_bg_upper {
    width: 170%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.content_04_left {
  position: absolute;
  top: 18%;
  left: -5%;
  width: 14.375em;
}
@media screen and (max-width: 768px) {
  .content_04_left {
    top: -20%;
    left: -2%;
    width: 8.375em;
  }
}
.content_04_right {
  position: absolute;
  top: 18%;
  right: 0%;
  width: 12.5em;
}
@media screen and (max-width: 768px) {
  .content_04_right {
    top: -9%;
    right: 0%;
    width: 7.5em;
  }
}
.content_04_image {
  margin-top: 2.5em;
}

.content_05 {
  background-color: #F9F5E0;
  z-index: 5;
  padding-block: 17.4375vw 2.75em;
}
@media screen and (max-width: 768px) {
  .content_05 {
    padding-block: 7.4375em 2.75em;
  }
}
.content_05_bg_upper {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .content_05_bg_upper {
    width: 170%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.content_05_right {
  position: absolute;
  top: 0%;
  right: -5%;
  width: 15.25em;
}
@media screen and (max-width: 768px) {
  .content_05_right {
    position: absolute;
    top: -10%;
    right: -4%;
    width: 7.25em;
  }
}
.content_05_image {
  margin-top: 2.5em;
}
.content_05 .list_item_title {
  margin-top: -6.5%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .content_05 .list_item_title {
    margin-top: -1.5%;
    z-index: 3;
  }
}
.content_05 .list_item_title_illust {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 6.75em;
  height: 5.75em;
  object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .content_05 .list_item_title_illust {
    right: -1.5%;
  }
}
@media screen and (max-width: 768px) {
  .content_05 .list_item_title_illust {
    bottom: 40%;
    right: 5%;
    z-index: 1;
  }
}

.content_06 {
  z-index: 6;
  padding-block: 17.4375vw 6.75em;
}
@media screen and (max-width: 768px) {
  .content_06 {
    padding-block: 10.4375em 6.75em;
  }
}
.content_06_bg_upper {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .content_06_bg_upper {
    width: 170%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.content_06_right {
  position: absolute;
  top: 3%;
  right: -10%;
  width: 22em;
}
@media screen and (max-width: 1250px) {
  .content_06_right {
    right: -4%;
  }
}
@media screen and (max-width: 1000px) {
  .content_06_right {
    right: -2.5%;
  }
}
@media screen and (max-width: 768px) {
  .content_06_right {
    right: -3%;
    top: -53%;
    width: 8.5em;
  }
}
.content_06_image {
  margin-top: 2.5em;
}

.content_h2p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875em;
  text-align: center;
  position: relative;
}
.content_h2p_title {
  padding-block: 1.5em;
}
.content_h2p_title span {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-inline: 0.20833em;
  font-family: "RocknRoll One", sans-serif;
  font-size: 3em;
  font-weight: 400;
  line-height: 1.25;
  color: #004097;
  background-image: linear-gradient(180deg, transparent 33.333%, rgba(255, 243, 40, 0.8) 33.333%, rgba(255, 243, 40, 0.8) 66.666%, transparent 66.666%);
}
@media screen and (max-width: 768px) {
  .content_h2p_title span {
    font-size: 7.199999vw;
  }
}
.content_h2p_text {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #2d2d2d;
}
@media screen and (max-width: 768px) {
  .content_h2p_text {
    text-align: center;
  }
}

.content_02 .content_h2p_title span {
  color: rgb(255, 233, 39);
  background-image: linear-gradient(180deg, transparent 33.333%, #004097 33.333%, #004097 66.666%, transparent 66.666%);
}

.content_02 .content_h2p_text {
  color: #fff;
}

.content_num {
  text-align: center;
  font-size: 4.75em;
  line-height: 2;
  font-weight: 700;
  color: #fff;
  text-shadow: 4px 4px 0 rgba(23, 51, 90, 0.6);
  font-family: "Montserrat Alternates", sans-serif;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .content_num {
    font-size: 12vw;
  }
}
.content_num::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.184210526em;
  height: 3.184210526em;
  background: url(../img/top/star_icon.svg) no-repeat center center;
}
@media screen and (max-width: 768px) {
  .content_num::before {
    width: 29vw;
    height: 24vw;
    background: url(../img/top/star_icon.svg) no-repeat center center/cover;
  }
}

.content_02 {
  background-image: url(../img/top/content_02_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.content_02 .content_num::before {
  background: url(../img/top/star_w_icon.svg) no-repeat center center;
}
@media screen and (max-width: 768px) {
  .content_02 .content_num::before {
    background: url(../img/top/star_w_icon.svg) no-repeat center center/cover;
  }
}

.screening {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625em;
  margin-top: 2.5em;
  color: #fff;
  text-align: center;
}
.screening_info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375em;
}
.screening_label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.25em;
  height: 2.25em;
  border-radius: 8px;
  background-color: #ffe927;
}
.screening_label span {
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.6667;
  letter-spacing: -0.02em;
  color: #2d2d2d;
}
.screening_time {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
.screening_time .unit {
  font-size: 1.625em;
}
.screening_time .num {
  font-size: 2.5em;
}
.screening_time .ticket {
  font-size: 1.375em;
}
.screening_note p {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.5;
}
.screening.--light {
  color: #2d2d2d;
}
.screening.--light .screening_label {
  background-color: #004097;
}
.screening.--light .screening_label span {
  color: #fff;
}
.screening.--light .screening_time {
  color: #004097;
}
.screening.--light .screening_time .ticket {
  color: #2d2d2d;
}
.screening.--light .screening_note p {
  font-size: 1em;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.02em;
}

.list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3.75em 2.5em;
  margin-top: 3.75em;
}
@media screen and (max-width: 768px) {
  .list {
    gap: 8vw 0;
    margin-top: 8vw;
  }
}

.list_item {
  position: relative;
  width: calc(50% - 1.25em);
}
@media screen and (max-width: 768px) {
  .list_item {
    width: 100%;
  }
}
.list_item_img {
  position: relative;
  z-index: 2;
}
.list_item_img img {
  display: block;
  width: 100%;
  height: auto;
}
.list_item_title {
  position: relative;
  z-index: 1;
  margin-top: -9.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10.875em;
  border-radius: 1.5em;
  background: linear-gradient(to right, #1aa5c6 0%, #0d73af 50%, #004097 100%);
}
@media screen and (max-width: 768px) {
  .list_item_title {
    margin-top: -5%;
    height: 21.3333vw;
  }
}
.list_item_title.--secondary {
  margin-top: -6%;
}
.list_item_title.--tertiary {
  margin-top: -15.5%;
}
@media screen and (max-width: 768px) {
  .list_item_title.--tertiary {
    margin-top: -9.5%;
  }
}
.list_item_title span {
  font-family: "RocknRoll One", sans-serif;
  font-size: 1.75em;
  line-height: 1.21429;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .list_item_title span {
    font-size: 4.8vw;
  }
}
.list_item_text {
  padding: 1em 2em 2em;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: -0.03em;
  color: #2d2d2d;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .list_item_text span {
    display: block;
    font-size: 2.66666vw;
  }
}

.content_05 .list_item_img img {
  max-width: 25em;
  margin-inline: auto;
}

.content_04 .list_item:nth-child(1) .list_item_img {
  width: 26em;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .content_04 .list_item:nth-child(1) .list_item_img {
    width: 85%;
  }
}

.content_04 .list_item:nth-child(2) .list_item_img {
  width: 23em;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .content_04 .list_item:nth-child(2) .list_item_img {
    width: 85%;
  }
}

.faq {
  position: relative;
  z-index: 7;
  padding-top: 17.1875em;
  background-color: #F6F5F3;
}
@media screen and (max-width: 768px) {
  .faq {
    padding-top: 27.466666vw;
  }
}
.faq_bg_upper {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .faq_bg_upper {
    width: 170%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .faq {
    margin-top: 13.3333vw;
  }
}
.faq_title {
  position: relative;
}
.faq_title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0%;
  width: 12.625em;
  height: 12.5em;
  background-image: url(../img/top/faq_chara.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .faq_title::before {
    right: -1%;
    width: 5.625em;
    height: 5.5em;
    top: 49%;
  }
}
.faq_btn_wrap {
  margin-top: 8em;
}
@media screen and (max-width: 768px) {
  .faq_btn_wrap {
    margin-top: 15.55555vw;
  }
}
.faq .faq_btn {
  width: 24em;
  display: block;
  margin-inline: auto;
}
.faq .faq_btn:hover {
  opacity: 0.8;
}

.faq_list {
  margin-top: 2.5em;
  border-top: 1px solid rgba(106, 114, 130, 0.5);
}
@media screen and (max-width: 768px) {
  .faq_list {
    margin-top: 6.4vw;
  }
}

.faq_item {
  margin-block: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  padding-block: 1.5em 2em;
  border-bottom: 1px solid rgba(106, 114, 130, 0.5);
}
@media screen and (max-width: 768px) {
  .faq_item {
    gap: 3.2vw;
    padding-block: 4vw 5.3333vw;
  }
}
.faq_item dt {
  display: flex;
  align-items: flex-start;
  gap: 0.875em;
}
.faq_item dd {
  margin-inline-start: 0;
  padding-left: 2.2em;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.5;
  color: #6a7282;
  overflow-wrap: anywhere;
}
.faq_item dd span {
  display: inline-block;
}
.faq_item dd a {
  color: #6a7282;
}
.faq_item dd a:hover {
  opacity: 0.8;
}
.faq_item .faq_q_mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  margin-top: 0.25em;
  border-radius: 0.4em;
  background-color: #177b93;
  color: #fff;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1;
}
.faq_item .faq_q_text {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.66667;
  letter-spacing: 0.02em;
  color: #177b93;
}
.faq_item .faq_a_list {
  margin-block: 0;
  padding-inline-start: 0;
}
.faq_item .faq_a_list li {
  display: flex;
}
.faq_item .faq_a_list li::before {
  content: "▪";
  flex-shrink: 0;
}
.faq_item .faq_a_list.--dot li::before {
  content: "・";
}
.faq_item .faq_a_list:has(.--lead) {
  padding-inline-start: 1.4em;
}
.faq_item .faq_a_list li.--lead {
  position: relative;
}
.faq_item .faq_a_list li.--lead::after {
  content: "A.";
  position: absolute;
  top: 0;
  left: -1.4em;
}
.faq_item .faq_note {
  font-size: 0.9em;
  font-weight: 400;
}

.contact {
  position: relative;
  z-index: 8;
  padding-top: 21.1875vw;
  padding-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 33.3333vw;
  }
}
.contact_bg_upper {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .contact_bg_upper {
    width: 170%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.contact_bg {
  position: relative;
  container-type: inline-size;
}
@media screen and (max-width: 768px) {
  .contact_bg_img {
    width: 92vw;
    margin-inline: auto;
    margin-top: 15vw;
  }
}
@media screen and (max-width: 768px) {
  .contact_bg_img.--sp-wide {
    width: 100%;
  }
}
.contact_bg_left {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 14.857cqw;
}
@media screen and (max-width: 768px) {
  .contact_bg_left {
    top: 2%;
    left: 1%;
    width: 21vw;
  }
}
.contact_bg_right {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 18.429cqw;
}
@media screen and (max-width: 768px) {
  .contact_bg_right {
    top: -8%;
    right: 6.5%;
    width: 10vw;
  }
}
.contact_bg_moon {
  position: absolute;
  top: 46%;
  left: 3.5%;
  width: 11cqw;
}
@media screen and (max-width: 768px) {
  .contact_bg_moon {
    top: 71.5%;
    left: 2%;
    width: 19.5vw;
  }
}
.contact_bg_satellite {
  position: absolute;
  top: 36%;
  right: 2%;
  width: 17cqw;
}
@media screen and (max-width: 768px) {
  .contact_bg_satellite {
    top: 0%;
    right: 4.5%;
    width: 24vw;
  }
}
.contact_inner {
  position: absolute;
  top: 41.4%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.857cqw;
  width: max-content;
  max-width: 26cqw;
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .contact_inner {
    top: 41%;
    left: 50%;
    max-width: 100%;
    gap: 1.6vw;
    width: fit-content;
  }
}
.contact_inner p {
  margin: 0;
}
.contact_org {
  font-size: 2.143cqw;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .contact_org {
    font-size: 4vw;
  }
}
.contact_label {
  font-size: 1.4286cqw;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .contact_label {
    font-size: 2.9333333vw;
  }
}
.contact_tel {
  font-size: 2cqw;
  font-weight: 900;
  line-height: 1.0714;
}
.contact_tel a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .contact_tel {
    font-size: 3.7333333vw;
  }
}
.contact_hours, .contact_mail {
  font-size: 1.4286cqw;
  line-height: 1;
}
.contact_hours a, .contact_mail a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .contact_hours, .contact_mail {
    font-size: 2.9333333vw;
  }
}

.news {
  position: relative;
  z-index: 2;
  padding-top: 8.25em;
}
@media screen and (max-width: 768px) {
  .news {
    padding-top: 13.3333vw;
  }
}
@media screen and (max-width: 768px) {
  .news .wrap02 {
    width: 90.66666vw;
  }
}
.news_bg {
  position: relative;
  z-index: 0;
}
.news_bg img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news_bg {
    left: -0.6px;
    width: 100.5%;
  }
}
.news_bg::after {
  content: "";
  position: absolute;
  top: 6em;
  right: 0;
  width: 19.4375em;
  background-image: url(../img/top/illust_01.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 1400px) {
  .news_bg::after {
    top: 7em;
  }
}
@media screen and (max-width: 768px) {
  .news_bg::after {
    width: 83.2vw;
    height: 41.066666vw;
    right: -5.33334vw;
    top: 3.2vw;
  }
}
.news_title {
  position: relative;
  z-index: 1;
}
.news_title_illust_left {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 19.46875em;
  height: 17.8125em;
  object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .news_title_illust_left {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .news_title_illust_left {
    width: 23.066666vw;
    height: 20.93333vw;
    left: -4vw;
    top: 8vw;
  }
}
.news_title_illust_right {
  position: absolute;
  top: 0;
  right: 2%;
  width: 18.25em;
  height: 19.0625em;
  object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .news_title_illust_right {
    right: -4%;
    width: 28vw;
    height: 29vw;
    top: 1%;
  }
}
.news_list {
  padding-left: 0;
  padding-inline-start: 0px;
  margin-top: 1.875em;
}
.news_content {
  border-top: 1px solid rgba(106, 114, 130, 0.5);
  display: flex;
  position: relative;
  padding-left: 6.75em;
  padding-block: 1.125em;
}
@media screen and (max-width: 768px) {
  .news_content {
    padding-left: 9.6vw;
  }
}
.news_content:last-of-type {
  border-bottom: 1px solid rgba(106, 114, 130, 0.5);
}
.news_content::before {
  content: "";
  position: absolute;
  width: 4.5em;
  height: 5.5em;
  background-image: url(../img/top/news_top_illust_01.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: 0.5em;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .news_content::before {
    width: 7.6vw;
    height: 9.33334vw;
    left: 0;
  }
}
.news_content::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 3em;
  height: 3em;
  background-image: url(../img/top/news_arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .news_content::after {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.news_content:nth-of-type(2n)::before {
  background-image: url(../img/top/news_top_illust_02.svg);
  width: 4.4375em;
  height: 4.375em;
}
@media screen and (max-width: 768px) {
  .news_content:nth-of-type(2n)::before {
    width: 7.6vw;
    height: 7.333333vw;
  }
}
.news_content dl {
  margin-block-start: 0em;
  margin-block-end: 0em;
}
.news_content dl dt {
  font-size: 1.375em;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 700;
  display: flex;
  align-items: center;
  column-gap: 0.5em;
}
@media screen and (max-width: 768px) {
  .news_content dl dt {
    font-size: 2.933333vw;
  }
}
.news_content dl dt span {
  color: #E8464D;
  font-size: 0.90909em;
  letter-spacing: 0.03em;
  border: 2px solid #E8464D;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.6em;
  height: 1.6em;
}
.news_content dl dd {
  margin-inline-start: 0px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news_content dl dd {
    width: 72vw;
  }
}
.news_content dl dd button, .news_content dl dd h3 {
  appearance: none;
  border: none;
  text-decoration: underline;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: transparent;
  cursor: pointer;
  padding-inline: 0;
  color: #1E1E1E;
}
@media screen and (max-width: 768px) {
  .news_content dl dd button, .news_content dl dd h3 {
    font-size: 3.2vw;
    letter-spacing: 0.025em;
  }
}

.table-wrap {
  margin-top: 3.125em;
  background-image: url(../img/top/reservation_bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: 10.5% 8.5% 10.5%;
}
.table-wrap .wrap04 {
  width: 88%;
  max-width: none;
}
@media screen and (max-width: 768px) {
  .table-wrap {
    background-image: url(../img/top/reservation_bg_sp.webp);
    padding: 17% 6% 17%;
  }
}

.tab-container {
  position: relative;
  z-index: 1;
  top: -1.5625em;
}

.reservation-table {
  width: 100%;
  background-color: #fff;
  border-collapse: collapse;
  border: 2px solid #004097;
}
.reservation-table th,
.reservation-table td {
  border: 2px solid #004097;
}

.tab-buttons {
  display: flex;
  max-width: 500px;
  margin-left: 11.75em;
  position: relative;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .tab-buttons {
    max-width: inherit;
    width: 81%;
    margin-left: 19%;
  }
}

.tab-button {
  color: #004097;
  border: none;
  appearance: none;
  position: relative;
  width: 100%;
  height: 3.72727em;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-inline: 0;
  padding-block: 0;
  font-feature-settings: "palt" 1;
  width: 25%;
  font-size: 1.375em;
  font-weight: 700;
  letter-spacing: 0em;
  border: 2px solid #004097;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .tab-button {
    width: 25%;
    height: 12vw;
    font-size: 2.9333333vw;
    border-width: 1px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
}
.tab-button span {
  font-size: 0.727em;
}
.tab-button.active {
  color: #004097;
  background-color: #fff48e;
  border-bottom-color: #fff48e;
  z-index: 1;
  width: 25%;
}

.tab-content {
  margin-top: -2px;
  position: relative;
  z-index: 2;
}

.reservation-full-banner {
  background-color: #fff;
  color: #004097;
  font-size: 1.375em;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
  text-align: center;
  padding: 0.8em 1em;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #004097;
  z-index: 1;
}
.reservation-full-banner span {
  font-size: 0.7em;
}
@media screen and (max-width: 768px) {
  .reservation-full-banner {
    font-size: 3.2vw;
    padding: 0.9em 0.8em;
  }
}

.time-title {
  text-align: center;
}

.time-header {
  width: 9.8571em;
  font-size: 1.3125em;
  letter-spacing: 0.02em;
  font-weight: 700;
  padding: 0;
  height: 3.428571em;
  border-color: #004097;
  background-color: #177b93;
  color: #fff;
}

.date-header {
  width: 3.3333em;
  padding: 0;
  height: 3em;
  font-size: 1.5em;
  border-color: #004097;
  color: #004097;
}
.date-header span {
  font-size: 0.666em;
}
.date-header.date-header-sat {
  background-color: #d7eeff;
  color: #0066cc;
}
.date-header.date-header-sun {
  background-color: #fce5ed;
  color: #e5004f;
}

.time-cell {
  font-size: 1.3125em;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  border-color: #004097;
  color: #004097;
}

.time-title {
  font-size: 1.375em;
  font-weight: 700;
  height: 2.364em;
  border-color: #004097;
  border-width: 2px;
  border-left: none;
  border-right: none;
  background-color: #f9f5e0;
  color: #004097;
}

.status-cell {
  padding: 0;
  width: 5em;
  height: 3.25em;
  padding: 0;
  border-color: #004097;
}
.status-cell.status-full, .status-cell.status-expired {
  background-color: #ebebeb;
}
.status-cell.status-full button, .status-cell.status-expired button {
  width: 100%;
  height: 100%;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0em;
  border: none;
  background: transparent;
  color: #004097;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}
.status-cell.status-available a, .status-cell.status-limited a {
  width: 100%;
  height: 100%;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0em;
  color: #004097;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.status-description {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #004097;
  margin-top: -0.2777em;
  margin-bottom: 1.6667em;
}
@media screen and (max-width: 768px) {
  .status-description {
    font-size: 2.9333333vw;
  }
}

.reservation-button {
  width: 21.33333em;
  height: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0em;
  color: #fff;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(180deg, #f9b10f 0%, #f7931e 100%);
  border-radius: 1em;
  margin-inline: auto;
  margin-top: 2.77777777em;
  position: relative;
  font-feature-settings: "palt" 1;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .reservation-button {
    font-size: 3.733333vw;
    letter-spacing: -0.05em;
  }
}
@media screen and (any-hover: hover) {
  .reservation-button:hover {
    filter: brightness(0.95);
    transition: filter 0.3s ease;
  }
}
.reservation-button_secondary {
  color: #631014;
  background: #FFEC94;
  border: 2px solid #631014;
  box-shadow: 0 7px 0 #631014;
  border-radius: 26px;
  width: 31.25em;
  height: 3.25em;
}
@media screen and (max-width: 768px) {
  .reservation-button_secondary {
    width: 100%;
    box-shadow: 0 3px 0 #631014;
    border-radius: 6.933333vw;
  }
}
.reservation-button_secondary::after {
  background-image: url(../img/top/button_arrow_secondary.svg);
  width: 1.875em;
  height: 1.875em;
  right: 8px;
}
@media screen and (any-hover: hover) {
  .reservation-button_secondary:hover {
    background: #FFDA2A;
    filter: none;
    transition: background-color 0.3s ease;
  }
}

.day-of-week {
  display: block;
}

.reservation_text {
  text-align: center;
  color: #1E1E1E;
  font-size: 1.5em;
  line-height: 1;
  font-weight: 500;
  margin-top: 1.875em;
}
.reservation_note_text {
  text-align: center;
  color: #1E1E1E;
  font-size: 1.125em;
  line-height: 1;
  font-weight: 400;
  margin-block: 0.888em 2.222em;
}
@media screen and (max-width: 768px) {
  .reservation_note_text {
    font-size: 3.2vw;
    margin-block: 8.53333vw;
    line-height: 1.4;
  }
}
.reservation_01 {
  margin-top: 15.625em;
}
.reservation_01_title {
  position: relative;
  z-index: 1;
}
.reservation_01_title_illust {
  position: absolute;
  top: 0%;
  left: -8%;
  width: 12.125em;
  height: 13.125em;
  object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .reservation_01_title_illust {
    top: -14%;
    right: -2%;
  }
}
@media screen and (max-width: 768px) {
  .reservation_01_title_illust {
    top: -43%;
    width: 28.6vw;
    height: 30.86666vw;
    left: 2%;
  }
}

.footer {
  margin-top: 9.75em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 17.333333vw;
  }
}
.footer_illust {
  position: absolute;
  top: -100%;
  right: 50%;
  transform: translateX(50%);
  z-index: 10;
  width: 27.125em;
}
@media screen and (max-width: 768px) {
  .footer_illust {
    top: -121%;
  }
}
.footer_content {
  background-color: #006F3A;
  padding-bottom: 3.25em;
  margin-top: -4.3125vw;
}
@media screen and (max-width: 1000px) {
  .footer_content {
    margin-top: -1.3125vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_content {
    margin-top: -2vw;
    padding-bottom: 5.33334vw;
  }
}
.footer_title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1.25em;
}
@media screen and (max-width: 768px) {
  .footer_title {
    row-gap: 2.4vw;
  }
}
.footer_title_main {
  color: #006F3A;
  background-color: #fff;
  border-radius: 18px;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.02em;
  width: 8.25em;
  height: 2.25em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer_title_main {
    width: 22.4vw;
    height: 6.66667vw;
    font-size: 2.9333vw;
    letter-spacing: 0.01em;
  }
}
.footer_title_sub {
  font-size: 1.75em;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #fff;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 768px) {
  .footer_title_sub {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 4.2666667vw;
    letter-spacing: 0.015em;
  }
}
.footer_title_sub_span_01 {
  font-size: 0.71428em;
}
@media screen and (max-width: 768px) {
  .footer_title_sub_span_01 {
    display: block;
    margin-left: 0.5em;
    margin-top: 0.5em;
    font-size: 3.2vw;
  }
}
.footer_title_sub_span_02 {
  font-size: 0.92857em;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .footer_title_sub_span_02 {
    display: block;
    margin-left: 0;
    font-size: 4.2666667vw;
  }
}
.footer_tel_wrap {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin-inline: auto;
}
.footer_tel {
  text-align: center;
  color: #fff;
  letter-spacing: 0.06em;
  font-feature-settings: "palt" 1;
  margin-top: 0.606em;
  font-size: 1.375em;
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.941176em;
}
@media screen and (max-width: 768px) {
  .footer_tel {
    font-size: 3.2vw;
    column-gap: 0.5333vw;
  }
}
.footer_tel a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.590909em;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 768px) {
  .footer_tel a {
    font-size: 5.33334vw;
  }
}
.footer_tel span {
  font-size: 0.60606em;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .footer_tel span {
    letter-spacing: 0.03em;
  }
}
.footer_tel.no_margin {
  margin-top: 0;
}
.footer_time {
  text-align: center;
  font-size: 1.25em;
  color: #fff;
  letter-spacing: 0.06em;
  font-feature-settings: "palt" 1;
  margin-top: 0.7em;
}
@media screen and (max-width: 768px) {
  .footer_time {
    font-size: 3.2vw;
    letter-spacing: 0.03em;
  }
}
.footer_copyright {
  margin-top: 5.3125em;
}
@media screen and (max-width: 768px) {
  .footer_copyright {
    margin-top: 7.199999vw;
  }
}
.footer_copyright img {
  width: 20em;
  display: block;
  margin-inline: auto;
}
.footer_copyright_text {
  font-size: 0.875em;
  color: #fff;
  letter-spacing: 0em;
  font-feature-settings: "palt" 1;
  margin-top: 1.7142em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer_copyright_text {
    font-size: 2.4vw;
    letter-spacing: 0.015em;
  }
}
.footer_bottom {
  position: relative;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5625em; /* 25px */
  padding-top: 2.5em; /* 緑セクションとの間隔 */
}
@media screen and (max-width: 768px) {
  .footer_bottom {
    row-gap: 0;
    padding-top: 1.5em;
  }
}
.footer_bottom_logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.25em; /* 20px */
}
@media screen and (max-width: 768px) {
  .footer_bottom_logo {
    row-gap: 0.25em;
    padding-bottom: 1em;
  }
}
.footer_bottom_logo_img {
  width: 20em; /* 320px */
  display: block;
}
.footer_bottom_copyright {
  font-size: 0.875em; /* 14px */
  line-height: 2; /* 28px */
  letter-spacing: 0.02em; /* 0.28px */
  color: #2d2d2d;
  text-align: center;
}
.footer_bottom_line {
  width: 100%;
  height: 0.25em; /* 4px */
  background-color: #004097;
}
.footer_bottom_nav {
  display: flex;
  justify-content: center;
  column-gap: 1em; /* 16px */
  padding-bottom: 0.625em; /* 10px */
  list-style: none;
}
@media screen and (max-width: 768px) {
  .footer_bottom_nav {
    flex-direction: column;
    align-items: center;
    row-gap: 1em;
  }
}
.footer_bottom_nav a {
  font-size: 1em; /* 16px */
  line-height: 2; /* 32px */
  letter-spacing: 0.02em; /* 0.32px */
  color: #2d2d2d;
  text-decoration: none;
  white-space: nowrap;
}
.footer_bottom_chara {
  position: absolute;
  width: 11.6875em; /* 187px */
  top: 1.5em; /* y=-8px 相当 */
  left: calc(50% + 22.969em); /* 中央から +367.5px をキャラ中心に */
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .footer_bottom_chara { /* SP専用デザインは未提供のため右寄せで縮小（暫定） */
    width: 26vw;
    left: auto;
    right: 2vw;
    transform: none;
    top: 10vw;
  }
}

.bottom_banner {
  display: none;
}
@media screen and (max-width: 768px) {
  .bottom_banner {
    display: block;
    position: fixed;
    bottom: 2%;
    left: 0;
    right: 0;
    width: 74.66666vw;
    margin-inline: auto;
    z-index: 49;
  }
}

@media (max-width: 768px) {
  .reservation-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .reservation-table {
    min-width: 100%;
    white-space: nowrap;
  }
  .reservation-table th,
  .reservation-table td {
    white-space: nowrap;
    padding: 8px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .reservation-table th,
  .reservation-table td {
    white-space: nowrap;
    padding: 0px;
    font-size: 2.8vw;
    width: 9.33334vw;
    height: 10.6666vw;
    text-align: center;
    border-width: 1px;
  }
}
@media (max-width: 768px) {
  .reservation-table th th.date-header,
  .reservation-table td th.date-header {
    width: 9.33333vw;
    height: 9.6vw;
    font-size: 3.2vw;
  }
}
@media (max-width: 768px) {
  /* 時間列（現在の予約状況ヘッダ／時間ラベル）を2行化に合わせて Figma（52px 相当）へ縮小 */
  .time-header,
  .time-cell {
    width: 14.9333vw !important;
    line-height: 1.35;
  }
  .time-header {
    background-color: #177b93;
    color: #fff;
  }
  /* time-titleも固定 */
  .time-title {
    position: relative;
    background-color: #f9f5e0;
    font-weight: bold;
    border-width: 1px;
    height: 6.933333vw !important;
  }
}
@-moz-document url-prefix() {
  /* Firefoxだけに適用されるCSS */
  .tab-button {
    white-space: nowrap;
    letter-spacing: -0.1em;
  }
}