@charset "UTF-8";
/*---------- Google Fontsの読み込み----------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&family=Roboto+Condensed:wght@300;400;700&display=swap");
/*----- ベーススタイル-----*/
html {
  font-size: 62.5%;
  color: white;
  background: black;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}

li {
  list-style: none;
}

ul {
  padding-left: 0;
}

h2 {
  margin: 0;
  font-size: 4rem;
  font-family: "Roboto Condensed";
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

a {
  text-decoration: none;
  position: relative;
  color: inherit;
}

@media (min-width: 769px) {
  a:hover {
    -webkit-text-stroke: 0.3rem #7fffd4;
  }
}

.flex-container {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .flex-container {
    display: initial;
  }
}

section {
  background: black;
}

.text {
  padding: 2rem 1.5rem;
  font-family: "Noto Sans JP";
  font-weight: 300;
  line-height: 2;
  margin: 0;
}
@media (max-width: 768px) {
  .text {
    padding: 1rem 1rem;
    line-height: 1.8;
    font-size: 1.4rem;
  }
}

.fadein {
  opacity: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
}

.fade_on {
  opacity: 1;
}

.view-more {
  font-size: 3rem;
  font-family: "Roboto Condensed";
  text-align: center;
  margin-top: 15rem;
  -webkit-text-stroke: 0.07rem #fff;
  text-shadow: 0.1rem 0.1rem 2rem aquamarine;
  color: transparent;
  animation: flash-anime 3.5s linear infinite;
}
@keyframes flash-anime {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  51% {
    opacity: 0.3;
  }
  52% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  76% {
    opacity: 0.6;
  }
  77% {
    opacity: 1;
  }
  78% {
    opacity: 0.3;
  }
  79% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .view-more {
    margin-top: 2rem;
    line-height: 1;
    font-size: 2rem;
  }
}

.wrap {
  overflow: hidden;
}

.top {
  background-image: url("../images/top.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 70rem;
  font-family: "Roboto Condensed";
}
@media (max-width: 768px) {
  .top {
    height: 60rem;
  }
}

.hotelname {
  -webkit-text-stroke: 0.35rem #7fffd4;
  color: transparent;
  font-size: 12rem;
  text-shadow: 0.1rem 0.1rem 5rem aquamarine;
  margin: 0;
  text-align: center;
  padding-top: 23rem;
  line-height: 1;
  animation: flash-anime 3.5s linear infinite;
}
@keyframes flash-anime {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  51% {
    opacity: 0.3;
  }
  52% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  76% {
    opacity: 0.6;
  }
  77% {
    opacity: 1;
  }
  78% {
    opacity: 0.3;
  }
  79% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .hotelname {
    font-size: 9rem;
    padding-top: 11rem;
    text-shadow: 0 0 7rem rgba(127, 255, 212, 0.5);
  }
}

.hotelname-back {
  -webkit-text-stroke: 0.25rem rgba(127, 255, 212, 0.3);
  padding-top: 0;
  position: relative;
  bottom: 16.7%;
  left: 0.3%;
  opacity: 0.1;
}
@media (max-width: 768px) {
  .hotelname-back {
    font-size: 9rem;
    bottom: 44%;
    left: 1%;
  }
}

.category-flex {
  display: flex;
  justify-content: flex-end;
  padding-right: 10rem;
  margin-top: -10rem;
}
@media (max-width: 768px) {
  .category-flex {
    margin-top: -25rem;
    padding-right: 1.5rem;
  }
}
.category-flex h2 {
  transform: rotate(-90deg);
  position: relative;
  left: 20.5rem;
  font-size: 5rem;
}
@media (max-width: 768px) {
  .category-flex h2 {
    left: 12.5rem;
    font-size: 3.2rem;
  }
}
.category-flex ul {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: bold;
}
@media (max-width: 768px) {
  .category-flex ul {
    font-size: 2.5rem;
  }
}

.concept {
  padding: 6rem 10rem 0;
}
@media (max-width: 768px) {
  .concept {
    padding: 2rem 2rem 0;
  }
}

.concept-img {
  width: 30rem;
  height: auto;
}
@media (max-width: 768px) {
  .concept-img {
    display: none;
  }
}

.concept-text {
  border: solid 0.2rem aquamarine;
  box-shadow: 0 0 0.5rem 0.5rem rgba(127, 255, 212, 0.3), 0 0 0.5rem 0.5rem rgba(127, 255, 212, 0.3) inset;
}

.room {
  padding: 6rem 10rem 0;
}
@media (max-width: 768px) {
  .room {
    padding: 3rem 2rem 0;
  }
}

.room-img {
  width: 50rem;
  height: auto;
}
@media (max-width: 768px) {
  .room-img {
    width: 100%;
    height: auto;
  }
}

.room-text {
  margin-left: 3rem;
  border: solid 0.2rem dodgerblue;
  box-shadow: 0 0 0.5rem 0.5rem rgba(30, 144, 255, 0.3), 0 0 0.5rem 0.5rem rgba(30, 144, 255, 0.3) inset;
}
@media (max-width: 768px) {
  .room-text {
    margin-top: 1.5rem;
    margin-left: 0;
  }
}

.list-flex {
  display: flex;
  padding: 1rem 1.5rem 2rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .list-flex {
    padding: 1rem;
  }
}
.list-flex ul {
  margin-top: 0;
  margin-bottom: 0;
}

.items-container {
  border: solid 0.2rem slateblue;
  box-shadow: 0 0 0.5rem 0.5rem rgba(106, 90, 205, 0.3), 0 0 0.5rem 0.5rem rgba(106, 90, 205, 0.3) inset;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .items-container {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.items-container h3 {
  text-align: center;
  margin: 2rem 0 0;
}
@media (max-width: 768px) {
  .items-container h3 {
    font-size: 2rem;
    margin: 1rem 0 0;
  }
}

.items-english {
  margin-left: 14rem;
}

.food {
  padding: 6rem 10rem 0;
}
@media (max-width: 768px) {
  .food {
    padding: 3rem 2rem 0;
  }
}

.food-img {
  width: 55rem;
  height: auto;
}
@media (max-width: 768px) {
  .food-img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .foodpc {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .foodsp {
    display: none !important;
  }
}

.food-img2 {
  height: 10rem;
  width: auto;
}

.food-text {
  margin-right: 3rem;
  border: solid 0.2rem orangered;
  box-shadow: 0 0 0.5rem 0.5rem rgba(255, 69, 0, 0.3), 0 0 0.5rem 0.5rem rgba(255, 69, 0, 0.3) inset;
}
@media (max-width: 768px) {
  .food-text {
    margin-top: 1.5rem;
    margin-right: 0;
  }
}

.view-more-food {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .view-more-food {
    margin-top: 2rem;
  }
}

.access-contact {
  padding: 6rem 10rem 0;
}
@media (max-width: 768px) {
  .access-contact {
    padding: 2rem 2rem 0;
  }
}

.flex-container-access {
  display: flex;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .flex-container-access {
    display: initial;
  }
}

.access-detail {
  margin: 0 0 0 5rem;
}
@media (max-width: 768px) {
  .access-detail {
    margin: 0;
  }
}
.access-detail p {
  margin: 0;
  font-weight: 300;
  line-height: 2;
}
@media (max-width: 768px) {
  .access-detail p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  #google_map {
    width: 100% !important;
    height: 20rem !important;
  }
}

footer {
  background: black;
  padding: 6rem 10rem 3rem;
}
@media (max-width: 768px) {
  footer {
    padding: 2rem 2rem 2rem;
  }
}

.sns {
  font-size: 4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .sns {
    font-size: 2rem;
  }
}
.sns i {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
@media (max-width: 768px) {
  .sns i {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.copy-right {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .copy-right {
    font-size: 0.8rem;
  }
}

.backtotop {
  margin: 0 0 1rem;
  font-size: 2.5rem;
  text-align: center;
  -webkit-text-stroke: 0.1rem #7fffd4;
  text-shadow: 0.1rem 0.1rem 5rem aquamarine;
  color: transparent;
  animation: flash-anime 3.5s linear infinite;
}
@keyframes flash-anime {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  51% {
    opacity: 0.3;
  }
  52% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  76% {
    opacity: 0.6;
  }
  77% {
    opacity: 1;
  }
  78% {
    opacity: 0.3;
  }
  79% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .backtotop {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=style.css.map */
