@charset "UTF-8";
html {
  display: flex;
  flex-direction: column;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  min-height: 1px;
}

footer {
  margin-top: auto;
}

body {
  overflow-x: hidden;
  font-family: "Zen Maru Gothic", serif;
  font-size: 16px;
  color: #000000;
  background: #e8e4eb;
}

p {
  line-height: 1.6;
}

a {
  text-decoration: underline;
  color: #1a0dab;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
  color: #1a0dab;
}
a.btn {
  text-decoration: none;
}

:focus,
button:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: none;
}

h2 {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-family: "obviously", sans-serif;
  font-weight: 800;
  text-align: center;
}
@media (max-width: 575px) {
  h2 {
    font-size: 2rem;
  }
}

ul {
  list-style: none;
  padding-left: 0;
}

@media (max-width: 575px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.notes_sec, .item_sec {
  padding: 100px 0;
  border-top: 1px solid #000;
}
@media (max-width: 991px) {
  .notes_sec, .item_sec {
    padding: 70px 0;
  }
}
@media (max-width: 575px) {
  .notes_sec, .item_sec {
    padding: 50px 0;
  }
}

.notes_sec {
  background: url(../img/bg-flower.jpg) repeat;
}
@media (max-width: 575px) {
  .notes_sec {
    background-size: 100px 100px;
  }
}

.item_sec {
  background: #d0b4e5;
  position: relative;
}
.item_sec::before {
  content: "";
  background: url(../img/bg-kira.png) repeat-y left;
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
}
@media (max-width: 575px) {
  .item_sec::before {
    width: 50%;
    background-size: contain;
  }
}
.item_sec::after {
  content: "";
  background: url(../img/bg-kira.png) repeat-y left;
  transform: scale(-1, 1);
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
}
@media (max-width: 575px) {
  .item_sec::after {
    width: 50%;
    background-size: contain;
  }
}
.item_sec .item-inner {
  position: relative;
  z-index: 10;
}

footer {
  padding: 10px 0;
  background-color: #000000;
  position: relative;
  z-index: 10;
}
footer .copyright {
  display: block;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 575px) {
  footer {
    padding: 20px 0 70px;
  }
}

#page-top {
  position: fixed;
  right: 0;
  bottom: 10px;
  z-index: 100;
  margin-bottom: 0;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(150px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(150px);
  }
}
/*画像の切り替えと動き*/
#page-top a {
  display: block;
  width: 100px;
  height: 100px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  background: url("../img/top-btn.png") no-repeat center;
  background-size: contain;
}
@media (max-width: 575px) {
  #page-top a {
    width: 70px;
    height: 70px;
  }
}

#page-top.floatAnime a {
  width: 100px;
  height: 130px;
  background: url("../img/top-btn-02.png") no-repeat center;
  background-size: contain;
  animation: floatAnime 2s linear infinite;
  opacity: 0;
}

@keyframes floatAnime {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  25% {
    transform: translateX(-6px);
    opacity: 1;
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(6px);
    opacity: 1;
  }
}
header {
  padding: 10px 20px;
}
@media (max-width: 575px) {
  header {
    padding: 8px;
  }
}
header .img-logo {
  width: 25vw;
  max-width: 100px;
}
@media (max-width: 991px) and (min-width: 576px) {
  header .img-logo {
    width: 15vw;
  }
}

.img-center {
  padding: 10px;
}
.img-center img {
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid #000;
}

.notes_sec .notes-box {
  padding: 30px;
  border: 1px solid #000;
  border-radius: 10px;
  background: #fcf2f7;
}
@media (max-width: 575px) {
  .notes_sec .notes-box {
    padding: 15px;
  }
}
.notes_sec .notes-box > dt {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px dotted #000;
}
.notes_sec dd {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .notes_sec dd {
    margin-bottom: 1rem;
  }
}
.notes_sec .info-list li {
  margin-bottom: 5px;
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.notes_sec .info-list li span {
  margin-right: 0.3em;
}
.notes_sec .logo {
  width: 50px;
  height: auto;
}

a {
  text-decoration: underline;
  word-break: break-all;
  color: #000;
}
@media (hover) {
  a:hover {
    text-decoration: none;
    opacity: 0.8;
    color: #000;
  }
}
a.btn {
  text-decoration: none;
}

.cart_btn_ {
  width: 100%;
  border: 1px solid #000;
  color: #000;
  box-shadow: 3px 3px 0px 0px rgb(0, 0, 0);
  font-weight: 600;
  display: block;
  text-decoration: none;
  padding: 5px;
  text-align: center;
  border-radius: 50px;
  transition: 0.3s;
}

.order_ {
  background-color: #ffba01;
}
.order_:hover {
  color: #000;
  text-decoration: none;
}
@media (hover) {
  .order_:hover {
    background-color: rgba(255, 186, 1, 0.6);
  }
}

.reservation_ {
  background: #ffa68e;
}
.reservation_:hover {
  color: #000;
  text-decoration: none;
}
@media (hover) {
  .reservation_:hover {
    background-color: rgba(255, 186, 1, 0.6);
  }
}

.sold_out_ {
  background: #f35459;
}

.closed_ {
  background: #bbb;
}

.item_sec .goods_img_ {
  text-decoration: none;
}
.item_sec .StyleF_Frame_ {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 991px) {
  .item_sec .StyleF_Frame_ {
    gap: 8px;
  }
}
.item_sec .StyleF_Item_ {
  position: relative;
  width: calc((100% - 45px) / 4);
  padding: 15px 15px 55px;
  border: 1px solid #000;
  border-radius: 10px;
  background: #fff;
}
@media (max-width: 991px) {
  .item_sec .StyleF_Item_ {
    width: calc((100% - 8px) / 2);
    padding: 8px 8px 40px;
  }
}
.item_sec .name_ {
  margin: 0.5rem 0;
  font-weight: 600;
  color: #000;
}
.item_sec .name_ a {
  text-decoration: none;
}
.item_sec .price_ {
  margin-bottom: 0.5rem;
  text-align: right;
}
.item_sec .cart_ {
  width: calc(100% - 30px);
  position: absolute;
  bottom: 15px;
  text-align: center;
}
@media (max-width: 991px) {
  .item_sec .cart_ {
    width: calc(100% - 16px);
    bottom: 8px;
  }
}
.item_sec .limit-item {
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  font-weight: 600;
  border: 1px solid #000;
  background: #fcf2f7;
}
@media (max-width: 767px) {
  .item_sec .limit-item {
    font-size: 14px;
  }
}
.item_sec .rdt_, .item_sec .comment_ {
  display: none;
}/*# sourceMappingURL=custom.css.map */