@charset "UTF-8";

/*============================
	common
============================*/
.common__btn {
  width: 15.4em;
  margin: 0 auto;
}


/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: calc(100vh - 10rem);
  color: var(--text-color);
  position: relative;

  overflow: hidden;
}

.hero iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .hero {
    height:calc(100vh - max(60px, 8rem));
  }
}

/* .hero::before,
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 5;
}

.hero::before {
  background: url("../img/hero_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  mix-blend-mode: multiply;
  left: 0;
}

.hero::after {
  width: 131rem;
  height: 95%;
  border: solid max(3px, 0.6rem) var(--text-color);
  border-top: 0;
  transform: translateX(-50%);
  left: 50%;
} */

@media (max-width: 767px) {
  .hero::after {
    width: 95%;
    height: 95%;
  }
}

.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-family: var(--font-en);
  font-size: max(10px, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  z-index: 100;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--text-color);
  width: 1px;
  height: max(50px, 7.5rem);
  margin-top: 1.5rem;
  animation: scroll 2.5s infinite;
}





/*============================
	news
============================*/
.news {
  padding: 8rem 0 15rem;
}

.news__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
  }
}

.news h2 {
  margin-top: -1.3em;
}

.news h2 span {
  margin-right: -0.1em;
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: flex;
  gap: 6rem 4rem;
  margin: 4.2rem auto 6rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    flex-direction: column;
  }
}

.CMS-NEWS-ITEM {
  width: 34rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-ITEM {
    width: 100%;
  }
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 21rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.875;
  text-align: left;
}

.CMS-NEWS-TIME {
  font-size: 0.9em;
  padding-bottom: 0.6em;
  border-bottom: solid 0.03em #fff;
  margin-bottom: 0.6em;
}

.CMS-NEWS-MORE-READ {
  display: none;
}



/* 変数には「em」単位を使用 */
@property --p {
  syntax: "<length>";
  initial-value: 0px;
  inherits: true
}

.fieldset {
  --r: 20px;
  /* ボックスの角丸 */
  --b: 0.4em;
  /* ボーダーの幅 */
  --c: #fff;
  /* ボーダーのカラー */
  --p: 3em;
  /* ボックスのパディング */
  --g: 3em;
  /* コンテンツと枠線のすき間 */
  --o: 10px;
  /* legendを隅からずらす */

  padding: var(--p);
  padding-bottom: 5em;
  position: relative;
  z-index: 0;
  display: flow-root;
  /* マージン崩壊を避ける */
}

.fieldset .fieldset__title {
  margin:
    calc(var(--b)/2 - .5lh - var(--p)) calc(var(--r) - var(--p)) calc(var(--p) - .5lh - var(--b)/2);
  display: flex;
  gap: var(--g);
}

.fieldset .fieldset__title:before,
.fieldset .fieldset__title:after {
  content: "";
  border-top: var(--b) solid var(--c);
  width: var(--o);
  margin-top: calc(.5lh - var(--b)/2)
}

.fieldset .fieldset__title:after {
  flex: 1;
}

.fieldset:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: var(--b) solid var(--c);
  clip-path: polygon(0 0, var(--r) 0, var(--r) 50%, calc(100% - var(--r)) 50%, calc(100% - var(--r)) 0, 100% 0, 100% 100%, 0 100%);
}

.fieldset.center .fieldset__title:before {
  flex: 1;
}

.fieldset.center {
  text-align: center;
}

@media (max-width: 767px) {
  .fieldset {
    --r: 20px;
    /* ボックスの角丸 */
    --b: 0.3em;
    /* ボーダーの幅 */
    --c: #fff;
    /* ボーダーのカラー */
    --p: 1.5em;
    /* ボックスのパディング */
    --g: 3em;
    /* コンテンツと枠線のすき間 */
    --o: 10px;
    /* legendを隅からずらす */

    padding: var(--p);
    padding-bottom: 5em;
    position: relative;
    z-index: 0;
    display: flow-root;
    /* マージン崩壊を避ける */
  }
}





/*============================
	policy
============================*/
.policy {
  padding: 8.5rem 0 6rem;
  background: url(../img/back-concept.jpg) no-repeat center top / cover;
}

@media (max-width: 767px) {
  .policy {
    padding: 13rem 0;
  }
}

.policy__contents {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  column-gap: 7.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 85%;
    gap: 5rem;
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 43%;
  position: relative;
}

@media (max-width: 1100px) {
  .policy__txt-wrapper {
    width: 53%;
  }
}

@media (max-width: 767px) {
  .policy__txt-wrapper {
    margin: 0;
    width: 100%;
  }
}

.policy__txt-wrapper::before,
.policy__txt-wrapper::after {
  content: "";
  position: absolute;
  z-index: -1;
}

@media (max-width: 767px) {}

.policy__txt-wrapper h2 {
  font-family: var(--font-en);
  font-size: 11em;
  font-size: 18.06rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.057em;
  margin: 0rem 0 2rem 0;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    margin: 2rem 0;
  }
}

.policy__txt-wrapper h3 {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.62;
  letter-spacing: 0.15em;
  margin-bottom: 3.3rem;
  width: 48rem;
}

@media (max-width: 1100px) {
  .policy__txt-wrapper h3 {
    width: 64rem;
  }
}

@media (max-width: 767px) {
  .policy__txt-wrapper h3 {
    text-align: left;
    width: 100%;
  }
}

.policy__txt-wrapper p {
  font-size: 1em;
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0.2em;
  width: 48rem;
}

@media (max-width: 1100px) {
  .policy__txt-wrapper p {
    width: 64rem;
  }
}

@media (max-width: 767px) {
  .policy__txt-wrapper p {
    width: 100%;
  }
}

.policy .common__btn {
  margin: 5.5rem 0 0 0;
}

@media (max-width: 767px) {
  .policy .common__btn {
    margin: 8rem auto 0;
  }
}

.policy__img {
  flex: 1;
  position: relative;
}

.policy__img img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
}





/*============================
	inside
============================*/
.inside {
  padding: 8rem 0 7.5rem;
  position: relative;
  color: #000;
}

.inside::before,
.inside::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.inside::before {
  left: 0;
  background-image: url("../img/back-inside1.jpg");
}

.inside::after {
  right: 0;
  background-image: url("../img/back-inside2.jpg");
}

@media (max-width: 767px) {
  .inside {
    padding: 8rem 0 0;
    position: relative;
    color: #000;
    background: url(../img/back-inside1.jpg) no-repeat center top / cover;
  }

  .inside::before {
    content: none;
  }

  .inside::after {
    content: none;
  }

  .inside__bottom {
    height: 60rem;
    background: url(../img/back-inside2.jpg) no-repeat center top / cover;
  }
}

.inside__contents {
  display: flex;
  justify-content: space-between;
  width: 108rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.inside__contents>div {
  flex-basis: 42%;
}

@media (max-width: 767px) {
  .inside__contents {
    flex-direction: column;
    width: 85%;
  }
}

.inside__txt-wrapper h2 {
  margin-bottom: 2.8rem;
}

.inside__txt-wrapper h3 {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.62;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

@media (max-width: 1000px) {
  .inside__txt-wrapper h2 {
    margin-bottom: 4rem;
  }

  .inside__txt-wrapper h3 br {
    display: none;
  }
}

@media (max-width: 767px) {
  .inside__txt-wrapper h3 {
    margin-bottom: 4rem;
  }
}

.inside__txt-wrapper p {
  font-size: 1em;
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0.2em;
  margin-bottom: 4rem;
}

@media (max-width: 767px) {
  .inside__txt-wrapper p {
    margin-bottom: 7rem;
  }
}

.inside .common__btn {
  margin-left: 0;
}

@media (max-width: 767px) {
  .inside .common__btn {
    margin-left: auto;
    margin-bottom: 8rem;
  }
}






/*============================
	menu
============================*/
.menu {
  padding: 10rem 0 8rem;
  background: url(../img/back-menu.jpg) no-repeat center top / cover;
  position: relative;

  background-image: url(../img/deco-menu2.png), url(../img/deco-menu3.png), url(../img/back-menu.jpg);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: right top 28rem, left bottom, center top;
  background-size: 31% auto, 24% auto, cover;
}

.menu::before {
  content: "";
  background: url(../img/deco-menu1.png) no-repeat center top / contain;
  width: 60rem;
  height: 40rem;
  /* aspect-ratio: 293/95; */
  position: absolute;
  top: -3.7em;
  left: 1rem;
  pointer-events: none;
  z-index: 5;
}

@media (max-width: 767px) {
  .menu {
    padding: 25rem 0 13rem;
    background-position: right top 2rem, left bottom, center top;
  }

  .menu::before {
    width: 40rem;
    height: 30rem;
    /* aspect-ratio: 293/95; */
    position: absolute;
    top: -1.5em;
    left: 1rem;
    pointer-events: none;
  }
}


.menu__contents {
  /* width: 110rem; */
  position: relative;
  width: 124rem;
  display: flex;
  justify-content: space-between;
  column-gap: 0rem;
  margin: 5rem auto 0;
  padding: 11rem 6rem 5rem;
  z-index: 0;
}

.menu__contents:nth-of-type(2) {
  flex-direction: row-reverse;
  column-gap: 8rem;
  margin: 6rem auto 6rem;
  padding-top: 9rem;
}

.menu__contents:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border: 0.8rem solid #fff;
  top: 0;
  left: 0;
  z-index: -5;
}

.menu__contents:nth-of-type(1)::after {
  content: "";
  position: absolute;
  display: block;
  top: 20rem;
  left: -8vw;
  width: 70vw;
  height: 20rem;
  background: url(../img/bar-yel-1.png) no-repeat left center/cover;
  z-index: -10;
}

.menu__contents:nth-of-type(2)::after {
  content: "";
  position: absolute;
  display: block;
  top: 18rem;
  right: -8vw;
  width: 70vw;
  height: 20rem;
  background: url(../img/bar-yel-2.png) no-repeat left center/cover;
  z-index: -10;
}

@media (max-width: 920px) {
  .menu__contents:nth-of-type(1)::after {
    height: 26rem;
  }

  .menu__contents:nth-of-type(2)::after {
    height: 26rem;
  }
}


@media (max-width: 767px) {
  .menu__contents {
    width: 85%;
    flex-direction: column-reverse;
    gap: 7rem;
    margin: 7rem auto 0;
  }

  .menu__contents:nth-of-type(2) {
    flex-direction: column-reverse;
    margin: 7rem auto;
  }

  .menu__contents:nth-of-type(1)::after {

    top: 71rem;
    left: -8vw;
    width: 90vw;
    height: min(38rem, 220px);

  }

  .menu__contents:nth-of-type(2)::after {

    top: 68rem;
    right: -8vw;
    width: 90vw;
    height: min(38rem, 200px);
    background: url(../img/bar-yel-1.png) no-repeat left center/cover;

  }





}

.menu__txt-wrapper {
  width: 48%;
  position: relative;
}

.menu__contents:nth-of-type(2) .menu__txt-wrapper {
  width: 43%;
}

@media (max-width: 767px) {
  .menu__txt-wrapper {
    width: 100%;
    overflow-x: hidden;
  }

  .menu__contents:nth-of-type(2) .menu__txt-wrapper {
    width: 100%;
  }
}

.menu__txt-wrapper .menu__ttl img {
  width: auto;
  height: 12rem;
  margin-bottom: 3rem;
}

.menu__txt-wrapper h3 {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.62;
  letter-spacing: 0.15em;
  margin-bottom: 3.8rem;
  color: #000;
}

@media (max-width: 1100px) {
  .menu__txt-wrapper h2 {
    margin-bottom: 4rem;
  }

  .menu__txt-wrapper h3 br {
    display: none;
  }
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 {
    margin-bottom: 4rem;
  }
}

.menu__txt-wrapper p {
  font-size: 1em;
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0.2em;
  margin-bottom: 4rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper p {
    margin-bottom: 7rem;
  }
}

.menu__img {
  flex: 1;
  margin-top: -10.5rem;
  margin-top: -15.5rem;
}

.menu__img img {
  width: 85rem;
  height: auto;
}

.menu__contents:nth-of-type(1) .menu__img {
  margin-left: -3rem;
}

.menu__contents:nth-of-type(1) .menu__img img {
  width: 90rem;
}

.menu__contents:nth-of-type(2) .menu__img {
  margin-top: -3rem;
}

.menu__contents:nth-of-type(2) .menu__img img {
  width: 100%;
}

@media (max-width: 900px) {
  .menu__img {
    width: 80rem;
  }
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    position: static;
    margin-top: 0;
  }

  .menu__img img {
    width: 100%;
  }

  .menu__contents:nth-of-type(2) .menu__img {
    margin-top: 0;
  }
}






/*============================
	gallery
============================*/
.gallery {
  padding: 11rem 0 13rem;
  background: url(../img/back-gallery.jpg) no-repeat center top / cover;
  position: relative;
}

.gallery::before {
  content: "";
  background: url(../img/deco-gallery1.png) no-repeat center top / contain;
  width: 50rem;
  height: 35rem;
  /* aspect-ratio: 293/95; */
  position: absolute;
  top: -25rem;
  right: 3.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .gallery::before {
    width: 26rem;
    height: 19rem;
    top: -10rem;
    right: 0rem;
  }
}

.gallery__slider {
  margin: 5.4rem 0 10rem;
  position: relative;
  z-index: 0;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28rem;
}

@media (max-width: 767px) {
  .gallery__slider .swiper-slide {
    width: 35rem;
  }
}



/*============================
	store
============================*/
.store {
  background: url("../img/store_bg.jpg") no-repeat center / cover;
  padding: 12rem 0;
  position: relative;
  z-index: 1;
}

.store__ttl {
  width: 29.3rem;
  position: absolute;
  top: 19rem;
  left: 43%;
  z-index: 1;
}

@media (max-width: 767px) {
  .store__ttl {
    top: 55rem;
    left: 5%;
  }
}

.store__ttl span {
  font-size: max(12px, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  white-space: nowrap;
  position: absolute;
  transform: translateX(100%);
  top: 1rem;
  right: -9rem;
}

@media (max-width: 767px) {
  .store__ttl span {
    top: 5rem;
  }
}

.store__ttl span::before {
  content: "";
  background: url("../img/store_deco-1.png") no-repeat center / contain;
  width: 16.6rem;
  height: 6.25rem;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  left: 50%;
}

.store__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  column-gap: 4rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .store__contents {
    width: 85%;
    flex-direction: column-reverse;
  }
}

.store__txt-wrapper {
  padding: 17rem calc(50vw - 50%) 7.7rem 30rem;
  margin: 0 calc(50% - 50vw) 0 -30rem;
  position: relative;
}

@media (max-width: 767px) {
  .store__txt-wrapper {
    padding: 10rem 4rem 4rem;
    margin: 0;
  }
}

.store__txt-wrapper::before,
.store__txt-wrapper::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.store__txt-wrapper::before {
  background: url("../img/store_deco-2.png") no-repeat center / cover;
  width: 86.8rem;
  height: 63.3rem;
  left: -2rem;
  bottom: -2rem;
}

.store__txt-wrapper::after {
  background-color: #1c0e05;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .store__txt-wrapper::before {
    width: 100%;
    height: 100%;
  }
}

.store__txt-wrapper h3 {
  font-size: max(20px, 4.8rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.375;
  text-align: right;
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .store__txt-wrapper h3 {
    text-align: left;
  }
}

.store__txt-wrapper h3 strong {
  font-size: max(24px, 5.3rem);
  font-weight: 500;
  color: #cfa972;
}

.store__txt-wrapper p {
  width: 44.5rem;
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.16em;
  line-height: 2.5;
  margin-left: auto;
}

@media (max-width: 767px) {
  .store__txt-wrapper p {
    width: auto;
  }
}

.store .common__btn {
  margin: 3.5rem 0 0 auto;
}

@media (max-width: 767px) {
  .store .common__btn {
    margin: 3.5rem auto 0;
  }
}

.store__img {
  width: 73.3rem;
  height: 51.5rem;
  flex-shrink: 0;
  margin: 4.6rem 0 0 calc(50% - 50vw);
}

@media (max-width: 767px) {
  .store__img {
    width: 100%;
    height: auto;
    margin: 0;
  }
}






/*============================
	access
============================*/
.access {
  padding: 10rem 0 10rem;
}

.access__contents {
  width: 122rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 7rem 6.5rem;
  margin: 0 auto;
  border: 0.8rem solid #fff;
  padding: 9rem 6rem 7.5rem 0;
}

@media (max-width: 767px) {
  .access {
    padding: 13rem 0 13rem;
  }

  .access__contents {
    width: 85%;
    flex-direction: column-reverse;
    padding: 7rem 4rem;
  }
}

.access__text {
  flex-basis: 47.5%;
}

@media (max-width: 1000px) {
  .access__text {
    flex-basis: 55%;
  }
}

.access h2 {
  margin-bottom: 3rem;
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
  /* border-top: solid 1px #959595; */
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.1em;
}

.access__list dt {
  width: max(75px, 11.1rem);
  font-weight: 500;
  display: flex;
  padding: 2.5rem 1.5rem;
}

.access__list dd {
  width: calc(100% - max(75px, 11.1rem));
  font-weight: 500;
  border-bottom: dashed 0.1rem #fff;
  padding: 2.5rem 0 2.5rem 2.9rem;
}

.access__list dt:last-of-type {
  border-bottom: none;
}

.access__list dd:last-of-type {
  border-bottom: none;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: dashed 0.1rem #fff;
  }
}

@media (max-width: 767px) {

  .access__list dt,
  .access__list dd {
    width: 100%;
    justify-content: flex-start;
    padding: 2.5rem 2rem;
  }

  .access__list dd {
    width: 100%;
    justify-content: flex-start;
    padding: 0 2rem 2.5rem;
  }
}

.access .common__btn {
  margin-left: 0;
}

@media (max-width: 767px) {
  .access .common__btn {
    margin: 0 auto;
  }
}

.access__img {
  flex: 1;
  margin-left: -12rem;
}

.access__img img {}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin-left: 0;
  }
}

.access .map {
  height: 45rem;
  margin-top: 10rem;
}

.access .map iframe {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.access .map iframe:hover {
  filter: grayscale(0%);
}

@media (max-width: 500px) {
  .access .map {
    height: 60rem;
  }
}



/*============================
	insta
============================*/
.insta {
  padding: 2rem 0 15rem;
  background: url(../img/back-insta.jpg) no-repeat center bottom / cover;
}

.insta__contents {
  width: 85.7rem;
  margin: 6rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 85%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}

.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: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}













/*  ----------------------------------------------------------

reserve

----------------------------------------------------------  */
.top-reservation {
  padding: 19rem 0 9.5rem;
  background: url(../img/back-reserve.jpg) no-repeat center top / 100%;
}

.top-reservation .inner {
  padding: 3rem;
  text-align: center;
  border: 1px solid #9c8e79;
  background: url(../img/texture-3.jpg) repeat;
}


.top-reservation>p {
  text-align: center;
  font-size: 1.05em;
  line-height: 1.9;
  font-weight: 500;
  margin: 3rem auto 7rem;
  width: 90%;
  color: #fff;
}

.top-reservation>p span {
  font-size: 0.88em;
  font-weight: 500;
  display: block;
  margin-top: 0.8rem;
}

.top-reserve a {
  display: inline-block;
  margin: 0.5rem 0 0;
  font-size: 1rem;
  /* border-bottom: 2px solid #9c8e79; */
  padding-bottom: 0.5rem;
}

@media screen and (max-width: 767px) {
  .top-reservation {
    padding: 12rem 0rem 5rem;
  }
}


/* ------------------------------
　calendar
------------------------------ */
.calendar-wrapper {
  position: relative;
  outline: 16px solid #ccc;
  /* max-width: 1000px; */
  width: 65%;
  margin: 50px auto 0 auto;
  display: flex;
  background-color: rgba(255, 255, 255, 1);
  color: #000;
}

@media screen and (max-width: 1000px) {
  .calendar-wrapper {
    width: 90%;
  }
}

#calendar {
  text-align: center;
  width: 100%;
}

table {
  /* outline: 16px solid #ccc; */
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
}

.calendar-wrapper th {
  color: #000;
}

.calendar-wrapper th,
.calendar-wrapper td {
  outline: 1px solid #ddd;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  color: #111111;
}

.calendar-wrapper td:nth-child(6) .reservation-date,
.calendar-wrapper td:nth-child(6) .reservation-date a {
  color: #8888ff;
}

.calendar-wrapper td:last-child .reservation-date,
.calendar-wrapper td:last-child .reservation-date a {
  color: #ff8888;
}

.calendar-wrapper td.disabled {
  background-color: #eeeeee;
  color: #aaaaaa;
}

.reservation-date {
  text-decoration: underline;
}

.reservation-seat {
  font-size: 14px;
}

.reservation-seat a {
  color: #dd8866;
}

.reservation-seat-disabled {
  color: #aaaaaa;
}

.calendar-reservation {
  border-collapse: collapse;
  width: 100%;
  word-break: break-all;
  /* margin-top: 10px;
  margin-left: 1rem; */
  padding: 20px;
  line-height: 1.8;
  border-left: 1.3rem solid #ccc;
}

.calendar-reservation form {
  padding-top: 0;
}

.calendar_title {
  color: #000;
  font-size: 1em;
}

.calendar_date {
  font-size: 0.9em;
  line-height: 2;
}

.calendar_person,
.calendar_time {
  width: 100%;
  font-size: 1em;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 8px;
  border: 0.1rem solid #aaaaaa;
}

.calendar_person,
.calendar_time {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;

  padding-right: 30px;
}

.calendar_button {
  width: 100%;
  font-size: 1em;
  padding: 12px;
  border-radius: 6px;
  background-color: #000;
  color: #ffffff;
  border: 1px solid #aaaaaa;
}

.calendar_button:not([disabled]) {
  cursor: pointer;
}

.calendar_info {
  font-size: 0.85em;
  margin-top: 20px;
  line-height: 1.5;
}

.calendar_ok {
  color: #dd8866;
}

.reservation-message {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 16px;
  text-align: center;
  color: #c00000;
}

@media screen and (max-width: 767px) {
  .calendar-wrapper {
    width: 80%;
    margin: 40px auto 60px auto;
    flex-direction: column;
  }

  .calendar-wrapper {
    font-size: 12px;
  }

  .calendar-reservation {
    padding: 0;
    margin-top: 20px;
    margin-left: 0;
    border-left: 0;
    border-top: 1.3rem solid #ccc;
  }

  .calendar-reservation form {
    padding: 20px;
  }

  .calendar-reservation form div {
    margin-bottom: 20px;
  }

  .calendar_info {
    padding: 0 20px 20px 20px;
    font-size: 0.95em;
  }

  .calendar_date {
    font-size: 1em;
  }

  .calendar_button {
    font-size: 1em;
  }

}

@media screen and (max-width: 450px) {
  .reservation-date {
    font-size: 2.8vw;
  }
}

/* ------------------------------
　reservation
------------------------------ */
.regform {
  /* max-width: 840px; */
  margin: auto;
}

.form-container {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

.form-container input,
.form-container select {
  height: 2rem;
  font-size: 1.2rem;
}

.form-container textarea {
  width: 100%;
  height: 8rem;
}

.form-container .tel-form input,
.form-container .mail-form input {
  width: 100%;
  font-size: 1.2rem;
}

.form-container .pay-form select {
  width: 33%;
  font-size: 1.2rem;
}

.form-container dl {
  display: flex;
}

.form-container dt {
  display: flex;
  align-items: center;
  width: 300px;
  width: 30%;
  background-color: #eeebe4;
  font-weight: bold;
  padding: 5px 15px;
  border: 1px solid #cccccc;
}

.form-container dd {
  padding: 5px 15px;
  flex: 1;
  border: 1px solid #cccccc;
}

.form-container .text_field {
  width: 47.6%;
}

.form-container .text_field:first-child {
  margin-right: 3%;
}

.form-container .date-form,
.form-container .course-form,
.form-container .seat-form,
.form-container .cost-form {
  /* height: 36px; */
}

/* .form-container .date-form dd,
.form-container .course-form dd,
.form-container .seat-form dd,
.form-container .cost-form dd{
  padding: 12px 5px; 
} */

.form-container .blank-area {
  margin-right: 10px;
}

.hissu {
  min-width: 28px;
  height: 20px;
  display: inline-block;
  border: 1px solid #c00;
  padding: 3px;
  margin-left: 14px;
  font-size: 0.75rem;
  line-height: 1;
  color: #c00;
}

.nini {
  min-width: 28px;
  height: 20px;
  display: inline-block;
  border: 1px solid #999;
  padding: 3px;
  margin-left: 14px;
  font-size: 0.75rem;
  line-height: 1;
  color: #333;
}

.btn-container {
  display: flex;
  justify-content: space-evenly;
  justify-content: center;
  margin-top: 2rem;
  gap: 4rem;
}

.btn-container .submit-btn input {
  font-weight: bold;
  background: #f95a6b;
  background: linear-gradient(to bottom, #ff9ba2 0%, #f95a6b 75%, #f85164 100%);
  border: 1px solid #da949b;
  border-radius: 4px;
  box-shadow: inset 1px 1px 3px #f9d8db, inset -1px -1px 3px #ffa6ae;
  color: #ffffff !important;
  padding: 0.4rem 1.6rem;
  text-decoration: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.btn-container .pre-btn input {
  background-color: #ffffff;
  border: solid #cccccc;
  border-radius: 4px;
  border-width: 1px 1px 3px;
  color: #666666 !important;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  padding: 0.4rem 1.6rem;
  text-decoration: none;
  font-size: 1.2rem;
}

.submit-message {
  margin-top: 4rem;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  animation: blink 6s ease-in-out infinite;
}

@keyframes blink {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

@media screen and (max-width: 767px) {
  .form-container dl {
    flex-direction: column;
  }

  .form-container dt {
    width: 100%;
  }

  .form-container .date-form,
  .form-container .course-form,
  .form-container .seat-form,
  .form-container .cost-form {
    height: auto;
  }

  .form-container .text_field {
    width: 47.6%;
  }

  .form-container .blank-area {
    margin-right: 8px;
  }
}

/* ローディング */
.loader_container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1;
}

.spinner {
  width: 64px;
  height: 64px;
  border: 8px solid;
  border-color: var(--brown) var(--brown) var(--brown) transparent;
  border-radius: 50%;
  animation: spin-animation 1.2s linear infinite;
}

@keyframes spin-animation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader_container.isLoad {
  animation: fade-out 0.5s;
  animation-fill-mode: both;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.reserve-txt {
  text-align: center;
  font-size: 2rem;
}


/* index.html reserve-txt編集 */
.reserve-txt span {
  font-size: 1.5rem;
}