@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(20px, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  color: #000;
}
.common__ttl .en {
  font-size: max(12px, 1.8rem);
  color: #dc3c39;
  font-family: "Montagu Slab", serif;
  font-weight: 700;

}

.common__btn {
  width: max(160px, 22rem);
  height: max(40px, 5.4rem);
  margin: 0 auto;
}

.common__btn a {
  width: 100%;
  height: 100%;
  font-size: max(14px, 1.6rem);
  font-weight: 500;
  color: #FFF;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: #dc9850;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(400px, 44rem);
  }
}

.hero::before {
  content: "";
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  width: 100%;
  height: 30.7rem;
  opacity: 0.52;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.hero__ttl {
  font-size: max(24px, 4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 24rem;
  right: 16rem;
  z-index: 2;
}

.hero__ttl_txt{
  font-size: max(16px, 2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 24rem;
  right: 42rem;
  z-index: 2;
  padding-right: 5rem;
}

@media (max-width: 767px){
  .hero__ttl_txt{
    writing-mode: horizontal-tb;
    left: 5%;
    font-size: max(12px, 2rem);
    right: auto;
    top: 30rem;
    padding-top: 5rem;
    text-shadow: 1px 1px 2px black;
  }
}

@media (max-width: 500px){
  .hero__ttl_txt{
    writing-mode: horizontal-tb;
    left: 5%;
    font-size: max(12px, 2rem);
    right: auto;
    top: 46rem;
    padding-top: 5rem;
    text-shadow: 1px 1px 2px black;
  }
}

@media (max-width: 767px) {
  .hero__ttl {
    font-size: max(24px, 4rem);
    writing-mode: horizontal-tb;
    top: auto;
    right: auto;
    left: 5%;
    bottom: 37%;
  }
}

.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;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero__scroll {
  font-size: max(12px, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  left: 13.7rem;
  bottom: 2rem;
  z-index: 10;
}
.hero__scroll p {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: max(80px, 16.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  background: #d6d8cc;
  padding: 14.2rem 0 14.5rem;
  color: #000;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 4.4rem auto 8.8rem;
}

@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: 20rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  letter-spacing: 0.2em;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}
.CMS-NEWS-TIME {
  border-bottom: 1px solid var(--black);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  font-size: max(10px,1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: #e8e9e2;
  padding: 9.5rem 0 4.5rem;
  position: relative;
  z-index: 2;
}
.policy h2 {
  font-family: "Montagu Slab", serif;
  font-weight: 700;
  font-size: 6.4rem;
  text-align: center;
  width: 110rem;
  margin: 0 auto 7.3rem;
  position: relative;
}
.policy h2::before,
.policy h2::after {
  content: "";
  background: url(../img/line-1.png) repeat-x center / contain;
  width: 34.5rem;
  height: 1.5rem;
  position: absolute;
  top: 4rem;
  left: 0;
}
.policy h2::after {
  left: initial;
  right: 0
}
.policy__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 12.5rem;
  margin: 0 auto;
  position: relative;
}
.policy .common__btn {
  margin: -2rem 21rem 0 auto;
}
.policy .line-botttom {
  width: 110rem;
  height: 1.5rem;
  background: url(../img/line-2.png) repeat-x center / contain;
  margin: 6rem auto 0;
}
.policy-deco-1 {
  position: absolute;
  top: 6.1rem;
  right: 14.1rem;
  width: 20rem;
  height: auto;
  pointer-events: none;
}
.policy-deco-2 {
  position: absolute;
  bottom: -37rem;
  left: -21rem;
  width: 63.4rem;
  height: auto;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .policy .common__btn {
    margin: 3rem auto 0;
  }
}
@media (max-width: 767px) {
  .policy__list {
    width: 90%;
  }
  .policy h2 {
    width: 90%;
  }
  .policy h2::before, .policy h2::after {
    width: 14rem;
  }
  .policy .line-botttom {
    width: 90%;
  }
  .policy-deco-1 {
    top: 8.1rem;
    right: 0.1rem;
    width: 13rem;
  }
  .policy-deco-2 {
    bottom: -7rem;
    left: -8rem;
    width: 37.4rem;
  }
}

.policy__list-item {
  display: flex;
}

.policy__list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .policy__list-item,
  .policy__list-item:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
  padding: 4rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(400px, 40rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 4rem;
  }

  .policy__list-item:nth-of-type(odd) .policy__txt-wrapper {
    padding: 1rem 0 1rem 1rem;
  }
}


@media (max-width: 767px) {
  .policy__txt-wrapper::before,
  .policy__list-item:nth-of-type(2) .policy__txt-wrapper::before {
    font-size: 24rem;
    top: -3rem;
    right: -4rem;
    left: auto;
  }
}

.policy__txt-wrapper h3 {
  font-size: max(18px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.21em;
  line-height: calc(41/26);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 4rem;
  margin-right: 4.3rem;
  padding: 0 3rem;
  border-right: 1.5px solid var(--black);
  border-left: 1.5px solid var(--black);
}

@media (max-width: 767px) {
  .policy__txt-wrapper h3 {
    margin: 0 0 3rem;
    border-right: initial;
    border-left: initial;
    border-top: 1.5px solid var(--black);
    border-bottom: 1.5px solid var(--black);
    padding: 1rem 0;
  }
}


.policy__txt-wrapper p {
  letter-spacing: 0.15em;
  line-height: calc(39/16);
  font-weight: 500;
}

.policy__img-1 {
  width: 56rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

.policy__img-2 {
  width: 41rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .policy__img-1,
  .policy__img-2 {
    width: 100%;
  }
}

.policy__contents {
  width: 100rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__contents .policy__txt-wrapper {
  width: 100%;
  padding: 4rem;
  margin: 0;
}

@media (min-width: 768px) {
  .policy__contents .policy__txt-wrapper {
    height: max(285px, 28.5rem);
    padding: 3.5rem 8rem 3.5rem 25rem;
    margin: 3.5rem 0 0 -22rem;
  }
}

.policy__contents .policy__txt-wrapper h3 {
  font-size: max(12px, 1.8rem);
  margin-top: -7rem;
}

@media (max-width: 767px) {
  .policy__contents .policy__txt-wrapper h3 {
    margin-top: 0;
  }
}

.policy__contents .policy__txt-wrapper h3 span:nth-of-type(2) {
  font-size: max(16px, 2.1rem);
}

@media (max-width: 767px) {
  .policy__contents .policy__txt-wrapper::before {
    font-size: 24rem;
    top: -3rem;
    right: -4rem;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 11.7rem 0 10.4rem;
  position: relative;
  z-index: 1;
}


@media (max-width: 767px) {

}

.menu__list {
  width: 110rem;
  height: 125.2rem;
  display: flex;
  flex-direction: column;
  row-gap: 8rem;
  margin: 7.6rem auto 0;
  background: url(../img/bg-menu.png) no-repeat center / contain;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    padding: 7rem 7rem;
    height: initial;
    background: initial;
    position: relative;
    gap: 0;
  }
  .menu__list::before {
    content: "";
    position: absolute;
    top: -6rem;
    left: 0;
    width: 100%;
    height: 15rem;
    background: url("../img/bg-menu_sp1.png") no-repeat center / contain;
  }
  .menu__list::after {
    content: "";
    position: absolute;
    bottom: -6rem;
    left: 0;
    width: 100%;
    height: 15rem;
    background: url("../img/bg-menu_sp2.png") no-repeat center / contain;
  }
}

.menu__list-item {
  display: flex;
  justify-content: space-between;
  gap: 4rem 6.5rem;
  position: relative;
  padding:  19.6rem 0 0 10.6rem;
}

.menu__list-item:nth-of-type(2) {
  flex-direction: row-reverse;
  padding-top: 0;
  padding-bottom: 13.5rem;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(2) {
    flex-direction: column;
    padding-bottom: 0;
  }
  .menu__list-item {
    padding: 0;
  }
  .menu__list-item::before {
    content: "";
    background: url(../img/bg-menu_sp3.png) repeat-y top center / contain;
    width: 2.21rem;
    width: 4.02%;
    height: 101.7%;
    position: absolute;
    top: -0.8rem;
    left: -7.0rem;
  }
  .menu__list-item::after {
    content: "";
    background: url(../img/bg-menu_sp4.png) repeat-y top center / contain;
    width: 2.2rem;
    width: 4%;
    height: 101.7%;
    position: absolute;
    top: -0.8rem;
    right: -6.93rem;
    right: -7.03rem;
  }
}

.menu__txt-wrapper {
  width: 42.4%;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper {
  padding: 0 6.9rem 0 0rem;
  width: 49.2%;
}

@media (max-width: 767px) {
  .menu__txt-wrapper,
  .menu__list-item:nth-of-type(2) .menu__txt-wrapper {
    padding: 0;
    width: 100%;
  }
}

.menu__txt-wrapper h3 {
  font-family: "Montagu Slab", serif;
  font-weight: 700;
  font-size: 6.4rem;
  color: #dc3c39;
  line-height: 1;
  margin-bottom: 3.5rem;
}

.menu__txt-wrapper h4 strong {
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFF;
  background: #dc3c39;
  width: 100%;
  display: block;
  padding: 1.7rem 3rem;
  line-height: 1;
  margin-bottom: 1.7rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0;
  line-height: 2;
  font-weight: 500;
  margin: 3rem 0 0rem;
  font-size: 1.6rem;
}
.menu .common__btn {
  margin: 10.3rem auto 0;
}

.menu__img {
  width: 44rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}
.menu__img-1 {
  width: 66.4rem;
  position: absolute;
  top: 12.7rem;
  right: -11.4rem
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    margin: 0;
  }
  .menu__img-1 {
    position: initial;
    width: 100%;
  }
  .menu__txt-wrapper p {
    font-size: max(12px, 1.2rem);
  }
  .menu__txt-wrapper h4 strong {
    font-size: max(16px,2.2rem);
  }
}

.menu__img p {
  font-size: 9.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0.9;
  text-transform: uppercase;
  opacity: 0.4;
  position: absolute;
  top: -5rem;
  right: -3.5rem;
}

.menu__list-item:nth-of-type(2) .menu__img p {
  right: auto;
  left: -3.5rem;
}

/*============================
	gallery
============================*/
.gallery {
  background: #e8e9e2;
  padding: 14.8rem 0 13rem;
}

.gallery__slider {
  height: 22rem;
  margin: 8.8rem 0 10.3rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 26.6rem;
  margin: 0 0.6rem;
}
@media (max-width: 767px) {
  .gallery {
    padding: 10rem 0;
  }
}
/*============================
	access
============================*/
.access {
  background: #d6d8cc;
  padding: 19.4rem 0 19rem;
  position: relative;
}
.access::after {
  content: "";
  width: 86.3%;
  height: 78.9%;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);  
  -ms-transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
.access-deco {
  position: absolute;
  top: 2.4rem;
  right: 8.5rem;
  width: 46.8rem;
  height: auto;
  pointer-events: none;
}
.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 8rem;
  margin: 9rem auto 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
  .access::after {
    width: 95%;
    height: 95%;
  }
  .access {
    padding: 11rem 0 11rem;
  }
  .access-deco {
    top: 0.4rem;
    right: 2.5rem;
    width: 23.8rem;
  }
}

.access__img {
  width: 60.4rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 6rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 6rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
  font-weight: 500;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 600;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 5px 2px;
  background-repeat: repeat-x; 
  background-position: left bottom;
}

@media (min-width: 768px) {
  .access__list dt {
    background-image: linear-gradient(to right, #000 2px, transparent 2px);
    background-size: 5px 2px;
    background-repeat: repeat-x; 
    background-position: left bottom;
  }
}

@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__list dd:last-of-type,
.access__list dt:last-of-type {
  background-image: none;
}

.access__btn-1 {
  width: max-content;
  margin: 0 0 7rem auto;
}

.access__btn-1 a {
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.access__btn-1 a::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1.1rem;
  height: 1.3rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.access__btn-2 {
  width: max(240px, 40rem);
  height: max(60px, 8rem);
}

@media (max-width: 767px) {
  .access__btn-2 {
    margin: 0 auto;
  }
}

.access__btn-2 a {
  width: 100%;
  height: 100%;
  border: solid 2px var(--white);
  font-size: max(14px, 2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.access__btn-2 a::before {
  content: "";
  background-color: var(--white);
  width: max(12px, 1.8rem);
  height: max(10px, 1.5rem);
  clip-path: polygon(100% 100%, 0% 100%, 100% 0);
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

/*============================
	insta
============================*/
.insta {
  background: #e8e9e2;
  padding: 24rem 0 30.9rem;
  position: relative;
}
.insta::after {
  content: "";
  background: url(../img/bg-insta.png) no-repeat top center / contain;
  width: 76.4%;
  height: 79.3%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.insta__contents {
  width: 87rem;
  margin: 5.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 75%;
  }
  .insta {
    padding: 10rem 0 6.9rem;
  }
  .insta::after {
    width: 95%;
    height: 95%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST {
    gap: 1rem;
    position: relative;
    top: -3rem;
  }
}

.CMS-INSTAGRAM-LIST img {
  width: 28rem;
  height: 27rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}


.sister {
  background: #000;
  color: #fff;
  padding: 10.4rem 33.8rem 10.4rem 32.4rem;
  position: relative;
  display: flex;
  gap: 7rem;
}
.sister img {
  width: 23.9rem;
  height: 100%;
}
.sister p {
  font-weight: 500;
  letter-spacing: -0.1em;
}
.sister .common__ttl {
  color: #FFF;
  flex-direction: row;
  gap: 2rem;
  margin-bottom: 4rem;
}
.sister .common__ttl .en {
  margin-top: 1rem;
}
.sister .common__btn {
  margin: 4.2rem auto 0 0;
}
.sister .txt-wrap {
  width: 47rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sister {
    padding: 10rem 3rem 10rem 3rem;
  }
  .sister img {
    width: 20rem;
  }
}

.recruit {
  background: #d6d8cc;
  display: flex;
  flex-direction: row-reverse;
  gap: 7.7rem;
}
.recruit img {
  width: 67.6rem;
}
.recruit p {
  font-weight: 500;
  letter-spacing: -0.1em;
  font-size: max(10px, 1.6rem);
}
.recruit .common__ttl {
  flex-direction: row;
  gap: 2rem;
  margin-bottom: 4rem;
  margin-top: 12rem;
}
.recruit .common__ttl .en {
  margin-top: 1rem;
}
.recruit .common__btn {
  margin: 4.2rem auto 0 0;
}
.recruit .txt-wrap {
  width: 50rem;
  position: relative;
  z-index: 1;
}
.recruit .txt-wrap::before {
  content: "";
  background: url(../img/line-1.png) repeat-x top center / contain;
  width: 100%;
  height: 1.1rem;
  position: absolute;
  top: 5rem;
  left: 0;
  z-index: -1;
}
.recruit .txt-wrap::after {
  content: "";
  background: url(../img/line-2.png) repeat-x top center / contain;
  width: 100%;
  height: 1.1rem;
  position: absolute;
  bottom: 4rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .recruit .txt-wrap {
    width: 60rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit {
    flex-direction: column-reverse;
  }
  .recruit img {
    width: 100%;
  }
  .recruit .txt-wrap {
    width: 90%;
    margin: 0 auto;
  }
  .recruit .txt-wrap::after {
    bottom: -5rem;
  }
}


/*=============== top-yoyaku ===========*/

.top-yoyaku {
  background: var(--bg-1);
  padding: 10.2rem 3rem 9.6rem;
  position: relative;
}
.top-yoyaku .txt-1 {
  margin: 4rem auto 1rem;
  text-align: center;
  font-size: max(16px, 1.8rem);
  letter-spacing: 0.09em;
  line-height: 1.75;
}
.top-yoyaku .txt-2 {
  margin: 0 auto;
  text-align: center;
  font-size: max(14px, 1.6rem);
  letter-spacing: 0.05em;
}
.calendar-wrapper {
  border: 16px solid #ccc;
  width: 100%;
  max-width: 900px;
  margin: 5.6rem auto 0 auto;
  display: flex;
  background: #fff;
  position: relative;
  z-index: 1;
}

.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;
  -webkit-appearance: auto;
  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;
  text-align: center;
}

.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 3rem;
  }
  .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: 767px) {
  .yoyaku {
      padding: 10rem 20rem;
  }
}