@charset "utf-8"; /* 文字化けしないために書く */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
html {
  font-size: 1.2vw; /* rem単位の基準値 */
}
body {
  /* 全体で余白を一括指定(お節介防止) */
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
}
a {
  /* 一括用*/
  text-decoration: none;
  display: inline-block;
  transition: 0.5s;
}
p,
li,
a {
  font-size: 1rem;
  color: #181818;
}
h3 {
  font-size: 1.5rem;
}
.space {
  width: 100%;
  height: 90px;
}
.top_wrapper {
  display: block;
  position: relative;
  height: 47vw;
  width: 100%;
  background-size: contain;
  background-image: url(./_img/takiplaza.webp);
  background-size: 100% auto;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
/* 時間限定表示→ */
.top-wrapper-sub {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  height: 47vw; /* 画面幅の56％ */
  width: 100%;
  background-image: url(./_img/tamagokakegohan.webp);
  background-size: 100% auto;
  background-attachment: fixed;
}
.tamago {
  color: #fdd80d;
  position: absolute;
  font-size: 50px;
  font-weight: bold;
  line-height: 1.2em;
  left: 120px;
  top: -50px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.tamago p {
  position: absolute;
  left: 15%;
  top: -50px;
  color: #fdd80d;
  font-size: 10vw;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  line-height: 1.2em;
  padding-bottom: 0;
  margin-bottom: 0;
  animation-name: fade, slide;
  animation-duration: 2s;
}
/* ←時間限定表示終わり */
.top_logo p {
  position: absolute;
  left: 15%;
  top: -50px;
  color: #5cb200;
  font-size: 10vw;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  line-height: 1.2em;
  padding-bottom: 0;
  margin-bottom: 0;
  animation-name: fade, slide;
  animation-duration: 2s;
}
@keyframes fade {
  /* fadein */
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide {
  /* slide表示 */
  0% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0px);
  }
}
.top_txt {
  position: absolute;
  bottom: 0;
  transform: translate(-50%, -50%);
  left: 50%;
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 0;
}
.btn2_mobile {
  /* vw対応まだしてない */
  display: none;
  color: #fff;
  font-weight: normal;
  background-color: #e60693;
  padding: 10px 30px;
  margin: 15px 5px 5px 15px;
  position: absolute;
  top: 10px;
  right: 20px;
}
