@charset "utf-8";


/* Animation
---------------------------*/

/* 画像配置させるための親要素を設定 */
.image-container {
  position: relative;
  /* 画像の配置の基準を親要素にする */
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 640px;
  max-width: 100%;
  margin: 0 auto; */
  /* height: 450px; */
  width: 100%;
  overflow: hidden;
}


.image:nth-of-type(3),
.image:nth-of-type(2) {
  position: absolute;
  top: 0;
}

.image-container p {
  position: absolute;
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  color: #000000;
  font-size: 20px;
}


/* 親要素を起点に画像を重ねて配置する */
.image {
  /* position: absolute; */
  /* 親要素を起点に配置 */
  /* width: 100%; */
  opacity: 0;
  /* 初めは画像を透明にしておく */
  animation: image-animation 12s infinite;
}


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

.image:nth-of-type(2) {
  animation-delay: 4s;
}

.image:nth-of-type(3) {
  animation-delay: 8s;
}


@keyframes image-animation {

  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

#name,
.info {
  margin: 0 15px;
}

#name {
  margin-top: 10px;
  font-family: "Cardo", serif;
  /* font-weight: normal; */
  font-style: italic;
}

#titl,
.info {
  margin: 0 15px;
}

#titl {
  margin-top: 10px;
  font-size: 28px;
  margin-bottom: 5px;
}

.info {
  font-size: 16px;
}

#bodys {
  margin: 0 15px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #4b4b4b;
}

.notice ul li {
  display: flex;
  font-size: 14px;
  list-style-type: none;
  margin-bottom: 5px;
  gap: 2em;
}

.notice ul li time {
  /* display: inline-block; */
  /* width: 40%; */
  width: fit-content;
  white-space: nowrap;
}

/* .notice ul li span {
  width: 100%;
} */
/* 店員紹介 */

#neko {
  margin-top: 20px;
}

.fhoto {
  width: 256px;
  margin: 0 auto 5px;
  border: 1px solid #4b4b4b;
}

.staff {
  text-align: center;
  font-size: 18px;
  margin-bottom: 3px;
}

.staff-text {
  width: 300px;
  margin: 0 auto;
  font-size: 15px;
  margin-bottom: 20px;
}

.staff-text a {
  color: #4b4b4b;
}

.staff-text a:hover {
  opacity: 0.7;
}

.bottom {
  margin-bottom: 10px;
}

.more {
  text-align: right;
}

.more a {
  text-decoration: none;
  background-color: #f7931e;
  padding: 5px 10px;
  border-radius: 3px;
  color: #ffffff;
  font-size: 15px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.more a:hover {
  opacity: 0.7;
}

/*Google Map
--------------------*/
.shop {
  margin-top: 25px;
}

.map {
  position: relative;
  padding-top: 50%;
}

.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.address {
  margin-top: 10px;
  font-size: 14px;
}

.address dl {
  display: flex;
  margin-bottom: 5px;
}

.address dt {
  width: 30%;
}

.address dd {
  width: 70%;
}

/* 料金案内 */
.table {
  width: 100%;
  border: 2px solid #DEB068;
  border-collapse: collapse;
  margin-bottom: 10px;
}

#time {
  width: 40%;
}

#big {
  width: 29%;
}

#small {
  width: 31%;
}

.table tr th,
td {
  border: 1px solid #DEB068;
  padding: 5px 10px;
}

.table thead tr {
  background-color: #E9D7BA;
}

.table tbody tr:nth-child(even) {
  background-color: #E9D7BA;
}

.table th {
  font-size: 15px;
}

.table td {
  text-align: right;
}

#menu {
  border: 0;
  margin-top: 10px;
}

#menu a {
  text-decoration: none;
  color: #4b4b4b;
}

/* #menu .ya::after {
  content: url(../img/link.svg);
  margin-left: 5px;
  vertical-align: middle;
} */
#menu .ya::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/link.svg) no-repeat;
  background-size: contain;
  margin-left: 5px;
  vertical-align: middle;
}

#menu a:hover {
  color: #f7931e;
  opacity: 0.7;
}

/* 注意事項 */
.attention {
  margin-left: 20px;
  margin-bottom: 10px;
}

.attention li {
  font-size: 16px;
}

/* メニューhtml */
#back-img {
  background-image: url(../img/logo-40.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#titl small {
  font-size: 20px;
}

.menu {
  margin: 10px 15px;
}

.menu fieldset {
  border: 2px solid #4b4b4b;
  border-radius: 5px;
}

.menu fieldset:nth-child(1) {
  margin-bottom: 20px;
}

.menu legend {
  margin-left: 15px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.menu dl {
  display: flex;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px dashed #4b4b4b;
  margin: 0 10px 10px;
}

.menu dt {
  width: 70%;
}

.menu dd {
  width: 30%;
  text-align: right;
}

.menu p {
  font-weight: bold;
  font-size: 16px;
  margin-top: 2px;
}

/* お問い合わせ */
.form {
  margin: 15px 15px;
}

.form dt {
  font-size: 14px;
}

.form dd {
  margin-bottom: 10px;
  font-size: 14px;
}

.form span {
  color: #ff0000;
}

.form input[type="email"] {
  width: 250px;
}

.form textarea {
  width: 300px;
  height: 80px;
}

input[type="submit"] {
  width: 100px;
  background-color: #f7931e;
  padding: 5px 10px;
  border: 1px solid #4b4b4b;
  border-radius: 3px;
  color: #ffffff;
  font-size: 15px;
}

input[type="submit"]:hover {
  cursor: pointer;
  opacity: 0.7;
}


/* プライバシーポリシー */
.privacy:nth-last-of-type(1) {
  padding-bottom: 10px;
}


/* シークレット */
.secret {
  background-color: #000000;
}

.main {
  position: relative;
  height: calc(100% - (60px + 108px));
}

.goodbye {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* .goodbye img {
  position: absolute;
  width: 256px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

.goodbye-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.goodbye-text a {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  padding: 5px 15px;
  font-size: 24px;
  background-color: #f7931e;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.5) inset;
}

.goodbye-text a:hover {
  background-color: #DEB068;
}

.goodbye img {
  width: 256px;
  opacity: 1;
  animation: goodbye-animation 2s 1;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

@keyframes goodbye-animation {

  0% {
    opacity: 1;
  }

  99% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.goodbye-text a {
  opacity: 0;
  animation: goodbye-text-animation 2s 1;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}

@keyframes goodbye-text-animation {

  0% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }

}

/* メニュー別案 */
/* .menu-test2 {
  border: 2px solid green;
  border-radius: 20px;
  border-top: 2px solid transparent;
  margin: 10px;
  padding: 15px;
  position: relative;
}

.menu-test2 h5::before {
  border-top: 3px solid pink;
  width: 20px;
  position: absolute;
  content: "";
  top: 3px;
  left: 6px;
}
.menu-test2 h5 {
  margin-top: -25px;
  margin-left: 20px;
}

.menu-test2 h5::after {
  border-top: 3px solid pink;
  width: calc( 100% - (4em + 30px + 20px) );
  position: absolute;
  content: "";
  top:0;
  left: calc( 4em + 30px + 20px );
} */

/* .menu-test {
  border: 2px solid green;
  margin: 10px;
  padding: 15px;
  position: relative;
}

.menu-test h5 {
  position: absolute;
  left: 30px;
  top:-10px;
  background-color: #E9D7BA;
  padding: 2px;
} */
/* ここまで↑ */



/* レスポンシブ対応 */

@media screen and (min-width: 540px) {
  #back-img {
    background-image: none;
  }

  #main {
    height: calc(100% - (60px + 108px));
    background-image: url(../img/logo-40.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}


@media screen and (min-width: 768px) {

  /* ヘッダー */
  #top {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo {
    top: 0;
    left: 0;
    margin: 0;
    margin-right: 20px;
    padding: 0;
  }

  .menu-btn {
    display: none;
  }

  .menu-content {
    position: relative;
    left: 0;
    top: 0;
    transition: none;
    background-color: transparent;
  }

  .menu-content ul {
    display: flex;
    padding: 0;
  }

  .menu-content ul li {
    transform: none;
    margin: 0 5px;
    border: none;
  }

  .menu-content ul li a {
    padding: 5px 10px;
    text-align: center;
    font-size: 14px;
    text-decoration-line: underline;
  }

  .menu-content ul li a::after {
    display: none;
  }

  .menu-content ul li a:hover {
    color: #ffffff;
    opacity: 0.7;
  }



  /* メイン */
  main {
    max-width: 960px;
    margin: 0 auto;
  }

  #titl,
  .info {
    margin: 0 20px;
  }

  .info {
    font-size: 17px;
  }

  #titl {
    margin-top: 20px;
  }

  #bodys {
    margin: 0 20px;
  }

  /* index-html */
  #name {
    margin: 10px 20px 0;
  }

  .notice ul li {
    font-size: 15px;
  }

  #staff figure {
    display: flex;
  }

  #staff figure img {
    margin: 5px 20px 20px 0;
  }

  #staff .staff {
    text-align: left;
    margin-top: 5px;
  }

  #staff .staff-text {
    width: 100%;
    font-size: 16px;
  }

  .address dl {
    font-size: 15px;
  }

  .address dt {
    width: 20%;
  }

  .address dd {
    width: 80%;
  }

  /* staff-html */
  .neko .staff-text {
    width: 288px;
    font-size: 16px;
  }

  .neko {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .neko figure {
    margin: 15px 5px;
  }

  .pagetop-staff {
    display: none;
  }


  /* menu-html */
  #titl.h1 {
    max-width: 640px;
    margin: 20px auto 0;
  }

  .menu {
    max-width: 640px;
    margin: 10px auto;
  }

  .menu legend {
    font-size: 22px;
  }

  .menu dl {
    font-weight: 700;
  }

  .menu p {
    font-size: 18px;
  }


  /* contact-html */
  #info {
    max-width: 640px;
    margin: 0 auto;
  }

  .form {
    max-width: 640px;
    margin: 15px auto;
  }

  .form dt {
    font-size: 16px;
  }

  .form dd {
    font-size: 16px;
  }

  .form textarea {
    width: 450px;
    height: 150px;
  }


  /* secret-html */
  .goodbye img {
    width: 512px;
  }


}


@media screen and (min-width: 1344px) {

  .pagetop {
    right: 12%;
  }

}