@charset "utf-8";
/* CSS Document */
.body{
  box-sizing: border-box;
}
.header {
  width: 100%;
  box-sizing : border-box;
  background-color: #97ad41;
  padding: 0 20px 0 25px;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__topic, .nav__topic {
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(0.9rem, 4.8vw, 1.8rem);
  line-height: 1;
  text-align: left;
  width: 160px;
}
.header__btn {
  width: 50px;
  height: 50px;
}
.nav__topic {
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.8rem;
}
.nav {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  text-align: left;
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.nav__header {
  padding: 0 40px;
  width: 65%;
  max-width: 375px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #dcdcdc;
  z-index: 999;
}
.nav__header img {
  width: 29px;
  height: 29px;
}
.nav__list {
  background-color: #FFF;
  padding: 0 40px;
  width: 65%;
  max-width: 375px;
  height: 100%;
  font-weight: 600;
}
.nav__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #333;
}
.nav__list li img {
  width: 15px;
  height: 15px;
  display: block;
}
.nav__list li a {
  color: #333;
  font-size: 1.8rem;
  padding: 20px 0;
  width: 100%;
  position: relative;
}
.nav__list li a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("../images/move@2x.png");
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
}
.nav.active {
  transform: translateX(0);
}
.nav2 {
  display: none;
}
@media(min-width:767px) {
  .header__btn, .nav {
    display: none;
  }
  .nav2 {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .nav2 ul {
    display: flex;
    box-sizing: border-box;
  }
  .nav2 ul li {
    padding-left: 15px;
  }
  .nav2 ul li:first-child {
    padding-left: 0;
  }
  .nav2 ul li a {
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 600;
  }
}
@media(min-width:1220px) {
  .header {
    display: none;
  }
}
.main {
  height: 550px;
  margin-bottom: 50px;
  position: relative;
}

.container {
  height: 100%;
  background-image: url("../images/main-image-sp2@2x.jpg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  overflow: hidden;
}
.lyrics {
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.2rem;
  line-height: 3.6rem;
}
.lyrics--line {
  display: flex;
  justify-content: center;
}
.lyrics--line .syllable {
  background: linear-gradient(90deg, #f90707 0 var(--cursor, 0), darkgrey var(--cursor, 0) 100%);
  -webkit-background-clip: text;
  color: rgb(255 255 255 / 80%);
}
.main_title span {
  display: inline-block;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 5.0rem;
  line-height: 1;
  text-shadow: black 2px 2px 2px;
}
.main__image__title-facade {
  width: 50%;
  max-width: 235px;
  position: absolute;
  top: -10px;
  left: 0;
}
.main__tel p {
  color: #FFF;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto 15px;
  line-height: 35px;
}
.main__tel p a {
  color: #FFF;
  text-decoration: none;
  font-size: 3.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
}
.main__nav {
  display: none;
}
@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}
@media(min-width:850px) {
  .container {
    background-image: url("../images/main-cp@2x.jpg");
  }
  .lyrics {
    width: 800px;
    font-size: clamp(2.4rem, 2.5vw, 4.0rem);
    line-height: 1;
    padding-top: 50px;
  }
  .lyrics--line {
    margin-top: -50px;
  }
  .main_title {
    width: 800px;
    height: 80px;
  }
  .main_title span {
    display: block;
 
       font-size: clamp(4.0rem, 6vw, 10rem);
         text-shadow: black 3px 3px 3px;
    padding-top: 10px;

  }
  .main__tel br {
    display: none;
  }
  .main__tel p {
    height: 30px;
    line-height: 1;
    margin-bottom: 20px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main__tel p a {
    display: inline-block;
    font-size: 4.0rem;
    line-height: 1;
    padding-left: 20px;
  }
}
@media(min-width:1220px) {
  .main {
    height: 900px;
    position: relative;
    margin: 0 auto 100px;
    max-width: 1920px;
  }
  .container {
    background-image: url("../images/main-cp@2x.jpg");
  }
  .main__image__title-facade {
    display: none;
  }
  .main_title {
    padding: 30px 0 0 30px;
  }
  .main__nav {
    display: block;
    position: absolute;
    top: 0;
    left: 10%;
    background-color: #97ad41;
    width: 20%;
    max-width: 280px;
    height: 695px;
  }
  .main__nav p {
    color: #FFF;
    margin-top: 60px;
    font-size: 2.0rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
  }
  .main__nav-image {
    margin-top: 30px;
    width: 17vw;
    max-width: 250px;
  }
  .main__nav ul {
    margin-top: 40px;
  }
  .main__nav ul li a {
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2;
    text-align: left;
    display: block;
    list-style-position: inside;
    padding-left: 20px;
  }
  .main__nav ul li a span {
    font-size: 1.0rem;
    vertical-align: middle;
    padding-right: 10px;
  }
  .main__nav-icon {
    width: 143px;
    margin-right: -200px;
  }
}
.fadeIn {
  transform: translate(0, 50px);
  opacity: 0;
  transition: 0.8s;
}
.fadeIn.animated {
  transform: translate(0, 0);
  opacity: 1;
}
.catch {
  margin: 0 24px;
}
.catch h2 {
  margin: 0 auto;
  font-size: clamp(1.8rem, 10vw, 3.5rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  white-space: nowrap;
  line-height: 1.5;
}
.catch span {
  font-size: clamp(2.3rem, 15vw, 5.5rem);
  line-height: 1.3;
}
.catch p {
  margin: 24px auto;
  text-align: left;
  font-size: clamp(1rem, 4.8vw, 1.8rem);
}
.catch p br {
  display: none;
}
.catch__images {
  position: relative;
  width: 95%;
  max-width: 320px;
  height: 124vw;
  max-height:465px;
  margin: 0 auto;
  box-sizing: border-box;
}
.catch__images-table {
  width: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.catch__images-counter {
  width: 70%;
  position: absolute;
  top: 0;
  right: 0;
}
.catch__images__girl {
  width: 160px;
  height: 220px;
  margin: -170px 0 0 50%;
  position: relative;
}

.catch__images__girl-dog {
  width: 127px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.catch__images__girl small {
  font-size: 1.2rem;
  text-align: left;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
}
.catch__images__illust {
  margin-top: 15px;
  width: 270px;
}
.catch__images__illust-pc {
  display: none;
}
@media(min-width:480px) {
  .catch {
    margin: 0 auto;
    width: 60vw;
  }
}
@media(min-width:980px) {
  .catch {
    position: relative;
    margin: 0 auto 50px;
  }
  .catch h2 {
    font-size: clamp(3.0rem, 3vw, 6.0rem);
  }
  .catch h2 br {
    display: block;
  }
  .catch span {
    font-size: clamp(4.0rem, 5vw, 9.6rem);
  }
  .catch p {
    font-size: clamp(1.6rem, 1.6vw, 2.0rem);
    line-height: 1.5;
    margin: 50px 0;
    width: 28vw;
  }
  .catch-area {
    display: flex;
  }
  .catch__images {
    position: relative;
    width: 30vw;
    max-width: 695px;
    height: 40vw;
    margin: 10px -10vw 0 2vw;
  }
  .catch__images__girl {
    width: 21vw;
    max-width: 280px;
    height: 19vw;
    margin: -15vw 0 0 40vw;
    position: relative;
    transform: translateY(-40px);
  }
  .catch__images__girl-dog{
    display: none;
    
  }
  .catch__images__girl-dog-pc {
    display: inline-block;
    width: 18vw;
    max-width: 270px;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .catch__images__girl small {
     position: absolute;
  left: 0;
  bottom: 0;
    font-size: clamp(1.2rem, 1vw, 1.4rem);
  }
  .catch__images__illust {
    display: none;
  }
  .catch__images__illust-pc {
    width: 28vw;
    max-width: 450px;
    display: block;
  }
}
@media(min-width:1220px) {
  .catch__images-table {
    width: 60%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .catch {
    margin-bottom: 80px;
  }
  .catch__images__illust-pc {
    width: 30vw;
    display: block;
    margin: -10% 0 0 -5vw;
  }
}
@media(min-width:1228px) {
  .catch {
    margin-bottom: 50px;
    max-width: 1125px;
    box-sizing: border-box;
    height: auto;
    max-height: 790px;
  }
  .catch h2 {
    text-align: left;
  }
  .catch h2 br {
    display: none;
  }
  .catch p {
    margin: 50px 0;
    line-height: 2;
    width: 25vw;
  }
  .catch__images-table {
    width: 70%;
    max-width: 378px;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: -80px;
  }
  .catch__images-counter {
    width: 70%;
    max-width: 378px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .catch__images__girl {
    max-width: 280px;
    height: 320px;
    margin: -250px 0 0 50vw;
  }
  .catch__images {
    margin-left: -5vw;
    max-width: 630px;
    box-sizing: border-box;
    max-height: 690px;
  }
}
@media(min-width:1900px) {
  .catch {
    width: 1920px;
    margin: 0 auto;
  }
  .catch p br {
    display: block;
  }
  .catch__text p br {
    display: block;
  }
  .catch__images-counter {
    width: 370px;
  }
  .catch__images-table {
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 370px;
  }
  .catch__images__girl {
    height: 300px;
    margin: -250px 0 0 950px;
  }
  .catch__images__girl-speech {
    max-width: 120px;
  }
  .catch__images__girl-dog {
    max-width: 180px;
    position: absolute;
    right: 3vw;
    bottom: 0;
  }
}
.night {
  background-color: #fdfbe9;
  padding-bottom: 35px;
  margin-bottom: 35px;
}
.night h2 {
  margin-top: 25px;
  width: 75px;
  color: #FFF;
  text-align: left;
  font-size: 2.4rem;
  padding: 2px 50px 1px;
  background-color: #333;
}
.night__time {
  text-align: left;
  margin-left: 25px;
}
.night__time dt {
  margin-top: 20px;
  font-size: 2.5rem;
  line-height: 25px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
}
.night__time dd {
  font-size: 5.0rem;
  line-height: 50px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
}
.night__time dd small {
  display: block;
  margin-top: 8px;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1;
}
.night__images-main-icon {
  display: none;
}
.night__catch {
  height: 355px;
  writing-mode: vertical-rl;
  margin: 50px auto 0;
  text-align: left;
  position: relative;
}
.night__catch-main {
  font-size: min(10vw, 40px);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  margin-top: -10px;
}
.night__catch p {
  height: 270px;
  margin-right: 10px;
  font-size: 1.8rem;
  font-weight: 600;
}
.night__catch-cp {
  display: none;
}
.night__catch img {
  width: 82px;
  position: absolute;
  right: 120px;
  bottom: 8px;
  left: 0;
  margin: auto;
}
.night__images-main-pc {
  display: none;
}
.night__images-main {
  width: 100%;
  max-width: 375px;
  height: 200px;
  position: relative;
  margin: 0 auto;
}
.night__images-main_1 {
  width: 50%;
  position: absolute;
  top: -10%;
  right: 0;
  left: 50%;
  margin: auto;
  filter: drop-shadow(2px 5px 5px rgba(50, 50, 50, 0.4));
  overflow: hidden;
}
.night__images-main_2 {
  width: 55%;
  position: absolute;
  top: 0;
  right: 50%;
  left: 0;
  margin: auto;
  filter: drop-shadow(2px 5px 5px rgba(50, 50, 50, 0.4));
  overflow: hidden;
  z-index: 888;
}
.night__images-other ul {
  margin-top: -25px;
}
.night__images-other ul li img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  margin-bottom: 15px;
}
.night__set-menu {
  width: 100%;
}
.night__set-menu h4 {
  font-size: min(12vw, 45px);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
}
.night__set-menu h4 span {
  font-size: 5.5rem;
  vertical-align: -3px;
  letter-spacing: -15px;
  display: inline-block;
  margin: 0 0 0 -20px;
}
.night__set-menu__price {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.night__set-menu__price p {
  color: #d7443f;
  font-size: 26vw;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  text-align: right;
  line-height: 1;
  margin-bottom: 5px;
}
.night__set-menu__price p span {
  display: inline-block;
  font-size: 4.5rem;
}
.night__set-menu__price small {
  display: block;
  text-align: right;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}
.night__time__illust {
  width: 80%;
  max-width: 325px;
  margin-top: 30px;
}
@media(min-width:480px) {
  .night h2 {
    width: 30%;
    padding: 2px 5% 1px;
    text-align: center;
    background-color: #333;
  }
  .night__time {
    text-align: left;
    margin-left: 15%;
  }
  .night__images-other {
    margin: 0 auto;
    width: 375px;
    overflow: hidden;
  }
  .night__images-other ul li img {
    max-width: 375px;
  }
  .night__set-menu__price {
    max-width: 386px;
  }
  .night__set-menu__price p {
    font-size: 13.0rem;
  }
}
@media(min-width:980px) {
  .night {
    margin: 0 auto;
  }
  .night__area {
    margin: 0 auto;
    width: 60vw;
    max-width: 1125px;
    height: auto;
    display: flex;
  }
  .night h2 {
    margin-top: 0;
    text-align: center;
    writing-mode: vertical-lr;
    font-size: clamp(2.4rem, 2vw, 3.0rem);
    width: auto;
    height: 276px;
    padding: 0 5px;
  }
  .night__time {
    margin-left: 5%;
  }
  .night__time dt {
    margin-top: 85px;
    font-size: clamp(2.5rem, 2vw, 3.0rem);
    line-height: 1;
  }
  .night__time dd {
    font-size: clamp(5.0rem, 5vw, 7.0rem);
    line-height: 1;
  }
  .night__catch {
    height: auto;
    max-height: 530px;
    margin: 85px 0 0;
  }
  .night__catch-main {
    font-size: clamp(4.0rem, 4vw, 6.0rem);
  }
  .night__catch-sp {
    display: none;
  }
  .night__catch-cp {
    display: block;
  }
  .night__catch p {
    height: auto;
    margin-right: initial;
    line-height: 2vw;
    font-size: clamp(1.6rem, 1.5vw, 2.0rem);
    font-weight: 500;
    padding: 0 10px;
  }
  .night__catch img {
    display: none;
  }
  .night__images-main {
    display: none;
  }
  .night__images-area {
    width: 50vw;
    max-width: 975px;
    margin-left: -10vw;
    padding-right: 10px;
    position: relative;
  }
  .night__images-main-icon {
    display: block;
    width: 7.8vw;
    max-width: 150px;
    position: absolute;
    right: -5%;
    bottom: 8%;
  }
  .night__images-main-pc {
    display: block;
    width: 50vw;
    max-width: 975px;
  }
  .night__images-other {
    display: none;
  }
  .night__images-other-pc {
    display: inline-block;
  }
  .night__images-other-pc ul {
    display: flex;
    flex-wrap: nowrap;
    width: 100vw;
    max-width: 1920px;
    margin: -2% auto 0;
  }
  .night__images-other-pc ul li {
    width: calc(100%/3);
    padding-left: 10px;
    box-sizing: border-box;
  }
  .night__images-other-pc ul li img {
    display: inline-block;
    width: 100%;
    max-width: 1920px;
    height: 98%;
    margin: initial;
    object-fit: cover;
  }
  .night__images-other-pc ul li:first-child {
    padding-left: 0;
  }
  .night__images-other-pc ul li:last-child, .night__images-other-pc ul li:nth-child(2) {
    display: inline-block;
  }
  .night__set-menu-area {
    max-width: 1920px;
    margin: 0 auto;
  }
  .night__set-menu {
    display: flex;
    flex-wrap: nowrap;
    margin: 3% auto 0;
    width: 58vw;
    max-width: 960px;
    white-space: nowrap;
    transform: translateX(-60px);
  }
  .night__set-menu h4 {
    font-size: clamp(4.0rem, 4vw, 5.0rem);
    width: 100%;
  }
  .night__set-menu h4 span {
    font-size: clamp(5.0rem, 5vw, 7.0rem);
    margin: 0 0 0 -25px;
  }
  .night__set-menu__price {
    max-width: none;
    width: 100%;
  }
  .night__set-menu__price p {
    font-size: clamp(10.0rem, 10vw, 17.0rem);
    width: 100%;
    margin-bottom: 5px;
  }
  .night__set-menu__price p span {
    font-size: clamp(4.0rem, 4vw, 7.0rem);
  }
  .night__set-menu__price small {
    font-size: clamp(2.4rem, 2.0vw, 3.0rem);
  }
  .night__set-menu-area {
    width: 100%;
    position: relative;
  }
  .night__time__illust {
    width: 23%;
    max-width: none;
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 10px;
  }
}
.daytime {
  padding-bottom: 45px;
  border-bottom: solid 2px #dcdcdc;
}
.daytime__icon-cp {
  display: none;
}
.daytime__time {
  text-align: left;
  margin-left: 25px;
}
.daytime__icon {
  display: flex;
  margin-bottom: 10px;
}
.daytime h3 {
  margin-top: 25px;
  width: 75px;
  height: 39px;
  color: #FFF;
  text-align: left;
  font-size: 2.4rem;
  padding: 4px 50px 0;
  background-color: #8da13c;
}
.daytime__icon-sp {
  width: 100px;
  margin-left: 10px;
}
.daytime__time dt {
  font-size: 2.5rem;
  line-height: 25px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 5px;
}
.daytime__time dd {
  font-size: 5.0rem;
  line-height: 50px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 2px;
}
.daytime__time dd small {
  display: block;
    font-size:clamp(1.4rem, 4.0vw, 1.8rem);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 20px;
}
.daytime__contact {
  width: 85%;
  height: auto;
  box-sizing: border-box;
  border: solid 1px #333;
  margin: 0 auto 20px;
  border-radius: 5px;
  padding: 15px 0;
  line-height: 1;
}
.daytime__contact dt {
  font-size: 2.0rem;
}
.daytime__contact dd {
  padding: 3px 0;
  font-size: 4.0rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
}
.daytime__contact dd a {
  color: #333;
  text-decoration: none;
}
.daytime__contact small {
  display: block;
  font-size:clamp(1.4rem, 4.0vw, 1.8rem);
}
.daytime__set-menu {
  width: 100%;
}
.daytime__set-menu h4 {
  font-size: min(12vw, 45px);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
}
.daytime__set-menu h4 span {
  font-size: 5.5rem;
  vertical-align: -3px;
  letter-spacing: -15px;
  display: inline-block;
  margin: 0 0 0 -20px;
}
.daytime__set-menu__price {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.daytime__set-menu__price p {
  color: #d7443f;
  font-size: 26vw;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  text-align: right;
  line-height: 1;
  margin-bottom: 10px;
}
.daytime__set-menu__price p span {
  display: inline-block;
  font-size: 4.5rem;
}
.daytime__set-menu__price small {
  display: block;
  text-align: right;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}
@media(min-width:480px) {
  .daytime h3 {
    width: 30%;
    padding: 2px 5% 1px;
    text-align: center;
    background-color: #8da13c;
  }
  .daytime__time {
    text-align: left;
    margin-left: 15%;
  }
  .daytime__images-other ul li img {
    max-width: 375px;
  }
  .daytime__set-menu__price {
    max-width: 386px;
  }
  .daytime__set-menu__price p {
    font-size: 13.0rem;
  }
  .daytime__contact {
    width: 375px;
  }
}
@media(min-width:980px) {
  .daytime {
    padding-bottom: 70px;
    margin-bottom: 70px;
  }
  .daytime__area {
    margin: 0 auto;
    width: 60vw;
    max-width: 1125px;
    height: auto;
    display: flex;
    align-items: flex-end;
  }
  .daytime__icon-sp {
    display: none;
  }
  .daytime__icon-cp {
    display: block;
    height: 108px;
    width: 120px;
    margin: 0 -5px 0 -133px;
    z-index: 777;
    align-self: center;
  }
  .daytime h3 {
    margin-top: 0;
    text-align: center;
    writing-mode: vertical-lr;
    font-size: clamp(2.4rem, 2vw, 3.0rem);
    width: auto;
    height: 276px;
    padding: 0 5px;
  }
  .daytime__time {
    margin-left: 5%;
  }
  .daytime__time dl {
    white-space: nowrap;
  }
  .daytime__time dt {
    margin-top: 85px;
    font-size: clamp(2.5rem, 2.5vw, 3.0rem);
    line-height: 1;
  }
  .daytime__time dd {
    font-size: clamp(4.0rem, 4.0vw, 7.0rem);
    line-height: 1;
    margin-left: 0;
    white-space: nowrap;
  }
  .daytime__time small {
    margin-bottom: 0;
    font-size: clamp(1.6rem, 1.6vw, 1.8rem);
  }
  .daytime__contact {
    width: 26vw;
    max-width: 400px;
    margin: 0 0 0 3%;
    padding: 25px 0;
  }
  .daytime__contact dt {
    font-size: clamp(2.0rem, 2vw, 2.4rem);
    line-height: 2.5rem;
  }
  .daytime__contact dd {
    font-size: clamp(3.0rem, 3vw, 4.6rem);
    line-height: 5rem;
  }
  .daytime__contact small {
    font-size: clamp(1.6rem, 1.0vw, 1.8rem);
  }
  .daytime__set-menu {
    display: flex;
    flex-wrap: nowrap;
    margin: 3% auto 0;
    width: 58vw;
    max-width: 960px;
    white-space: nowrap;
    transform: translateX(-60px);
  }
  .daytime__set-menu h4 {
    font-size: clamp(4.0rem, 4vw, 5.0rem);
    width: 100%;
  }
  .daytime__set-menu h4 span {
    font-size: clamp(5.0rem, 5vw, 7.0rem);
    margin: 0 0 0 -25px;
  }
  .daytime__set-menu__price {
    max-width: none;
    width: 100%;
  }
  .daytime__set-menu__price p {
    font-size: clamp(10.0rem, 10vw, 17.0rem);
    width: 100%;
  }
  .daytime__set-menu__price p span {
    font-size: clamp(4.0rem, 4vw, 7.0rem);
  }
  .daytime__set-menu__price small {
    font-size: clamp(2.4rem, 2vw, 3.0rem);
  }
}
@media(min-width:1220px) {
  .daytime__time dd small br:first-child {
    display: none;
  }
  .daytime__time dd small span {
    display: none;
  }
}
.menu, .drink-food {
  margin: 50px 25px 40px;
  text-align: left;
  font-size: 2.3rem;
}
.menu {
  padding: 15px 15px;
  background-color: #fdfbe9;
}
.drink-food {
  padding: 0 15px;
  background-color: #FFFFFF;
}
.menu__alcohol-title, .drink-food__title {
  position: relative;
  margin-bottom: 5px;
}

.menu__alcohol-title img, .drink-food__title img {
  height: auto;
  width: 100%;
}
.menu__alcohol-title h3, .drink-food__title h3 {
  width: 100%;
  font-size: 6.9vw;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.menu__alcohol {
  position: relative;
}
.menu__alcohol__image {
  width: 42.6666667vw;
  height: 42.6666667vw;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  right: -15px;
  top: 24vw;
}
.menu__alcohol__image-pc {
  display: none;
}
.menu h4, .drink-food h4 {
  font-weight: 500;
  border-bottom: solid 1px #333;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.listmack {
  font-size: 1.5rem;
  vertical-align: middle;
}
.menu__alcohol-list dt small {
  display: inline-block;
  font-size: 2.0rem;
  line-height: 2.4rem;
  background-color: #FFF;
  padding: 10px 10px;
  margin: 0 0 20px 5px;
}
.menu__alcohol-list__br2 {
  display: inline-block;
}

.menu__alcohol-list__br1 {
  display: none;
}

.menu__alcohol-list dd, .drink-food__drink-list dd, .menu__others-last dd, .drink-food__food-list dd {
  text-align: right;
  font-weight: 600;
}
.menu__Bottle-list, .menu__others-list {
  width: 100%;
  box-sizing: border-box;
}
.menu__Bottle-list div, .menu__others-list div, .oneprice {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.menu__Bottle-list div::after, .menu__others-list div::after, .oneprice::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 100%;
  border-bottom: dotted 2px #000;
}
.menu__Bottle-list div dt, .menu__others-list div dt {
  padding: 0 5px 0 0;
  background-color: #fdfbe9;
  z-index: 2;
  text-align: left;
}
.oneprice dt {
  padding: 0 5px 0 0;
  background-color: #ffffff;
  z-index: 2;
  text-align: left;
}
.menu__Bottle-list div dd, .menu__others-list div dd {
  font-weight: 600;
  margin: 0;
  padding: 0 0 0 5px;
  background-color: #fdfbe9;
  z-index: 2;
  text-align: right;
}
.oneprice dd {
  font-weight: 600;
  padding: 0 0 0 5px;
  background-color: #ffffff;
  z-index: 2;
  text-align: right;
}
.drink-food__food-last {
  margin-top: -32px;
}
.drink-food__food-pc {
  display: none;
}
@media(min-width:480px) {
  .menu, .drink-food {
    margin: 50px auto 40px;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
  }
  .menu, .drink-food {
    padding: 35px 30px;
  }
  .menu__alcohol {
    position: relative;
  }
  .menu__alcohol__image {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    right: -30px;
    top: 90px;
  }
  .menu__alcohol-title h3, .drink-food__title h3 {
    font-size: clamp(2.8rem, 2.4vw, 3.4rem);
  }
  .menu__alcohol-list__br1 {
  display: inline-block;
}
  .menu__alcohol-list__br2 {
  display: none;
}
}
@media(min-width:980px) {
  .drink-food__food-pc {
    display: block;
  }
  .menu, .drink-food {
    margin: 0 auto 0;
    width: 60vw;
    display: flex;
    align-items: flex-end;
    justify-content: space-evenly;
    max-width: 1125px;
    box-sizing: border-box;
  }
  .menu, .drink-food {
    padding: 50px 0;
    width: auto;
    background-color: #fdfbe9;
  }
  .drink-food {
    margin-bottom: 70px;
  }
  .menu__alcohol-bottle, .menu__others, .drink-food__drink, .drink-food__food-pc {
    width: 38vw;
    max-width: 400px;
  }
  .drink-food__drink dd {
    margin-top: -35px;
  }
  .drink-food__food {
    display: none;
  }
  .menu__alcohol-title, .drink-food__title {
    position: relative;
    margin-bottom: 10%;
  }
  .menu__alcohol-title img, .drink-food__title img {
    height: auto;
    width: 100%;
  }
  .menu__alcohol-title h3, .drink-food__title h3 {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
  }
  .menu__alcohol {
    position: static;
  }
  .menu__alcohol__image {
    display: none;
  }
  .menu__alcohol__image-pc {
    display: block;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    width: calc(35vw + 100px);
    max-width: 500px;
    margin: 0 -50px 15%;
  }
  .menu__alcohol-list dd {
    margin: -45px 0 50px;
  }
  .menu__others-last {
    width: 100%;
    box-sizing: border-box;
  }
  .menu__others-last div, .drink-food__food-pc div {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .menu__others-last div::after, .drink-food__food-pc div::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 100%;
    border-bottom: dotted 2px #000;
  }
  .menu__others-last div dt, .drink-food__food-pc div dt {
    padding: 0 5px 0 0;
    background-color: #fdfbe9;
    z-index: 2;
    text-align: left;
  }
  .menu__others-last div dd, .drink-food__food-pc div dd {
    font-weight: 600;
    margin: 0;
    padding: 0 0 0 5px;
    background-color: #fdfbe9;
    z-index: 2;
    text-align: right;
  }
}
.footer {
  background-color: #dcdd99;
}
.footer__nav {
  width: 100%;
  height: 82px;
  background-color: #97ad41;
  margin-bottom: 15px;
}
.footer__nav ul {
  padding: 13px 0;
  height: 52px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer__nav ul li a {
  display: inline-block;
  color: #ffffff;
  font-size: 2.0rem;
  font-weight: 600;
}
.footer__nav ul li {
  padding-right: 20px;
}
.footer__nav ul li:last-child {
  padding-right: 0;
}
.footer__wrap {
  padding: 0 25px;
  text-align: left;
}
.footer h3 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  text-align: center;
}
.footer__wrap-info dt {
  font-size: 2.4rem;
  font-weight: 500;
}
.footer__wrap dd {
  font-size:clamp(3.0rem, 3.5vw, 3.0rem);
  font-weight: 600;
}
.footer__wrap-time {
  border-bottom: solid 1px #333;
  padding-bottom: 5px;
  font-size: 2.4rem;
}
.footer__wrap-time__night, .footer__wrap-time__daytime {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 7.5px 0;
  line-height: 1;
  align-items: center;
}
.footer__wrap-time__night dt, .footer__wrap-time__daytime dt {
  font-size: 2.8rem;
  font-weight: 600;
}

.footer__wrap-time__daytime span {
  color: #FFF;
  font-size:clamp(1.4rem, 4.0vw, 1.8rem);
  font-weight: 600;
  background-color: #d7443f;
  padding: 3px;
  margin-left: 5px;
  display: inline-block;
  transform: translatey(-5px);
}
.footer__wrap-info dl small, .footer__wrap-info dl small {
  font-size: 1.9rem;
  font-weight: 500;
  display: block;
  padding-top: 5px;
  margin-bottom: 10px;
  line-height: 2.7rem;
}
.footer__wrap-tel {
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
  padding: 15px 0 10px;
  margin: 60px 0 0;
}
.footer__wrap-tel dt {
  line-height: 2.5rem;
}
.footer__wrap-tel dt span {
  font-size: 1.8rem;
}
.footer__wrap-tel dd {
  text-align: right;
  line-height: 1;
  padding-top: 10px;
}
.footer__wrap-tel dd a {
  color: #333;
  text-decoration: none;
}
.footer__wrap-closed, .footer__wrap-seat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #333;
}
.footer__wrap-closed {
  padding: 15px 0;
}

.footer__wrap-seat dd {
  font-size: 2.4rem;
  padding: 5px 0;
  line-height: 3.6rem;
  letter-spacing: -0.1rem;
}
.footer__wrap-map h4 {
  margin-top: 50px;
  color: #d7443f;
  font-size: 2.4rem;
  transform: rotate(-7deg);
}
.footer__wrap-map img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.footer__wrap-map p {
  font-size: 2.0rem;
  padding: 35px 0 35px;
}
.footer__wrap-info-pc {
  display: none;
}

@media(min-width:480px) {
  .footer__wrap {
    margin: 50px auto 0;
    width: 100%;
    max-width: 560px;
    box-sizing: border-box;
  }
}
@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
display: block;
}
}
@media(min-width:980px) {
  .footer__nav {
    height: 70px;
    margin-bottom: 50px;
  }
  .footer__wrap {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    padding: 0;
  }
  .footer__wrap-info, .footer__wrap-map {
    width: 380px;
    margin-bottom: 50px;
  }
  .footer__wrap-map {
    margin-top: -50px;
  }
}
@media(min-width:1220px) {
  .footer__wrap {
    padding: 0;
    align-items: flex-end;
    width: 100vw;
    max-width: 1400px;
  }
  .footer__wrap-info {
    display: none;
  }
  .footer__wrap-info-pc {
    display: block;
  }
  .footer__wrap-info-pc, .footer__wrap-map {
    width: 550px;
    margin-bottom: 50px;
  }
  .footer__wrap-time__night, .footer__wrap-time__daytime {
    align-items: center;
  }
  .footer__wrap-time__night {
    border-bottom: solid 1px #333;
  }
  .footer__wrap-info-pc dt {
    font-size: 2.0rem;
  }
  .footer__wrap dd {
    font-size: 2.8rem;
  }
  .footer__wrap-info-pc dl small, .footer__wrap-info dl small {
    font-size: 1.6rem;
    line-height: 1;
  }
  .footer__wrap-time__night span {
    color: #dcdd99;
    font-size: 1.6rem;
    font-weight: 600;
    background-color: #dcdd99;
    display: inline-block;
    padding: 3px;
    margin-left: 8px;
    transform: translateY(-4px);
  }
  .footer__wrap-tel {
    border-top: none;
  }
  .footer__wrap-tel {
    display: flex;
    align-items: flex-end;
  }
  .footer__wrap-tel dt {
    font-size: 2.0rem;
    padding-right: 20px;
  }
  .footer__wrap-tel dt span {
    font-size: 2.0rem;
  }
  .footer__wrap-tel dd {
    padding-top: 0;
  }
  .footer__wrap-closed, .footer__wrap-seat {
    justify-content: flex-start;
  }
  .footer__wrap-seat {
    border-bottom: none;
  }
  .footer__wrap-closed dd {
    font-size: 2.8rem;
    padding-left: 20px;
  }
  .footer__wrap-seat dd br {
    display: none;
  }
  .footer__wrap-seat dd {
    font-size: 2.8rem;
    padding: 15px 0 15px 20px;
    line-height: 1.5;
  }
  .footer__wrap-map h4 {
    margin-bottom: -20px;
  }
  .footer__wrap-map img {
    width: 100%;
  }
  .footer__wrap-map p {
    font-size: 2.0rem;
    padding: 20px 0 0;
  }
  .footer__wrap-map p br {
    display: none;
  }
}
.body {
  width: 100%;
  height: auto;
}
#box {
  width: 100%;
  height: auto;
}
#box1 {
  width: 23vw;
  max-width: 100px;
  height: auto;
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 888;
  display: block;
  overflow: hidden;
}
#box1{
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(10deg);
  }
  50%{
      transform: rotate(-10deg);
  }
}
#box1:hover {
  animation-name: swing2;
  animation-duration: 1s;
  animation-delay: .3s;
  opacity: 0.3;
  
}
@-webkit-keyframes swing2 {
  10% {
    -webkit-transform: rotate(-10deg);
  }
  20% {
    -webkit-transform: rotate(8deg);
  }
  30% {
    -webkit-transform: rotate(-5deg);
  }
  40% {
    -webkit-transform: rotate(4deg);
  }
  50% {
    -webkit-transform: rotate(-3deg);
  }
  60% {
    -webkit-transform: rotate(2deg);
  }
  70% {
    -webkit-transform: rotate(-1deg);
  }
  80% {
    -webkit-transform: rotate(1deg);
  }
  90% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@media(min-width:480px) {
  #box1 {
    width: 18.75vw;
    bottom: 2vw;
    right: 2vw;
  }
  @media(min-width:1200px) {
    #box1 {
      width: 18.75vw;
      bottom: 2vw;
      right: 7vw;
      
    }
  }
    @media(min-width:1900px) {
    #box1 {
      width: 18.75vw;
      bottom: 2vw;
      right: 15vw;
      
    }
  }
}