@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  width: max-content;
  font-family: var(--font-ttl);
  font-size: max(40px, 6.1rem);
  color: #0096c8;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0 auto;
  position: relative;
}

.common__btn {
  width: max-content;
  margin: 0 auto;
}

.common__btn a {
  width: 100%;
  height: 100%;
  font-family: var(--font-en);
  font-size: max(12px, 1.6rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.common__btn--wt a {
  color: var(--white);
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(30px, 5.4rem);
  height: max(10px, 2.1rem);
}

.common__btn--wt a::after {
  background: url("../img/btn_arw-wt.png") no-repeat center / contain;
}
.common__btn--bk a::after {
  background: url("../img/btn_arw-bk.png") no-repeat center / contain;
}
@media (max-width: 767px) {
  .common__ttl::after {
    top: 50%;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
.hero::before {
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.6;
    width: 100%;
    height: 12.3rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.hero__slider .swiper-slide-active img,
.hero__slider .swiper-slide-duplicate-active img,
.hero__slider .swiper-slide-prev img {
  animation: zoomOut 7s linear both;
}

.hero .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: max(12px, 2rem);
  transform: translateX(-50%) !important;
  left: 50% !important;
  bottom: 3rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: #F9F9F9;
  width: 8px !important;
  height: 8px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.hero .swiper-pagination-bullet-active {
  background-color: #656565;
}

.hero__scroll {
  width: max(55px, 8.7rem);
  height: max(27px, 4.3rem);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  right: 5rem;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
}

.hero__scroll::before {
  content: "";
  background-color: var(--white);
  width: 100%;
  height: max(55px, 8.7rem);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--black);
  width: 1px;
  height: max(6px, 1rem);
}


/*============================
	news
============================*/
.news {
  background: var(--bg-1);
  padding: 14.9rem 0 12.7rem;
  position: relative;
}
.news .common__ttl::after {
  display: none;
}


@media (max-width: 767px) {

}

.CMS-NEWS-INDEX {
  width: 96rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.4rem;
  margin: 7rem auto 10.6rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 19rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK {
  letter-spacing: 0.05em;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.35rem);
  font-weight: 400;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	about
============================*/
.about {
  background: var(--bg-2);
  padding: 14.4rem 0 16.9rem;
  position: relative;
  color: #FFF;
}

.about::before {
  content: "";
  background: url("../img/about_deco.png") no-repeat center / contain;
  width: 27rem;
  height: 19rem;
  position: absolute;
  right: 12.4rem;
  bottom: 4.7rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .about::before {
    width: 18rem;
    height: 18.1rem;
    right: 1rem;
    bottom: 2rem;
  }
}

.about__contents {
  width: 104rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 6.4rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .about__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.about__txt-wrapper {
  width: 100%;
  padding-top: 2.5rem;
  margin-right: -3rem;
}

@media (max-width: 767px) {
  .about__txt-wrapper {
    padding-top: 0;
  }
}

.about .common__ttl {
  margin: 0 auto 4rem 0;
  color: #FFF;
}

.about__txt-wrapper h3 {
  font-size: max(16px, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.625;
}

.about__txt-wrapper p {
  font-size: max(12px, 1.7075rem);
  line-height: calc(34/18);
  font-weight: 400;
  letter-spacing: 0.16em;
  margin: 3rem 0 8rem;
}

@media (min-width: 768px) {
  .about .common__btn {
    margin: 0;
  }
}

.about__img {
  width: 54.3rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .about__img {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-1);
  padding: 14.6rem 0 14rem;
  position: relative;
}

.menu::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 25.4rem;
  height: 20.8rem;
  top: 8rem;
  left: 9rem;
}
.menu .common__ttl::after {
  display: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 20rem;
    height: 16.2rem;
    top: 4rem;
    left: 3rem;
  }

}

.menu__list {
  width: 106.6rem;
  display: flex;
  flex-direction: column;
  margin: 13.9rem auto 13.2rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 8rem;
    margin: 0 auto 7rem;
  }
}

.menu__list-item {
  position: relative;
  display: flex;
}

.menu__list-item:nth-of-type(2) {
  margin-top: 10.9rem;
}
.menu__list-item:nth-of-type(3) {
  margin-top: 8.6rem;
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item {
    flex-direction: column;
  }
  .menu__list-item:nth-of-type(2),
  .menu__list-item:nth-of-type(3) {
    margin-top: 0;
  }
  .menu__list-item:nth-of-type(3) {
    flex-direction: column;
  }
}

.menu__txt-wrapper {
  width: 53rem;
  padding: 0rem 9rem 0 1.2rem;
}
.menu__list-item:nth-of-type(2) .menu__txt-wrapper {
  padding: 4.6rem 0rem 0 7.4rem;
}
.menu__list-item:nth-of-type(3) .menu__txt-wrapper {
  padding: 4.6rem 8.8rem 0 0rem;
}
@media (max-width: 767px) {
  .menu__txt-wrapper {
    width: 100%;
    padding: 2.5rem 0rem 0;
  }
  .menu__list-item:nth-of-type(2) .menu__txt-wrapper {
     padding: 2.5rem 0rem 0;
  }
}

.menu__txt-wrapper h3 {
  font-weight: 700;
  letter-spacing: 0.05em; 
  margin-bottom: 2rem;
  font-family: var(--font-en);
  color: #a7630a;
  font-size: 1.9rem;
  line-height: 1;
}
.menu__txt-wrapper h4 {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.95;
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.52rem);
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 2rem;
}

.menu__img {
  width: 53rem;
  height: 100%;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper,
.menu__list-item:nth-of-type(2) .menu__img {
  margin: 0 0 0 auto;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
  .menu__txt-wrapper h3,
  .menu__txt-wrapper h4 {
    font-size: 2.6rem;
  }
}

.menu__list-item:nth-of-type(1) .menu__img-2 {
  width: 84.1rem;
  position: absolute;
  top: -38rem;
  right: calc(50% - 50vw - 9rem);
}

/*.menu__list-item:nth-of-type(2) .menu__img {
  width: 77rem;
}*/
.menu__list-item:nth-of-type(3) .menu__img {
  width: 54.3rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1) .menu__img-2 {
    top: 0;
    left: 3%;
    width: 100%;
    position: relative;
  }

  .menu__list-item:nth-of-type(2) .menu__img {
    width: 100%
  }
  .menu__list-item:nth-of-type(3) .menu__img {
    width: 100%
  }
}

/*============================
	gallery
============================*/
.gallery {
  padding: 9rem 0 8.9rem;
  background: url(../img/bg-galery.jpg) no-repeat top center / cover;
}
.gallery .common__ttl {
  color: #FFF;
}
.gallery__slider {
  height: 65rem;
  margin: 7.5rem 0 0;
  position: relative;
}

@media (max-width: 767px) {
  .gallery__slider {
    height: 40rem;
  }
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 100%;
}

.gallery .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: max(12px, 2rem);
  transform: translate(-50%, 100%) !important;
  left: 50% !important;
  bottom: -4rem !important;
  z-index: 10;
}

.gallery .swiper-pagination-bullet {
  background-color: initial;
  border: 1px solid #FFF;
  width: 9px !important;
  height: 9px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.gallery .swiper-pagination-bullet-active {
  background-color: #FFF;
}
.gallery .common__btn {
  margin-top: 10rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-1);
  padding: 8.5rem 0 12.8rem;
  position: relative;
}
.access .common__ttl {
  text-align: center;
}
.access .common__ttl::after {
  display: none;
}
.access .common__btn {
  margin: 6rem auto 0 0;
}
@media (max-width: 767px) {
  .access .common__btn {
    margin: 4rem auto 4rem;
  }
}


.access__contents {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 9.5rem;
  margin: 5.5rem 24.7rem 0 0;
}
@media (max-width: 1440px) {
  .access__contents {
    margin: 5.5rem 5rem 0 0;
  }
}
@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
    margin: 4rem auto 0;
  }
}

.access__contents h3 {
  font-family: var(--font-en);
  font-size: max(16px, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.access__contents p {
  font-size: max(12px, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 2rem 0 3.5rem;
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

.access__list dt,
.access__list dd {
  font-size: max(12px, 1.51778rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 1.7rem 0;
}

.access__list dt {
  width: max(75px, 9rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 9rem));
}

@media (min-width: 768px) {

}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

.access__reserve {
  width: 60.7rem;
  height: 45.6rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__reserve {
    width: 100%;
  }
}

.access__reserve h4 {
  font-size: max(12px, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 0 0 4rem;
}

.access__reserve li:first-of-type {
  border-bottom: dashed 1px var(--white);
}

.access__reserve a {
  display: block;
  width: 100%;
  padding: 4rem 0;
}

.access__reserve dl {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
}

.access__reserve dl dt {
  width: max(300px, 41.5rem);
  font-size: max(12px, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.access__reserve dl dd {
  width: max(100px, 16rem);
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .access__reserve dl dt,
  .access__reserve dl dd {
    width: 100%;
  }
}

.access__tel {
  font-family: var(--font-en);
  font-size: 12px;
}

@media (max-width: 767px) {
  .access__tel {
    font-size: 14px;
    text-decoration: none !important;
  }
}

.access__tel span {
  display: block;
  font-size: max(12px, 1.4rem);
  margin-left: 2rem;
}

@media (max-width: 767px) {
  .access__tel span {
    font-size: 14px;
    text-decoration: underline;
  }
}

.access__insta {
  font-family: var(--font-en);
  font-size: 12px;
}

@media (max-width: 767px) {
  .access__insta {
    font-size: 14px;
  }
}

.access__insta dd {
  gap: 4rem;
}

.access__insta dd::after {
  content: "";
  display: block;
  background: url("../img/insta.png") no-repeat center / contain;
  width: max(16px, 1.8rem);
  height: max(16px, 1.8rem);
}

/*============================
	insta
============================*/
.insta {
  background: url(../img/bg-insta.jpg) no-repeat top center / cover;
  padding: 12rem 0 18.7rem;
  position: relative;
}
.insta .common__ttl {
  color: #FFF;
}
.insta .common__ttl::after {
  display: none;
}


@media screen and (max-width: 767px) {
  .insta { 
    padding: 10rem;
  }
}

.insta__contents {
  width: 77.7rem;
  margin: 8.7rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST {
    gap: 1rem;
  }
}

.CMS-INSTAGRAM-LIST img {
  width: 24.7rem;
  height: 24.7rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

.tabiiro {
  padding: 7.8rem 0;
}
.tabiiro__contents {
  width: 72rem;
  margin: 0 auto;
  position: relative;
}
.tabiiro__contents::before {
  content: "";
  width: 70.4rem;
  height: 22.2rem;
  border: 2px solid #FFF;
  position: absolute;
  top: 49%;
  left: 1.1113%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.tabiiro__img {
  width: 100%;
  position: relative;
}
.tabiiro__img .bg-img {
  width: 100%;
}
.tabiiro .bg-dog {
  position: absolute;
  top: 4.6rem;
  left: 5.3rem;
  width: 13.6rem;
}
.tabiiro__img p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);  
  -ms-transform: translate(-50%, -50%);
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.08em;
  line-height: 1;
}
.tabiiro__img p::after {
  content: "";
  background: linear-gradient(transparent 48%, #FF9090 0%);
  display: inline-block;
  width: 105%;
  height: 3.3rem;
  position: absolute;
  bottom: -0.4rem;
  left: -0.8rem;
  z-index: -1;

}
.tabiiro__img .common__btn {
  position: absolute;
  bottom: 4.2rem;
  right: 6.1rem;
  z-index: 2;
}


/*=============== top-yoyaku ===========*/

.top-yoyaku {
  background: var(--bg-2);
  padding: 11.7rem 0 20.6rem;
  position: relative;
}
.yoyaku-deco-1 {
  position: absolute;
  top: 10.8rem;
  left: 10.2rem;
  width: 25.4rem;;
  height: auto;
  pointer-events: none;
}
.yoyaku-deco-2 {
  position: absolute;
  bottom: 7.9rem;
  right: 9.2rem;
  width: 22.6rem;
  height: auto;
  pointer-events: none;
}
.top-yoyaku h2 {
  color: #FFF;
}
.top-yoyaku .top-heading::before {
  filter: invert(1);
}

.top-yoyaku__heading {
  margin: 0 auto;
  width: 14rem;
}


.calendar-wrapper {
  border: 16px solid #ccc;
  width: 100%;
  max-width: 900px;
  margin: 6.2rem auto 0 auto;
  display: flex;
  background: #fff;
}

.calendar-wrapper a {
  color: #000;
}

.reservation .calendar-wrapper {
  position: relative;
  outline: 1.3rem solid #ccc;
  max-width: 720px;
  width: 90vw;
  margin: 60px auto 0 auto;
  display: flex;
  flex-direction: row;
}

#calendar {
  text-align: center;
  width: 100%;
}

.reservation #calendar {
  text-align: center;
  width: 100%;
  line-height: 1.5;
}

table {
  /* outline: 16px solid #ccc; */
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.reservation table {
  outline: 16px solid #ccc;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
}

th {
  color: #000;
}

.calendar-wrapper th,
.calendar-wrapper td {
  outline: 1px solid #ddd;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  color: #111111;
}

td:nth-child(6) .reservation-date,
td:nth-child(6) .reservation-date a {
  color: #8888ff;
}

td:last-child .reservation-date,
td:last-child .reservation-date a {
  color: #ff8888;
}

td.disabled {
  background-color: #eeeeee;
  color: #aaaaaa;
}

/* .reservation-date {
text-decoration: underline;
} */

.reservation-seat {
  font-size: 14px;
}

.reservation-seat.able a {
  color: #dd8866;
}

.reservation-seat-disabled a {
  color: #aaaaaa;
}

.calendar-reservation {
  border-collapse: collapse;
  width: 100%;
  word-break: break-all;
  padding: 20px;
  line-height: 1.8;
  border-left: 1.3rem solid #ccc;
}

.calendar-reservation form {
  padding-top: 0;
  text-align: left;
}

.calendar_date {
  font-size: 18px;
}

.calendar_person,
.calendar_time {
  width: 100%;
  font-size: 18px;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 8px;
  appearance: auto;
  -webkit-appearance: auto;
  border: 1px solid #000;
  border-radius: 3px;

}

.calendar_button {
  width: 100%;
  font-size: 18px;
  padding: 12px;
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  border: 1px solid #aaaaaa;
  cursor: pointer;
}

.calendar_button:hover {
  opacity: 0.8;
}

.calendar_info {
  font-size: 12px;
  margin: 20px;
  color: #000;
  text-align: left;
}

.calendar_ok {
  color: #dd8866;
}

@media screen and (max-width: 767px) {
  .top-yoyaku {
    padding: 10rem 0;
  }
  .yoyaku-deco-1 {
    top: 5.8rem;
    left: 3.2rem;
    width: 14.4rem;
  }
  .yoyaku-deco-2 {
    bottom: 1.9rem;
    right: 6.2rem;
    width: 11.6rem;
  }
  .reserve {
      margin-top: 5rem;
  }

  .reservation .reserve {
      margin-top: 0;
  }

  .calendar-wrapper {
      width: 100%;
      margin: 5rem auto;
      flex-direction: column;
  }

  .calendar-wrapper {
      font-size: 12px;
  }

  .calendar-reservation {
      padding: 0;
      margin-left: 0;
      border-left: 0;
      border-top: 1.3rem solid #ccc;
  }

  .calendar-reservation form {
      padding: 20px;
  }

  .calendar-reservation form div {
      margin-bottom: 20px;
  }
}

@media screen and (max-width: 450px) {
  .reservation-date {
      font-size: 2.8vw;
  }
}


.reserve-btn {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 999999;
  transform: translateY(-50%);
}

.reserve-btn a {
  display: inline-block;
  padding: 3rem 2rem;
  color: #fff;
  font-size: 16px;
  background-color: #000;
  writing-mode: vertical-lr;
}

@media screen and (max-width: 767px) {
  .reserve-btn {
      right: auto;
      top: initial;
      bottom: 0;
      width: 100%;
      transform: translateY(0);
  }

  .reserve-btn a {
      writing-mode: initial;
      width: 100%;
      padding: 2rem 0;
      text-align: center;
  }

  .reservation {
      padding-left: 3.5rem;
  }

  .reservation .s-reservation {
      padding: 3rem 3.5rem 3rem 0;
  }

  .reservation .calendar-wrapper {
      flex-direction: column;
      outline: 4px solid #ccc;
  }
}

.s-reservation {
  padding: 12rem 0;
}

.s-reservation__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: start;
  justify-content: center;
}

.s-reservation__ttl {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
  margin-right: 1rem;
  position: relative;
}

.s-reservation__ttl__logo {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  width: 24.4rem;
  max-width: 80%;
}

.s-reservation__ttl__txt {
  font-size: 60px;
  font-size: 6rem;
  font-size: 428.57143%;
  margin: 0 auto;
  text-align: center;
  line-height: 1.4;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  font-weight: 400;
  position: relative;
  z-index: 2;
  padding-top: 1rem;
}

.s-reservation__content {
  width: 113rem;
  max-width: 75%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #fff;
  padding: 7.5rem 5.61797753% 14rem;
}

.s-reservation__content__list {
  width: 73rem;
  max-width: 100%;
}

.s-reservation__content__item {
  line-height: 1.85714286;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ccc;
}

.calendar_title,
.calendar_date {
  color: #000;
  font-size: 16px;
}

.takeout_top_ad {
  display: flex;
}

.takeout_img {
  width: 52%;
  margin-right: 3%;
}

.takeout_ad {
  width: 45%;
}

.takeout_top_ad img {
  display: block;
  width: 100%;
  height: auto;
}

.takeout_top_ad dl.detail dt {
  padding: 0.5rem;
}

.takeout_top_ad dl.detail dd {
  padding: 0.5rem;
}

@media screen and (min-width: 768px) {
  .yoyaku {
      padding: 10rem 20rem;
  }
}

.dogcafe-box{
    display: flex;
    margin-top: 2rem;
}

.dogcafe-box div:first-child{
    width: 40%;
}

.insta-img img{
    width: 5rem;
    object-fit: contain;
    margin:0 0 0 2rem;
}

.insta-img{
    display: flex;
    width: 60%;
    background-color: #fff;
    color: #000;
    align-items: center;
    font-size: 2rem;
}

.insta-img p{
    margin-left: 2rem;
}