@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-mincho);
  font-size: max(24px, 3.8rem);
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  font-size: max(10px, 1.2rem);
  text-transform: capitalize;
}

.common__ttl::before,
.common__ttl::after {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: 12.8rem;
  height: 5.1rem;
}

.common__ttl--wt::before,
.common__ttl--wt::after {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__ttl::after {
  transform: scale(-1, -1);
}

.common__btn {
  width: max(215px, 34.5rem);
  height: max(60px, 9.6rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  font-size: max(14px, 2rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7rem;
  padding-left: 5rem;
  position: relative;
}

.common__btn a::after {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(11px, 1.6rem);
  height: max(15px, 2.2rem);
}

.common__line {
  background: url("../img/line.png") no-repeat center / cover;
  width: 100%;
  height: max(12px, 2.6rem);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(94.5rem, 100vh);
  padding: max(80px, 12rem) max(60px, 9rem) 5.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(320px, 55rem);
    padding: max(60px, 8rem) 0 8rem;
  }
}

.hero iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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: 14px;
  transform: translateX(-50%) !important;
  left: 50% !important;
  bottom: 3rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: var(--blue);
  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;
}

.hero .swiper-pagination-bullet-active {
  background-color: var(--brown);
}

@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(10px, 1.2rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  left: 6rem;
  bottom: 5.5rem;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--blue);
  width: 1px;
  height: max(40px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-2);
  padding: 8.5rem 0 7.5rem;
}

.concept__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem 4rem;
  margin: 0 auto 5.5rem;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
  color: var(--white);
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding-right: 1rem;
  }
}

.concept__txt-wrapper h2 {
  font-size: max(18px, 2.9rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8;
  position: relative;
}

@media (max-width: 767px) {
  .concept__txt-wrapper h2 {
    margin-bottom: 4rem;
  }
}

.concept__txt-wrapper h2::before {
  content: "";
  background: url("../img/concept_ttl-deco.png") no-repeat center / contain;
  width: 28.8rem;
  height: 29rem;
  position: absolute;
  transform: translateX(-50%);
  top: -2rem;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .concept__txt-wrapper h2::before {
    width: 24rem;
    height: 24.1rem;
    transform: none;
    top: -2rem;
    left: -1rem;
  }
}

.concept__txt-wrapper h2 strong {
  font-size: max(20px, 3.9rem);
  font-weight: 900;
}

.concept__txt-wrapper h2 strong:nth-of-type(2) {
  color: var(--brown);
}

.concept__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .concept__txt-wrapper p {
    height: max(300px, 31rem);
    margin: 2rem 7rem 0 0;
  }
}

.concept__img-1 {
  width: 56rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: -10rem;
}

@media (max-width: 767px) {
  .concept__img-1 {
    width: 100%;
    margin: 0;
  }
}

.concept__img-wrapper {
  width: 110rem;
  display: flex;
  align-items: flex-end;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__img-wrapper {
    width: 90%;
    flex-direction: column;
  }
}

.concept__img-2 {
  width: 72.5rem;
  display: grid;
  grid-template-columns: 37rem 31rem;
  gap: 4.5rem;
  margin: 0 7.5rem 0 -3.5rem;
}

@media (max-width: 767px) {
  .concept__img-2 {
    width: 100%;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
    margin: 0 0 5rem;
  }
}

.concept__btn {
  width: max-content;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .concept__btn {
    margin: 0 auto;
  }
}

.concept__btn a {
  width: 100%;
  height: 100%;
  border-bottom: solid 2px var(--white);
  font-size: max(14px, 2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7rem;
  padding: 0 1rem 1.5rem 0;
  position: relative;
}

.concept__btn a::after {
  content: "";
  background: url("../img/btn_arw-wt.png") no-repeat center / contain;
  width: max(11px, 1.6rem);
  height: max(15px, 2.2rem);
}

/*============================
	menu
============================*/
.menu {
  padding: 7rem 0 11.5rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  background: url("../img/deco_2.png") no-repeat center / contain;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu::before {
  width: 24.6rem;
  height: 16rem;
  top: 9rem;
  right: 16rem;
}

.menu::after {
  width: 16.5rem;
  height: 10.8rem;
  top: 7rem;
  left: 22rem;
}

@media (max-width: 767px) {
  .menu::before {
    width: 20rem;
    height: 13rem;
    top: 4rem;
    right: 2rem;
  }

  .menu::after {
    width: 14rem;
    height: 9.1rem;
    top: 3rem;
    left: 2rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 9.5rem;
  margin: 10rem auto 0;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 5rem 15rem;
}

.menu__list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
}

.menu__txt-wrapper::before {
  content: "";
  background: url("../img/menu_txt-deco.png") no-repeat center / contain;
  width: 63rem;
  height: 63.4rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.menu__txt-wrapper h3 {
  display: block;
  width: auto;
  height: 9.7rem;
  margin-bottom: 3rem;
  margin-left: -1rem;
}

.menu__txt-wrapper h3 img {
  width: auto;
}

.menu__txt-wrapper h4 {
  font-size: max(18px, 2.9rem);
  font-weight: 400;
  color: var(--blue);
  letter-spacing: 0.1em;
}

.menu__txt-wrapper h4 strong {
  font-size: max(21px, 3.9rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.15em;
  line-height: 2;
  margin: 3.5rem 0 5rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 66rem;
  height: 100%;
  flex-shrink: 0;
}

.menu__list-item:nth-of-type(odd) .menu__img {
  margin-right: calc(50% - 50vw);
}

.menu__list-item:nth-of-type(even) .menu__img {
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list-item:nth-of-type(odd) .menu__img,
  .menu__list-item:nth-of-type(even) .menu__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/gallery_bg.jpg") repeat center bottom / 144rem auto;
  padding-top: 7.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list-item:nth-of-type(odd) .menu__img,
  .menu__list-item:nth-of-type(even) .menu__img {
    width: 100%;
    margin: 0;
  }
}

.gallery::before {
  content: "";
  background: url("../img/gallery_deco.png") no-repeat center bottom / cover;
  width: 100%;
  height: 22rem;
  position: absolute;
  transform: translateY(100%);
  left: 0;
  bottom: 2px;
  pointer-events: none;
  z-index: 1;
}

.gallery__slider {
  height: 26rem;
  margin: 5.5rem 0 5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 35.6rem;
  margin: 0 1px;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-3);
  padding: 4rem 0 9rem;
  position: relative;
  z-index: 1;
}

.insta::before,
.insta::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 37.6rem;
  height: 36rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.insta::before {
  top: 6.5rem;
  left: 7rem;
}

.insta::after {
  right: 3rem;
  bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .insta::before,
  .insta::after {
    width: 24rem;
    height: 23rem;
  }

  .insta::before {
    top: 4rem;
    left: 1rem;
  }

  .insta::after {
    right: 1rem;
    bottom: 2rem;
  }
}

.insta__contents {
  width: 88.7rem;
  margin: 3.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 2.9rem;
}

.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: 27.6rem;
  height: 27.6rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	access
============================*/
.access {
  padding: 5.5rem 0 9rem;
  position: relative;
}

.access::before,
.access::after {
  content: "";
  background: url("../img/deco_2.png") no-repeat center / contain;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.access::before {
  width: 24.6rem;
  height: 16rem;
  top: 7rem;
  right: 7.5rem;
}

.access::after {
  width: 16.5rem;
  height: 10.8rem;
  bottom: 6.5rem;
  left: 17.5rem;
}

@media (max-width: 767px) {
  .access::before {
    width: 20rem;
    height: 13rem;
    top: 4rem;
    right: 2rem;
  }

  .access::after {
    width: 14rem;
    height: 9.1rem;
    bottom: 3rem;
    left: 2rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 4.5rem;
  margin: 7rem auto 7.5rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 56rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    height: 100%;
    margin-top: -2rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--black);
  }
}

@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;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	recruit
============================*/
.recruit {
  background: var(--bg-2);
  padding: 8rem 0 8.5rem;
}

.recruit__contents {
  background: url("../img/texture-1.jpg") repeat center / 144rem auto;
  width: 110rem;
  padding: 0.7rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .recruit__contents {
    width: 90%;
  }
}

.recruit__border {
  border: solid max(2px, 0.3rem) var(--blue);
  display: flex;
  gap: 5rem 24rem;
  padding: 9rem 17rem 8rem 20rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .recruit__border {
    flex-direction: column;
    padding: 8rem 5%;
  }
}

.recruit__border::before {
  content: "";
  width: calc(100% - max(5px, 0.8rem));
  height: calc(100% - max(5px, 0.8rem));
  border: solid 1px var(--blue);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.recruit__contents p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 5.5rem;
}

@media screen and (max-width: 767px) {
  .recruit__contents p {
    text-align: center;
  }
}

.recruit__btn {
  width: max-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.recruit__btn a {
  width: 100%;
  height: 100%;
  border-bottom: solid 2px var(--black);
  font-size: max(14px, 2rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7rem;
  padding: 0 1rem 1.5rem 0;
  position: relative;
}

.recruit__btn a::after {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(11px, 1.6rem);
  height: max(15px, 2.2rem);
}

/*============================
	reserve
============================*/
.reserve {
  background-color: var(--bg-3);
  padding: 4.5rem 0 5.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.reserve::before,
.reserve::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 37.6rem;
  height: 36rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.reserve::before {
  top: 4.5rem;
  left: 7rem;
}

.reserve::after {
  right: 3rem;
  bottom: -2.5rem;
}

@media screen and (max-width: 767px) {
  .reserve::before,
  .reserve::after {
    width: 24rem;
    height: 23rem;
  }

  .reserve::before {
    top: 4rem;
    left: 1rem;
  }

  .reserve::after {
    right: 1rem;
  }
}

.reserve__txt {
  width: 90%;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  margin: 3.5rem auto 2.5rem;
}

.calendar-wrapper {
  border: 16px solid #ccc;
  width: max(650px, 90rem);
  margin: 0 auto;
  display: flex;
  color: #000;
  background: #fff;
}

.calendar-wrapper a {
  color: #000;
}

.reservation .calendar-wrapper {
  position: relative;
  outline: 16px 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;
  margin-top: 10px;
  margin-left: 1rem;
  padding: 20px;
  line-height: 1.8;
}

.calendar-reservation form {
  padding-top: 0;
}

.calendar_date {
  font-size: 18px;
}

.calendar_person,
.calendar_time {
  width: 100%;
  font-size: 18px;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 8px;
  border: 1px solid #ddd;
}

.calendar_button {
  width: 100%;
  font-size: 18px;
  padding: 12px;
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border: 1px solid #aaaaaa;
  cursor: pointer;
}

.calendar_button:hover {
  opacity: 0.8;
}

.calendar_info {
  font-size: 12px;
  margin: 20px;
  color: #000;
}

.calendar_ok {
  color: #dd8866;
}

@media screen and (max-width: 767px) {
  .calendar-wrapper {
    width: 90%;
    flex-direction: column;
  }

  .calendar-wrapper {
    font-size: 12px;
  }

  .calendar-reservation {
    padding: 0;
    margin-top: 20px;
    margin-left: 0;
  }

  .calendar-reservation form {
    padding: 0 20px;
  }

  .calendar-reservation form div {
    margin-bottom: 10px;
  }

  .calendar_person,
  .calendar_time {
    font-size: 14px;
    margin-bottom: 4px;
  }
}

@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;
}

.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;
}

@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;
  }

  .calendar-wrapper th,
  .calendar-wrapper td {
    outline: 1px solid #ddd;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    color: #111111;
  }

  .calendar_button {
    font-size: 16px;
  }

  .calendar_title,
  .calendar_date {
    font-size: 14px;
  }

  .calendar_info {
    margin: 10px 20px;
  }
}

/*============================
  parallax
============================*/
.parallax {
  width: 100%;
  height: 67rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

@media screen and (max-width: 767px) {
  .parallax {
    height: 55rem;
  }
}

.parallax::before {
  content: "";
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
