@charset "UTF-8";
header {
  background-color: #fcf9f4;
  width: 300px;
  height: 100vh;
  position: fixed;
  color: #4b463e;
  overflow-y: auto;
}

@media (max-width: 1260px) {
  header {
    height: 80px;
    width: 100%;
    font-size: 14px;
    z-index: 20;
    top: 0;
  }
}
.logo {
  width: 150px;
  height: 150px;
  margin-top: 30px;
  margin-inline: auto;
}

@media (max-width: 1260px) {
  .logo {
    width: 50px;
    height: 50px;
    margin-top: 20px;
    margin-inline: 50px;
  }
}
.header-menu {
  width: 200px;
  margin: 50px auto;
  padding-left: 0;
}
.header-menu li {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  align-items: center;
}

.active-icon {
  height: 30px;
  width: 30px;
  opacity: 0;
  margin-left: 5px;
}

.active .menu-title {
  font-size: 20px;
  font-weight: bold;
}
.active .active-icon {
  opacity: 1;
}

.menu-title {
  margin-left: 10px;
}

.instagram {
  background-color: #775939;
  color: white;
  width: 200px;
  padding-block: 10px;
  padding-right: 5px;
  border-radius: 50px;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.instagram-icon {
  width: 20px;
  height: 20px;
}

.header-mask {
  position: fixed;
  inset: 0;
  background: #fcf9f4;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.5s, visibility 0.5s;
  z-index: 5;
}

.toggle_btn {
  display: none;
  position: relative;
  cursor: pointer;
  width: 20px;
  height: 20px;
  z-index: 40;
}

@media (max-width: 1260px) {
  .toggle_btn {
    display: block;
    position: fixed;
    top: 30px;
    right: 40px;
  }
}
/*ハンバーガーメニューの線の設定（メニューが閉じている時）*/
.toggle_btn span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #333;
  transition: all 0.5s;
  position: absolute;
  z-index: 10;
}

/*1本目の線の位置を設定*/
.toggle_btn span:nth-child(1) {
  top: 2px;
}

/*2本目の線の位置を設定*/
.toggle_btn span:nth-child(2) {
  top: 10px;
}

/*3本目の線の位置を設定*/
.toggle_btn span:nth-child(3) {
  top: 18px;
}

/*1本目の線を-45度回転
transformで線のど真ん中の点を中心に動く
*/
.open .toggle_btn span:nth-child(1) {
  top: 50%;
  transform: rotate(-45deg);
  background-color: #775939;
}

.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

/*
3本目の線を45度回転
*/
.open .toggle_btn span:nth-child(3) {
  top: 50%;
  transform: rotate(45deg);
  background-color: #775939;
}

/* 2本の線がtop: 50%となったため中心に重なる */
.open .header-mask {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 1260px) {
  header nav {
    position: fixed;
    top: 0;
    left: -1000px;
    transition: all 0.5s;
    background-color: white;
    height: 100vh;
    padding-inline: 30px;
    z-index: 30;
  }
  .open nav {
    left: 0px;
  }
}
main {
  width: 450px;
  margin-left: 400px;
}

@media (max-width: 1260px) {
  main {
    width: 100%;
    margin: 0 auto;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.section-about,
.section-cats,
.section-menu,
.section-access {
  padding-block: 50px;
  margin-inline: 10px;
  border-bottom: 2px dotted #775939;
}

.section-top {
  padding-top: 10px;
  margin-inline: 10px;
}

@media (max-width: 1260px) {
  section {
    padding-top: 80px;
  }
}
.section-title {
  color: #a97db8;
  font-size: 32px;
  margin-block: 20px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.second-title {
  margin-block: 20px;
}

.section-texts {
  font-size: 16px;
  text-align: center;
  margin-top: 50px;
}

section p {
  margin-block: 10px 30px;
}

.mainvisual {
  width: 100%;
  height: 600px;
  position: relative;
}
.mainvisual p {
  color: white;
  position: absolute;
  bottom: 100px;
  left: 20px;
}

.fade {
  width: 100%;
  position: relative;
  height: 600px;
}
.fade li {
  opacity: 0;
  animation: fade 15s infinite;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.fade img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fade li::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: -4px;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 15px 15px #fcf9f4;
}

.fade li:nth-of-type(1) {
  animation-delay: 0s;
}

.fade li:nth-of-type(2) {
  animation-delay: 5s;
}

.fade li:nth-of-type(3) {
  animation-delay: 10s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.scroll-sign {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}

@media (max-width: 1260px) {
  .scroll-sign {
    margin-bottom: 0;
  }
}
.scroll-sign::after,
.scroll-sign::before {
  position: absolute;
  content: "";
  background-color: #775939;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-sign::after {
  width: 2px;
  height: 50px;
}

.scroll-sign::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.safety-care {
  background-color: #775939;
  color: white;
  font-weight: bold;
  width: 200px;
  padding-block: 10px;
  margin-block: 50px 0;
  margin-inline: auto;
  text-align: center;
  border-radius: 50px;
}

.slide-items {
  width: 100%;
  height: 100%;
}
.slide-items li {
  margin: 0 2px;
}

.slide-items img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.care1,
.care2,
.care3 {
  background-color: white;
  border: 2px solid #775939;
  width: 100%;
  height: 150px;
  border-radius: 20px;
  display: flex;
  margin: 20px auto;
}

.care-img {
  width: 90px;
  height: 90px;
  margin: auto 20px;
}

.care1 .care-texts,
.care2 .care-texts,
.care3 .care-texts {
  margin-block: auto;
  margin-right: 30px;
}

.care-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.care-text {
  font-size: 12px;
  margin-block: 10px;
}

/* Our Cats */
.profile-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.profile-menu li {
  border-radius: 20px;
  padding: 0;
  width: 100%;
  border: none;
  cursor: pointer;
  position: relative;
}
.profile-menu li:hover {
  opacity: 0.5;
}
.profile-menu button {
  width: 100%;
  height: 100%;
}
.profile-menu .profile-img img {
  border-radius: 20px;
  height: 180px;
}
.profile-menu .name-en,
.profile-menu .name-ja {
  position: absolute;
  bottom: 10px;
  left: 20px;
}
.profile-menu .name-en {
  font-size: 24px;
  font-weight: bold;
  opacity: 0.6;
  color: #fcf9f4;
}
.profile-menu .name-ja {
  font-size: 12px;
  color: white;
  font-weight: bold;
}

.modal-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.6;
  z-index: 1000;
  cursor: pointer;
}

.modal-close {
  text-align: right;
  cursor: pointer;
}

.modal {
  width: 350px;
  margin: 20px auto;
  border-radius: 20px;
  background-color: #fcf9f4;
  border: 1px solid #775939;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  display: none;
  transition: all 0.5s;
}

.modal-content {
  margin: 20px;
}

.page-number {
  text-align: center;
  margin-bottom: 20px;
}

.modal-img {
  margin: 20px;
}
.modal-img img {
  border-radius: 20px;
}

.modal-texts {
  margin-inline: 20px;
}
.modal-texts p {
  font-size: 14px;
  margin-block: 20px 30px;
}

.modal-item {
  border-bottom: 2px dotted #a97db8;
  display: flex;
  padding-block: 10px;
}

.modal-en {
  font-size: 12px;
  color: #a97db8;
  font-weight: bold;
  width: 40%;
}

.modal-ja {
  font-size: 14px;
  width: 60%;
}

.next-btn {
  position: relative;
  margin: 5px;
}

.to-right,
.to-left {
  width: 30px;
  background-color: white;
  border: 1.5px solid #775939;
  border-radius: 100%;
  position: absolute;
  top: 50%;
}

.to-right {
  left: 96%;
}

.to-left {
  right: 96%;
}

.open .modal {
  opacity: 1;
}

.standard-plan,
.extension-time {
  background-color: white;
  border: 1px solid #cdc5ba;
  border-radius: 20px;
  padding: 20px;
  margin-block: 20px;
}

.relax-plan {
  background-color: white;
  border: 1px solid #775939;
  border-radius: 20px;
  padding: 20px;
  position: relative;
}
.relax-plan .recommend {
  background-color: #775939;
  color: white;
  padding: 5px;
  width: 70px;
  font-size: 10px;
  text-align: center;
  position: absolute;
  top: -10px;
  right: 20px;
  border-radius: 20px;
}

.plan {
  display: flex;
  justify-content: space-between;
}

.plan-title {
  font-size: 16px;
  font-weight: bold;
}

.time {
  font-size: 14px;
}

.plan-price {
  font-size: 24px;
  font-weight: bold;
}

.plan-item {
  display: flex;
  align-items: center;
}

.plan-icon {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.tab-container {
  width: 100%;
}

.tab-title {
  border-radius: 20px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.tab-title li {
  width: 50px;
  height: 50px;
  width: 100px;
  background-color: #cdc5ba;
  border: 1px solid #775939;
  border-radius: 20px;
  text-align: center;
}
.tab-title a {
  font-weight: bold;
  background-color: #cdc5ba;
}
.tab-title img {
  width: 20px;
  height: 20px;
}
.tab-title .select {
  background-color: white;
}
.tab-title .select a {
  background-color: white;
}

#tab .menu-item {
  display: none;
}

#tab .menu-item.select {
  display: block;
  background: white;
  border-radius: 20px;
  padding: 40px;
  min-height: 400px;
}

.menu-name {
  margin-block: 10px;
}

.menu-price {
  font-weight: bold;
}

.seasonal-sign {
  margin-block: 10px;
  font-weight: bold;
}
.seasonal-sign img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

iframe {
  width: 100%;
}

.menu-img img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.access-title,
.info-title {
  font-weight: bold;
  margin-block: 10px;
  border-bottom: 1px dotted #775939;
}

small {
  font-size: 12px;
  display: block;
  text-align: center;
  margin-block: 12px;
}

.news {
  background-color: white;
  padding: 10px;
}

.news-article {
  width: 100%;
  border-block: 2px dotted #a97db8;
  display: flex;
}

.post-date {
  width: 30%;
  padding: 10px;
}

.article-title {
  width: 70%;
  padding: 10px;
}

footer {
  height: 100vh;
  width: 38vw;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fcf9f4;
  overflow-y: auto;
}

.news {
  background-color: white;
  width: auto;
  min-height: 300px;
  padding: 20px 30px;
  margin: 50px;
  border-radius: 20px;
}

small {
  color: #775939;
}

@media (max-width: 1260px) {
  footer {
    position: static;
    width: 100%;
    height: auto;
    background-color: white;
  }
  footer .news {
    background-color: #fcf9f4;
    border: 1px solid #775939;
  }
  small {
    color: #775939;
  }
}
img,
video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

a {
  text-decoration-line: none;
}

li {
  list-style: none;
}

.container {
  width: 400px;
}

@media (max-width: 1260px) {
  .container {
    width: 100%;
  }
}
.wrapper {
  width: 400px;
  margin: 0 auto;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 1260px) {
  body {
    flex-direction: column;
  }
  .container {
    width: 100%;
  }
  .wrapper {
    width: 100%;
    margin-top: 90px;
  }
}
* {
  color: #775939;
}

ul {
  padding: 0;
}/*# sourceMappingURL=style.css.map */