@charset "UTF-8";
html,
body,
section,
div,
h1,
h2,
h3,
ul,
li,
p,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
  box-sizing: border-box;
}

h1 {
  display: none;
}

.header-pc,
.header-sp {
  display: none;
}

.hoshi-logo {
  width: 100%;
  height: 110vh;
  position: fixed;
  background-color: #ebe164;
  top: 0;
  left: 0;
  z-index: 110;
  opacity: 1;
  transition: opacity 0.8s;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hoshi-logo .hoshi-bg {
  position: absolute;
  top: 50vh;
  left: 50%;
  background: url("../images/logo-bg-2.webp") no-repeat center center;
  background-size: contain;
  z-index: -1;
  width: 70%;
  height: 70%;
  animation: bg 3s infinite;
}
@keyframes bg {
  0% {
    transform: translate(-50%, -50%) scale(1.9);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.9);
    opacity: 1;
  }
}
.hoshi-logo img {
  width: 50%;
  max-width: 220px;
  display: block;
  margin-top: -10vh;
}
.hoshi-logo.loaded {
  opacity: 0;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  background-image: url("../images/bg-sp.webp");
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 120lvh;
  filter: brightness(0.1);
  animation: bg-first 3s 1s forwards;
}
@media screen and (min-width: 767px) {
  .bg {
    background-image: url("../images/bg-pc.webp");
  }
}

@keyframes bg-first {
  0% {
    filter: brightness(0.1);
  }
  100% {
    filter: brightness(0.7);
  }
}
h2 {
  font-weight: normal;
}

.nowrap {
  display: inline-block;
  white-space: nowrap;
}

.view-on {
  display: inline-block;
}
@media screen and (max-width: 900px) {
  .view-on {
    display: none;
  }
}

.view-none {
  display: none;
}
@media screen and (max-width: 900px) {
  .view-none {
    display: inline-block;
  }
}

.vertical {
  writing-mode: vertical-rl;
  font-family: "Kaisei Decol", serif;
  font-size: 2rem;
  position: relative;
  padding-top: 3rem;
  width: 4rem;
}
.vertical::before {
  position: absolute;
  content: "";
  background-image: url("../images/case_novel/obi.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
  width: 4rem;
  height: 50px;
  object-fit: contain;
}
.vertical .tate {
  display: inline-block;
  width: 100%;
  max-width: 2rem;
  transform: translateX(50%);
}
@media screen and (max-width: 767px) {
  .vertical {
    font-size: 1.6rem;
    width: 1.6rem;
    padding-top: 2rem;
    line-height: 1;
  }
  .vertical::before {
    width: 1.6rem;
    height: 25px;
  }
  .vertical .tate {
    transform: none;
  }
}

.btn {
  display: inline-block;
  border-radius: 4px;
  border: solid 1px #ebe164;
  font-size: 0.875rem;
  padding: 0.5833333333rem 1.75rem;
  color: #ebe164;
  margin-top: 1rem;
}

.small {
  font-size: 0.875rem;
}

body {
  font-family: "Zen Maru Gothic", serif;
  font-style: normal;
  font-size: 1.25rem;
  color: white;
  width: 100%;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}
body .bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  background-image: url("../images/case_novel/bg-pc.webp");
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 120lvh;
}
body #firstview {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: fit-content;
}
body #firstview .firstviewimg {
  width: 100%;
  object-fit: contain;
}
body #firstview .inner1 {
  position: relative;
  top: 0;
  left: 0;
  height: fit-content;
  width: 100%;
}
body #firstview .inner1 .text1 {
  width: 100%;
  padding-top: 90vw;
  padding-left: 45vw;
  color: #3b4d75;
  line-height: 2;
}
body #firstview .inner2 {
  text-align: center;
  color: white;
}
body #firstview .inner2 .text2 {
  margin: 5vh auto;
  line-height: 2;
}
body #firstview .inner2 .firstviewimg-2 {
  width: 30%;
  text-align: center;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  body #firstview .inner2 .firstviewimg-2 {
    width: 50%;
  }
}
body .immersive-wrap {
  width: 100%;
  display: flex;
  overflow: hidden;
  height: 10vw;
  margin-top: 6rem;
}
body .immersive-wrap .immersive-track {
  display: flex;
  animation: scroll-left 40s linear infinite;
}
body .immersive-wrap .immersive-track img {
  height: 10vw;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  body .immersive-wrap {
    height: 20vw;
  }
  body .immersive-wrap .immersive-track img {
    height: 20vw;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
body #stage {
  margin-top: 10rem;
  padding-bottom: 4rem;
}
body #stage .stage-bg {
  background: linear-gradient(180deg, rgba(50, 85, 135, 0) 0%, rgba(50, 85, 135, 0.5) 3.7%, rgba(113, 82, 81, 0.5) 27%, rgba(94, 129, 104, 0.5) 85%, rgba(28, 101, 145, 0.5) 100%);
  width: calc(100% - 6vw);
  margin: auto;
  border-radius: 40px;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  body #stage .stage-bg {
    padding-bottom: 3rem;
  }
}
body #stage .titlewrap {
  margin: auto;
  text-align: center;
}
body #stage .titlewrap .title-2 {
  width: 50vw;
}
body #stage .titlewrap p {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  body #stage .titlewrap .title-2 {
    width: 80vw;
  }
}
body #stage .stageinner {
  width: 80%;
  margin: 9rem auto;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  body #stage .stageinner {
    width: 90%;
    gap: 1.5rem;
    margin: 4rem auto;
  }
}
body #stage #cast .cast-container,
body #stage #cast .cast-container2 {
  width: calc(100% - 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
}
body #stage #cast .cast-container .cast-wrap img,
body #stage #cast .cast-container2 .cast-wrap img {
  width: 100%;
}
body #stage #cast .cast-container .cast-wrap .role-name,
body #stage #cast .cast-container2 .cast-wrap .role-name {
  margin-top: 1rem;
  background-color: #ebe164;
  border-radius: 12px;
  color: #3b4d75;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 0.7rem;
}
body #stage #cast .cast-container .cast-wrap .role-name .furi,
body #stage #cast .cast-container2 .cast-wrap .role-name .furi {
  font-size: 0.875rem;
  line-height: 1.2;
}
body #stage #cast .cast-container .cast-wrap .cast-name,
body #stage #cast .cast-container2 .cast-wrap .cast-name {
  text-align: center;
}
body #stage #cast .cast-container .cast-wrap .cast-name .name,
body #stage #cast .cast-container2 .cast-wrap .cast-name .name {
  padding-top: 1rem;
  line-height: 1.2;
}
body #stage #cast .cast-container .cast-wrap .cast-name .furi,
body #stage #cast .cast-container2 .cast-wrap .cast-name .furi {
  font-family: "Oleo Script Swash Caps", system-ui;
  font-size: 1.25rem;
  line-height: 1.2;
  opacity: 0.5;
}
body #stage #cast .cast-container .cast-wrap .cast-name .wcast-schedule,
body #stage #cast .cast-container2 .cast-wrap .cast-name .wcast-schedule {
  font-size: 0.875rem;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
body #stage #cast .cast-container2 {
  margin-top: 2rem;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
}
body #stage #cast .cast-container2 .role-name .wcast {
  font-family: "Oleo Script Swash Caps", system-ui;
  color: #f2a5a5;
}
body #stage #cast .cast-container2 .cast-name .name {
  padding: 0.2rem;
}
@media screen and (max-width: 767px) {
  body #stage #cast .cast-container,
  body #stage #cast .cast-container2 {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
  }
  body #stage #cast .cast-container .cast-wrap img,
  body #stage #cast .cast-container2 .cast-wrap img {
    width: 100%;
  }
  body #stage #cast .cast-container .cast-wrap .role-name,
  body #stage #cast .cast-container2 .cast-wrap .role-name {
    padding-top: 0.5rem;
    padding-bottom: 0.35rem;
    margin-top: 0.5rem;
    border-radius: 6px;
  }
  body #stage #cast .cast-container .cast-wrap .role-name .wcast,
  body #stage #cast .cast-container2 .cast-wrap .role-name .wcast {
    line-height: 1;
  }
  body #stage #cast .cast-container .cast-wrap .role-name .name,
  body #stage #cast .cast-container2 .cast-wrap .role-name .name {
    line-height: 1.2;
  }
}
body #stage #schedule {
  margin-top: 4rem;
}
body #stage #schedule .wrap {
  border: 1px solid white;
  border-radius: 10px;
  padding: 3rem 4rem;
}
@media screen and (max-width: 767px) {
  body #stage #schedule .wrap {
    padding: 1rem 1.5rem;
  }
}
body #stage #schedule .wrap .schedule-wcast-wrap {
  font-size: 0.875rem;
}
body #stage #schedule .wrap .schedule-wcast-wrap .schedule-cast-icon {
  width: 2rem;
}
body #stage #schedule .wrap .flex {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
body #stage #schedule .wrap .flex img {
  width: calc(50% - 1rem);
}
@media screen and (max-width: 900px) {
  body #stage #schedule .wrap .flex {
    flex-direction: column;
    gap: 2rem;
  }
  body #stage #schedule .wrap .flex img {
    width: 100%;
  }
}
body #stage #timeschedule .wrap {
  width: 100%;
}
body #stage #timeschedule .wrap table {
  width: 100%;
}
body #stage #timeschedule .wrap table tr {
  display: block;
  padding: 1rem 0;
  display: flex;
  align-items: flex-start;
  padding-top: 0;
}
body #stage #timeschedule .wrap table tr + tr {
  padding: 1rem 0;
  background-image: linear-gradient(to right, #cdcdcd, #cdcdcd 6px, transparent 6px);
  background-size: 16px 2px;
  background-position: left top;
  background-repeat: repeat-x;
}
@media screen and (max-width: 767px) {
  body #stage #timeschedule .wrap table tr + tr {
    padding: 0.5rem 0;
  }
}
body #stage #timeschedule .wrap table tr .time {
  font-size: 2rem;
  font-family: "Oleo Script Swash Caps", system-ui;
  white-space: nowrap;
  padding-right: 4rem;
  width: 10rem;
  line-height: 1;
  padding-top: 0.3333333333rem;
}
@media screen and (max-width: 767px) {
  body #stage #timeschedule .wrap table tr .time {
    font-size: 1.25rem;
    width: 4.8rem;
  }
}
body #stage #timeschedule .wrap table tr .time span {
  font-size: 0.875rem;
}
body #stage #timeschedule .wrap table tr .text {
  width: 100%;
}
@media screen and (max-width: 767px) {
  body #stage #timeschedule .wrap table tr .text {
    line-height: 1.5;
  }
}
body #stage #timeschedule .wrap .small {
  font-size: 0.875rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  body #stage #timeschedule .wrap .small {
    text-align: left;
  }
}
body #stage #location {
  position: relative;
  height: 80vh;
}
body #stage #location .wrap {
  position: absolute;
  z-index: 1;
  display: flex;
  gap: 4rem;
}
body #stage #location .wrap .text1 {
  line-height: 1.4;
  font-size: 2rem;
  z-index: 1;
}
body #stage #location .wrap .text2 {
  line-height: 1.5;
  margin: 2rem 0;
}
body #stage #location .location {
  position: absolute;
  right: 0;
  top: 0;
  height: 80vh;
}
@media screen and (max-width: 900px) {
  body #stage #location {
    height: 40vh;
  }
  body #stage #location .location {
    height: 35vh;
    margin-top: 5vh;
    object-fit: contain;
  }
}
@media screen and (max-width: 767px) {
  body #stage #location {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  body #stage #location .inner {
    width: 100%;
  }
  body #stage #location .wrap,
  body #stage #location .location {
    position: relative;
  }
  body #stage #location .wrap {
    gap: 1rem;
  }
  body #stage #location .wrap .text1 {
    font-size: 1.6rem;
  }
}
body #stage #ticket .wrap {
  border: 1px solid white;
  border-radius: 10px;
  padding: 3rem 4rem;
}
body #stage #ticket .contenttext {
  color: #ebe164;
  font-family: "Kaisei Decol", serif;
}
body #stage #ticket .contenttext .big {
  font-size: 2rem;
  line-height: 1.2;
}
body #stage #ticket .tokuten {
  text-decoration: underline;
  color: #f2a5a5;
}
body #stage #ticket ul {
  margin: 3rem 0;
  padding-right: 20vw;
  text-align: justify;
}
body #stage #ticket ul li {
  position: relative;
  padding-left: 1em;
  font-size: 0.875rem;
  line-height: 1.6;
}
body #stage #ticket ul li::before {
  content: "※";
  /* ※マークを出す */
  position: absolute;
  left: 0;
  top: 0;
}
body #stage #ticket ul li + li {
  margin-top: 0.5rem;
}
body #stage #ticket .btn-ticket2 {
  display: inline-block;
  margin-bottom: 2rem;
}
body #stage #ticket .room204-icon {
  margin-top: 1rem;
  margin-bottom: 2vw;
  width: 100%;
  min-width: 250px;
}
@media screen and (max-width: 767px) {
  body #stage #ticket .room204-icon {
    margin-top: 2rem;
    margin-bottom: 0;
  }
}
body #stage #ticket .new-icon {
  width: 30vw;
  min-width: 230px;
  margin: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  body #stage #ticket {
    gap: 1rem;
  }
  body #stage #ticket .wrap {
    padding: 1.5rem 1rem;
  }
  body #stage #ticket .contenttext .big {
    font-size: 1.3rem;
  }
  body #stage #ticket .contenttext .pblock {
    display: inline-block;
    line-height: 1.4;
    margin-top: 1rem;
  }
  body #stage #ticket .contenttext.margintop {
    margin-top: 2rem;
  }
  body #stage #ticket ul {
    margin: 1rem 0;
    padding-right: 0;
  }
}
body #stage #staff {
  width: 65%;
  margin: auto;
  position: relative;
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 7rem;
}
body #stage #staff h2 {
  font-family: "Kaisei Decol", serif;
  font-size: 2rem;
  color: #ebe164;
  margin-bottom: 1rem;
}
body #stage #staff .cast-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
body #stage #staff .book2 {
  width: 20vw;
}
@media screen and (max-width: 767px) {
  body #stage #staff {
    width: 98%;
    padding-top: 3rem;
    padding-bottom: 4rem;
    font-size: 1.25rem;
  }
}
body #limelight {
  margin: 8rem 0 4rem;
}
body #limelight .kv-second {
  padding-bottom: 4rem;
}
body #limelight .kv-second img {
  width: 100%;
  object-fit: contain;
}
body #limelight .flex-1,
body #limelight .flex-2 {
  width: 80%;
  margin: auto;
  margin-top: 15rem;
  display: flex;
  align-items: flex-start;
  position: relative;
}
body #limelight .flex-1 img,
body #limelight .flex-2 img {
  width: 55%;
  object-fit: contain;
}
body #limelight .flex-1 .texten,
body #limelight .flex-2 .texten {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: -3rem;
  line-height: 1;
  font-size: 100px;
  font-family: "Oleo Script Swash Caps", system-ui;
  color: #ebe164;
  text-align: center;
}
body #limelight .flex-1 .textwrap,
body #limelight .flex-2 .textwrap {
  padding-left: 2rem;
}
body #limelight .flex-1 .textwrap h2,
body #limelight .flex-2 .textwrap h2 {
  color: #ebe164;
  font-family: "Kaisei Decol", serif;
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 5rem;
}
body #limelight .flex-1 .textwrap .copy,
body #limelight .flex-2 .textwrap .copy {
  padding-top: 4rem;
  font-size: 2rem;
  line-height: 1.2;
}
body #limelight .flex-1 .textwrap .text,
body #limelight .flex-2 .textwrap .text {
  margin-top: 2rem;
}
body #limelight .flex-2 {
  flex-direction: row-reverse;
}
body #limelight .flex-2 .textwrap {
  padding-right: 2rem;
}
body #limelight .flex-2 .textwrap h2,
body #limelight .flex-2 .textwrap .copy {
  text-align: right;
}
body #limelight #about {
  margin-top: 4rem;
}
body #limelight #barlounge {
  margin-top: 2rem;
}
body #limelight #barlounge .texten {
  margin-top: 8rem;
}
body #limelight #barlounge .textwrap h2 {
  margin-top: 16rem;
}
body #limelight #access .text {
  margin-top: 1rem;
}
body #limelight #access .text .point {
  color: #ebe164;
  font-size: 1.2rem;
}
body #limelight #access p.copy2 {
  padding-top: 2rem;
}
body #limelight #stay .stay-modelimg {
  width: 20vw;
  position: absolute;
  top: 0;
  left: 0;
}
body #limelight .menu {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
body #limelight .menu .floating-element {
  position: absolute;
  width: 28vw;
  height: auto;
  z-index: 99;
}
body #limelight .menu .floating-element img {
  width: 100%;
  object-fit: contain;
}
body #limelight .menu .menu1 {
  top: 20%;
  left: 0;
}
body #limelight .menu .menu2 {
  top: 50%;
  right: 0;
}
body #limelight .menu .menu3 {
  top: 80%;
  left: 0;
}
@media screen and (max-width: 767px) {
  body #limelight .menu .floating-element {
    width: 40vw;
  }
  body #limelight .menu .menu1 {
    top: 40%;
    left: -10vw;
  }
  body #limelight .menu .menu2 {
    top: 50%;
    right: -5vw;
  }
  body #limelight .menu .menu3 {
    top: 80%;
    left: -10vw;
  }
}
body #limelight .menu .dinner,
body #limelight .menu .morning {
  margin: auto;
  margin-top: 4.5rem;
  width: 70%;
  border-radius: 10px;
  border: #ebe164 solid 1px;
  padding: 3vw;
  text-align: center;
  z-index: 100;
  position: relative;
}
body #limelight .menu .dinner::before,
body #limelight .menu .morning::before {
  content: "";
  position: absolute;
  top: -2vw;
  left: 10%;
  width: 6vw;
  height: 5vw;
  background-image: url("../images/case_novel/obi.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
body #limelight .menu .dinner h3,
body #limelight .menu .morning h3 {
  font-family: "Kaisei Decol", serif;
  font-size: 2rem;
  color: #ebe164;
}
body #limelight .menu .dinner h4,
body #limelight .menu .morning h4 {
  margin-top: 3vw;
  color: #ebe164;
  line-height: 1.4;
}
body #limelight .menu .dinner ul,
body #limelight .menu .morning ul {
  margin-top: 1.4vw;
}
@media screen and (max-width: 767px) {
  body #limelight .menu .dinner,
  body #limelight .menu .morning {
    width: 90%;
    padding: 5vw;
  }
  body #limelight .menu .dinner h3,
  body #limelight .menu .morning h3 {
    font-size: 1.6rem;
  }
  body #limelight .menu .dinner h4,
  body #limelight .menu .morning h4 {
    font-size: 5vw;
  }
  body #limelight .menu .dinner li,
  body #limelight .menu .morning li {
    font-size: 3.5vw;
  }
}
body #limelight #goods .texten {
  margin-top: -4.5rem;
}
body #limelight .goods-fix {
  margin-top: 4.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body #limelight .goods-fix img {
  width: 90%;
  max-width: 500px;
}
body #limelight .goods-fix img.title {
  width: 40%;
  margin-bottom: 5vw;
}
@media screen and (max-width: 900px) {
  body #limelight .goods-fix img.title {
    width: 80%;
  }
}
@media screen and (max-width: 900px) {
  body #limelight .flex-1,
  body #limelight .flex-2 {
    flex-direction: column;
  }
  body #limelight .flex-1 img,
  body #limelight .flex-2 img {
    width: 100%;
  }
  body #limelight .flex-1 .textwrap,
  body #limelight .flex-2 .textwrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  body #limelight .flex-1 .textwrap h2,
  body #limelight .flex-2 .textwrap h2 {
    margin-top: 2rem;
  }
  body #limelight .flex-1 .textwrap .copy,
  body #limelight .flex-2 .textwrap .copy {
    padding-top: 2rem;
    font-size: 2rem;
    line-height: 1.2;
  }
  body #limelight .flex-1 .textwrap .text,
  body #limelight .flex-2 .textwrap .text {
    margin-top: 2rem;
  }
  body #limelight .flex-2 .textwrap {
    padding-right: 0;
  }
  body #limelight .flex-2 .textwrap h2,
  body #limelight .flex-2 .textwrap .copy {
    text-align: left;
  }
  body #limelight #about .texten,
  body #limelight #barlounge .texten,
  body #limelight #access .texten,
  body #limelight #stay .texten,
  body #limelight #restaurant .texten,
  body #limelight #goods .texten {
    display: none;
  }
  body #limelight #barlounge .textwrap h2 {
    margin-top: 2rem;
  }
  body #limelight #access {
    margin-top: 0;
  }
  body #limelight #stay {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 767px) {
  body #limelight {
    margin-top: 0;
  }
  body #limelight .flex-1,
  body #limelight .flex-2 {
    width: 90%;
  }
  body #limelight .flex-1 .textwrap,
  body #limelight .flex-2 .textwrap {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  body #limelight .flex-1 .textwrap .copy,
  body #limelight .flex-2 .textwrap .copy {
    padding-top: 1rem;
    font-size: 1.6rem;
    line-height: 1.2;
  }
  body #limelight .flex-1 .textwrap .text,
  body #limelight .flex-2 .textwrap .text {
    margin-top: 2rem;
  }
  body #limelight #about,
  body #limelight #barlounge,
  body #limelight #access,
  body #limelight #stay,
  body #limelight #restaurant,
  body #limelight #goods {
    margin-top: 4.5rem;
  }
  body #limelight #about .texten,
  body #limelight #barlounge .texten,
  body #limelight #access .texten,
  body #limelight #stay .texten,
  body #limelight #restaurant .texten,
  body #limelight #goods .texten {
    display: none;
  }
  body #limelight #about {
    margin-top: 0;
  }
  body #limelight #stay,
  body #limelight #restaurant,
  body #limelight #goods {
    margin-top: 6rem;
  }
}
body .flex-1 {
  display: flex;
}
body #message {
  width: 60%;
  margin: auto;
  margin-top: 12rem;
}
body #message .inner {
  position: relative;
  border-radius: 10px;
  border: #ebe164 solid 1px;
  text-align: center;
  color: #ebe164;
  padding: 4rem;
}
body #message .inner .book-2 {
  position: absolute;
  bottom: -5vw;
  left: -8vw;
  width: 15vw;
  object-fit: contain;
}
body #message .inner .model-4 {
  position: absolute;
  bottom: -20%;
  right: -20%;
  width: 30%;
  object-fit: contain;
}
body #message .inner::before {
  content: "";
  position: absolute;
  top: -2vw;
  left: 10%;
  width: 6vw;
  height: 5vw;
  background-image: url("../images/case_novel/obi.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  body #message {
    width: 90%;
    margin-top: 6rem;
    font-size: 1.25rem;
  }
  body #message .inner {
    padding-bottom: 50vw;
  }
  body #message .inner::before {
    top: -3vw;
    left: 5%;
    width: 12vw;
    height: 10vw;
  }
  body #message .inner .book-2 {
    bottom: -10vw;
    left: 0;
    width: 35vw;
  }
  body #message .inner .model-4 {
    position: absolute;
    bottom: -10vw;
    right: 2vw;
    width: 36vw;
    object-fit: contain;
  }
}
body footer {
  position: relative;
  width: 100%;
  background-color: #ebe164;
  padding-top: 10vw;
  padding-bottom: 10vw;
  margin-top: 20rem;
  font-size: 0.875rem;
  color: #3b4d75;
}
body footer .footer-img {
  position: absolute;
  top: -10vw;
  left: 0;
  width: 100%;
}
body footer .inner {
  display: flex;
  justify-content: space-between;
}
body footer .inner .cont1 {
  width: 40%;
  padding-left: 3rem;
}
body footer .inner .cont1 .logo2 {
  width: 20vw;
  filter: brightness(0) saturate(100%) invert(36%) sepia(17%) saturate(747%) hue-rotate(188deg) brightness(92%) contrast(90%);
}
body footer .inner .cont1 .iconflex {
  display: flex;
  margin-top: 3rem;
  gap: 1rem;
}
body footer .inner .cont1 .iconflex img {
  width: 32px;
  filter: brightness(0) saturate(100%) invert(36%) sepia(17%) saturate(747%) hue-rotate(188deg) brightness(92%) contrast(90%);
}
body footer .inner .cont1 p {
  margin-top: 0.5rem;
}
body footer .inner .cont2,
body footer .inner .cont3 {
  width: 30%;
  padding: 0 2rem;
  line-height: 1.4;
  background-image: linear-gradient(to bottom, #ffffff, #ffffff 6px, transparent 6px);
  background-size: 2px 16px;
  background-position: left top;
  background-repeat: repeat-y;
}
body footer .inner .cont2 .espact,
body footer .inner .cont2 .toymen {
  height: 40px;
  filter: brightness(0) saturate(100%) invert(36%) sepia(17%) saturate(747%) hue-rotate(188deg) brightness(92%) contrast(90%);
}
body footer .inner .cont2 .woohoo {
  width: 60px;
}
body footer .inner .cont3 .logo-sinshu {
  width: 7vw;
  margin-top: 2rem;
}
@media screen and (max-width: 900px) {
  body footer .inner {
    flex-direction: column;
  }
  body footer .inner .cont1,
  body footer .inner .cont2,
  body footer .inner .cont3 {
    width: 70%;
    text-align: center;
    margin: auto;
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  body footer .inner .cont1 .iconflex {
    width: 100%;
    justify-content: center;
  }
  body footer .inner .cont2,
  body footer .inner .cont3 {
    background-image: linear-gradient(to right, #ffffff, #ffffff 6px, transparent 6px);
    background-size: 16px 2px;
    background-position: left top;
    background-repeat: repeat-x;
  }
}
@media screen and (max-width: 767px) {
  body footer {
    margin-top: 10rem;
  }
  body footer .inner .cont1 {
    padding-left: 0;
  }
  body footer .inner .cont1 .logo2 {
    width: 60vw;
  }
  body footer .inner .cont3 .logo-sinshu {
    width: 30vw;
  }
}