/*********************************
Variables
*********************************/
:root {
  /* Font */
  --font-family--primary: "Shippori Mincho", serif;
  --font-family--secondary: "Noto Sans JP", serif;
  --font-family--headding: "Shippori Mincho", serif;

  /* Colors */
  --color-text: #F2CF92;
  --color-primary: #4E0003;
  --color-secondary: #F2CF92;
  --color-tertiary: #FFFDF2;
  --color-btn: #998542;
  --color-black-red: #1D0001;
  --color-white: #ffffff;
}

/*********************************
Common
*********************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family--primary);
  font-size: 1rem;
  font-weight: 600;
  line-height: 2rem;
  color: var(--color-text);
  overflow-x: hidden;
  background-color: var(--color-black-red);
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: all .5s;
}

a:hover {
  text-decoration: underline;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1 {
  font-size: 5rem; /* 80px */
  line-height: 5.5rem;
}

h2 {
  font-size: 3rem; /* 48px */
  line-height: 3.5rem;
}

h3 {
  font-size: 2rem; /* 32px */
  line-height: 2.5rem;
}

h4 {
  font-size: 1.5rem; /* 24px */
  line-height: 2.5rem;
}

h5 {
  font-size: 1.25rem; /* 18px */
  line-height: 2rem;
}

h6 {
  font-size: 1rem; /* 16px */
  line-height: 1.75rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family--headding);
  font-weight: 800;
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.section {
  padding: 75px 0;
}
.mb-0 {margin-bottom: 0;}

@media (max-width: 767px) {
  h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  h4 {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  h5 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .section {
    padding: 50px 0;
  }
}

/*-----------------------------
  badge
-----------------------------*/
.badge {
  width: 130px;
  height: 42px;
  color: var(--color-tertiary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family--primary);
  border-radius: 21px;
  text-align: center;
  background-color: var(--color-primary);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%; /* 30.6px */
}
@media (max-width: 767px) {
  .badge {
    font-size: 14px;
  }
}

.badge-outline {
  border: 1px solid var(--color-primary);
  display: inline-block;
  position: relative;
  padding: 7.1px 20px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 10px;
}

.badge-outline span {
  padding-left: 10px;
  font-size: 12px;
}

@media (max-width: 767px) {
  .badge-outline {
    line-height: 27px;
    text-align: left;
  }

  .badge-outline span {
    display: block;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .fit {
    justify-items: center;
  }

  .lpcontents__item-bottom {
    display: grid;
    justify-content: center;
    justify-items: center;
  }

  .w-100 {
    height: 664px;
  }
}

/*-----------------------------
  Container
-----------------------------*/
.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
}
@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

@media (max-width: 1280px) {
  .container {
    padding: 0 20px;
  }
}

/*-----------------------------
  Button
-----------------------------*/
.btn-button {
  font-family: var(--font-family--primary);
  color: var(--color-white);
  padding: 12px 45px;
  display: inline-block;
  width: 100%;
  border-radius: 44.5px;
  text-align: center;
  background-color: var(--color-btn);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%; /* 43.2px */
}

.btn-button:hover {
  text-decoration: none;
  background-color: var(--color-primary);
}
@media(min-width: 768px) {
  .btn-button {
    width: 560px;
    font-size: 24px;
  }
}
@media(max-width: 767px) {
  .btn-button {
    font-size: 15px;
  }
}

.btn-outline {
  border: 2px solid var(--color-white);
  display: flex;
  gap: 15px;
  position: relative;
  padding: 16px 20px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  justify-content: start;
  align-items: center;
  max-width: 350px;
  z-index: 1;
  color: var(--color-white);
  font-family: var(--font-family--headding);
}

.btn-outline::before {
  position: absolute;
  content: "";
  top: 0;
  width: 0;
  height: 100%;
  left: 0;
  background-color: var(--color-primary);
  z-index: -1;
  transition: all ease .3s;
  transform: translateX(0);
}

.btn-outline:after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 26px;
  height: 22px;
  background-image: url(../img/svg/icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.btn-outline:hover {
  text-decoration: none;
}

.btn-outline:hover:before {
  width: 100%;
}
@media (max-width: 767px) {
  .btn-outline {
    width: 100%;
    font-size: 1rem;
    padding: 12px 20px;
  }

  .btn-outline:after {
    bottom: 5px;
  }
}

.btn-gradient {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 44.5px;
  background: linear-gradient(0deg, #E3BB66 0%, #CFA341 100%);
  transition: all ease .3s;
}
.btn-gradient span {
  color: var(--color-black-red);
  width: 100%;
  border-radius: 44.5px;
  background: linear-gradient(180deg, #E3BB66 0%, #CFA341 100%);
  font-size: 24px;
  font-family: var(--font-family--primary);
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 62px;
}
.btn-gradient:hover {
  text-decoration: none;
  box-shadow: 0px 3px 10px var(--color-secondary);
}


.btn-gradient.end {
	position: relative;
	pointer-events: none;
}
.btn-gradient.end span {	
	position: relative;
}

.btn-gradient.end::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 44.5px;
	top: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,.4);
	z-index: 6;
}

.btn-gradient.end span::before{
	content: "完売御礼";
	position: absolute;
	width: 8em;
	top: 0;
	left: 0;
	right: 0;
	padding: .3em 0;
	margin: .4em auto 0;/*
	color: var(--color-text);
	background-color: #6D0004;*/
	
	color: #6D0004;
	background-color: var(--color-text);
	z-index: 7;
}

@media(max-width: 767px) {
  .btn-gradient {
    padding: 5px;
  }
  .btn-gradient span {
    font-size: 15px;
    padding: 8px;
    line-height: 120%;
    min-height: 50px;
  }
	.btn-gradient.end span::before{
		margin: .8em auto 0;
	}
}

.comingsoon {
  pointer-events: none;
}

/*-----------------------------
  icon
-----------------------------*/
.icon-arrow {
  background-image: url("../img/svg/icon_arrow_dark_long.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 80px;
  height: 6px;
  display: inline-flex;
}

/*-----------------------------
  pc,sp/on_off
-----------------------------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/*-----------------------------
  Grid
-----------------------------*/
.grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media(max-width: 768px) {
  .grid-cols-2 {
    gap: 16px;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.grid-cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media(max-width: 768px) {
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

/*-----------------------------
  Animate
-----------------------------*/
.animate-on-load {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpOnLoad 1.2s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeUpOnLoad {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-----------------------------
  swiper custom
-----------------------------*/
.swiper-button-prev,
.swiper-button-next {
  display: inline-block;
  width: 80px;
  height: 80px;
  text-align: center;
  background-color: var(--color-primary);
  border-radius: 50%;
  padding: 0;
  transition: 0.3s;
  cursor: pointer;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #e6e1d1;
}

.swiper-button-prev:before {
  position: absolute;
  top: 50%;
  right: 50%;
  height: 2px;
  background: #343434;
  content: '';
  width: 40px;
  transform: translate(50%, -50%);
}

.swiper-button-next:before {
  position: absolute;
  top: 50%;
  right: 50%;
  height: 2px;
  background: #343434;
  content: '';
  width: 40px;
  transform: translate(50%, -50%);
}

.swiper-button-next::after {
  position: absolute;
  top: 50%;
  right: 14px;
  height: 2px;
  background: #343434;
  content: '';
  width: 14px;
  transform: translate(-50%, -50%) rotate(40deg);
  transform-origin: right center;
}

.swiper-button-prev::after {
  position: absolute;
  top: 50%;
  left: 7px;
  width: 14px;
  height: 2px;
  transform: translateY(-50%) rotate(145deg);
  transform-origin: right center;
  background: #343434;
  content: '';
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #E4E4E4;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 15px;
}

.swiper_btn_box {
  position: absolute;
  content: "";
  top: 45%;
  width: 100%;
  transform: translateY(-45%);
  z-index: 1;
}

.swiper_btn_box .swiper-button-prev {
  left: -40px;
}

.swiper_btn_box .swiper-button-next {
  right: -40px;
}

@media screen and (max-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: #faf9f6;
    left: 0px;
    border-radius: 50%;
    padding: 0;
    transition: 0.3s;
    cursor: pointer;
  }

  .swiper-button-prev::after {
    position: absolute;
    top: 50%;
    left: 6px;
    width: 10px;
    height: 2px;
    transform: translateY(-50%) rotate(145deg);
    transform-origin: right center;
    background: #343434;
    content: '';
  }

  .swiper-button-next::after {
    position: absolute;
    top: 50%;
    right: 11px;
    height: 2px;
    background: #343434;
    content: '';
    width: 10px;
    transform: translate(-50%, -50%) rotate(40deg);
    transform-origin: right center;
  }

  .swiper-button-prev:before {
    position: absolute;
    top: 50%;
    right: 50%;
    height: 2px;
    background: #343434;
    content: '';
    width: 20px;
    transform: translate(50%, -50%);
  }

  .swiper-button-next:before {
    position: absolute;
    top: 50%;
    right: 50%;
    height: 2px;
    background: #343434;
    content: '';
    width: 20px;
    transform: translate(50%, -50%);
  }

  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
  }
}

/*********************************
  Main visual
*********************************/
.lp__mainvisual {
  position: relative;
  padding-bottom: 70px;
}
.lp__mainvisual:after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, rgba(35, 0, 6, 0.00) 0%, #280008 35.88%, #1D0001 100%);
}

.lp__mainvisual picture {
  display: flex;
}

@media(max-width: 767px) {
  .lp__mainvisual {
    padding-bottom: 30px;
  }
}

/*********************************
1. Header
*********************************/

/*-----------------------------
  lp_nav
-----------------------------*/
.lp_nav {
  display: flex;
  flex-wrap: wrap;
}

.lp_nav-list {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(5, 1fr);
  height: 96px;
  background-color: #F2EED0;
  width: 100%;
}

.lp_nav-list li {
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-width: 13px;
  border-top-style: solid;
  border-top-color: #DBC3DD;
}

.lp_nav-list li:nth-child(2) {
  border-top-color: #AEE2E9;
}

.lp_nav-list li:nth-child(3) {
  border-top-color: #F5EBA0;
}

.lp_nav-list li:nth-child(4) {
  border-top-color: #BCDDB1;
}

.lp_nav-list li:nth-child(5) {
  border-top-color: #AEE2E9;
}

.lp_nav-list li,
.lp_nav-list li>a {
  color: var(--color-text);
  font-weight: 400;
  font-family: var(--font-family--headding);
  font-size: 1.5rem;
  transition: all ease .3s;
  cursor: pointer;
}

.lp_nav-list .item1 li.active,
.lp_nav-list .item1 li:hover,
.item1:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.lp_nav-list .item2 li.active,
.lp_nav-list .item2 li:hover,
.item2:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.lp_nav-list .item3 li.active,
.lp_nav-list .item3 li:hover,
.item3:hover {
  background-color: var(--color-tertiary);
  color: var(--color-white);
}

.lp_nav-list .item4 li.active,
.lp_nav-list .item4 li:hover,
.item4:hover {
  background-color: #9db894;
  color: var(--color-white);
}

.lp_nav-list .item5 li.active,
.lp_nav-list .item5 li:hover,
.item5:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

@media (max-width: 991px) {
  .lp_nav-list li {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.28px;
  }

}

/*********************************
2. Lp mainvisual slideshow
*********************************/
.lp-mvisual_inner {
  position: relative;
  overflow-x: hidden;
}

.mvisual_slide .swiper-pagination {
  bottom: 30px;
}

.mvisual_slide .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border: 3px solid white;
  background-color: transparent;
}

.mvisual_slide .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.mvisual_slide picture {
  display: flex;
  width: 100%;
}

.mvisual_caption {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  z-index: 3;
  width: 50%;
  margin: 0 auto;
}

@media(max-width: 991px) {
  .mvisual_slide .swiper-pagination {
    bottom: 10px;
  }

  .mvisual_slide .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }

  .mvisual_caption {
    top: 32%;
    transform: translateY(-32%);
    width: 100%;
  }

  .mvisual_caption img {
    width: 327px;
    height: 329px;
  }
}

/*********************************
3. Main
*********************************/
.main {
  overflow: hidden;
}
/*-----------------------------
  3.1. Layout 01
-----------------------------*/
.section--date {
  padding-top: 5px;
}
.date-info-title {
  text-align: center;
  font-size: 48.099px;
  font-weight: 600;
  line-height: 180%; /* 86.578px */
  letter-spacing: 1.443px;
  display: grid;
  grid-column: auto;
  justify-content: center;
  margin-bottom: 45px;
}
.textsmall32 {
  font-size: 32px;
}
.date-info-title__line {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--color-secondary);
}
.date-info-title__line:before,
.date-info-title__line:after {
  position: absolute;
  content: "";
  top: -2.5px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: var(--color-secondary);
}
.date-info-title__line:before {
  left: 0;
}
.date-info-title__line:after {
  right: 0;
}
.date-info-title__time {
  padding: 0 16px;
}

@media(max-width: 767px) {
  .section--date {
    padding-bottom: 0;
  }
  .date-info-title {
    line-height: 120%;
    margin-bottom: 25px;
  }
  .date-info-title__time {
    font-size: 24px;
  }
  .textsmall32 {
    font-size: 16px;
  }
}

/*-----------------------------
  3.2. Layout 02
-----------------------------*/
.section--details .details {
  max-width: 1220px;
  margin: 0 auto;
  border: 1px solid #F2CF92;
  padding: 70px;
  display: grid;
  grid-column: column;
  gap: 93px;
  position: relative;
}
.section--details .details:before,
.section--details .details:after {
  position: absolute;
  content: "";
  height: 150px;
  width: 150px;
  background-image: url("../img/bg-details-icon.jpg");
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.section--details .details:before {
  top: -20px;
  left: -20px;
}
.section--details .details:after {
  bottom: -20px;
  right: -20px;
  transform: rotate(-180deg);
}
.details__item {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 56px;
  position: relative;
  z-index: 3;
}
.details__title span {
  text-align: center;
  display: block;
  width: 100%;
  background: linear-gradient(270deg, rgba(223, 216, 202, 0.00) 0%, #F2CF92 50%, rgba(223, 216, 202, 0.00) 100%);
  color: var(--color-black-red);
  font-size: 32px;
  line-height: 180%; /* 57.6px */
}
.details__value {
  font-size: 32px;
  line-height: 180%; /* 57.6px */
}
.textsmall14 {
  font-size: 14px;
  line-height: 25px;
}

@media(max-width: 768px) {
  .details__title span {
    font-size: 20px;
  }
  .details__value {
    font-size: 20px;
  }
}
@media(max-width: 767px) {
  .section--details .details {
    gap: 30px;
    padding: 25px;
  }
  .details__item {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  .details__value {
    font-size: 17px;
  }
  .textsmall14 {
    font-size: 12px;
    line-height: 22px;
  }
}

/*-----------------------------
  3.3. Layout 03
-----------------------------*/
.artist {
  display: flex;
  flex-wrap: nowrap;
  gap: 60px;
  justify-content: center;
} 
.artist__name {
  display: flex;
  flex-wrap: nowrap;
  gap: 39px;
  align-items: center;
  margin-bottom: 0;
}
.artist__line {
  position: relative;
  height: 96px;
}
.artist__line:after {
  position: absolute;
  content: "";
  left: 48px;
  top: 50%;
  height: 45px;
  width: 1px;
  transform: translateY(-50%);
  background-color: var(--color-secondary);
}
.artist__name span {
  font-size: 14px;
}
@media(max-width: 767px) {
  .section--artist {
    padding-top: 0;
  }
  .artist {
    flex-wrap: wrap;
  }
}

/*-----------------------------
 3.4. Layout 04
-----------------------------*/
.section--stay-plan {
  padding-bottom: 30px;
}
.stay-plan-inner {
  background-color: var(--color-white);
}
.stay-plan-inner .section-heading.layout-1 {
  background-color: #6D0004;
}
.stay-plan {
  padding: 40px 85px 55px;
}
@media(max-width: 767px) {
  .section--stay-plan {
    padding: 0;
  }
}

/*-----------------------------
 3.5. Layout 05
-----------------------------*/
.section--ticket-purchase {
  padding-bottom: 110px;
}
.section-heading.layout-1 {
  padding: 20px 15px;
  background-color: var(--color-black-red);
  color: var(--color-secondary);
  text-align: center;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  width: 100%;
}
.section-heading.layout-1 .section-heading__title {
  margin-bottom: 0;
}
.section-heading.layout-1 .section-heading__line {
  width: 120px;
  height: auto;
}
.section-heading.layout-1 .section-heading__line--left,
.section-heading.layout-1 .section-heading__line--right {
  display: block;
  width: 278px;
  height: 45px;
  background-image: url("../img/bg-ticket-purchase-title.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.section-heading.layout-1 .section-heading__line--right {
  transform: scaleX(-1);
}

.ticket-purchase-inner {
  padding: 95px 85px;
  border-radius: 24px;
  background: rgba(255, 253, 242, 0.52);
}
.ticket-purchase__subtitle {
  background-color: #42210B;
  padding: 20px 15px;
  text-align: center;
  margin-bottom: 0;
}
.ticket-purchase__item {
  background-color: var(--color-white);
}
.ticket-purchase__item:not(:last-child) {
  margin-bottom: 2rem;
}
.ticket-purchase__block {
  padding: 40px 80px;
  color: var(--color-black-red);
}
.ticket-purchase__title {
  color: #4E0003;
  margin-bottom: 40px;
}
.ticket-purchase__info > li {
  margin-bottom: 23px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--color-black-red);
  font-size: 17px;
  line-height: 180%; /* 30.6px */
}
.ticket-purchase__text {
  padding-top: 6px;
}
.ticket-purchase__btn {
  margin-top: 33px;
}
@media(max-width: 1024px) {
  .section-heading.layout-1 {
    gap: 30px;
  }
  .section-heading.layout-1 .section-heading__title,
  .ticket-purchase__subtitle {
    font-size: 25px;
  }
  .section-heading.layout-1 .section-heading__line--left, 
  .section-heading.layout-1 .section-heading__line--right {
    width: 180px;
  }
}
@media(max-width: 768px) {
  .ticket-purchase-inner {
    padding: 20px;
  }
  .ticket-purchase__block {
    padding: 30px;
  }
}
@media(max-width: 767px) {
  .section--ticket-purchase {
    padding-bottom: 50px;
  }
  .section-heading.layout-1 .section-heading__line--left, 
  .section-heading.layout-1 .section-heading__line--right {
    display: none;
  }
  .ticket-purchase__block {
    padding: 18px;
  }
  .ticket-purchase__info > li {
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
  }
  .ticket-purchase__title {
    margin-bottom: 20px;
  }
}

/*-----------------------------
 3.6. Layout 06
-----------------------------*/
.section--ticket {
  padding: 10px 0 50px;
  background-color: var(--color-tertiary);
}
.ticketcnt__title {
  color: #725F1D;
}
.ticketcnt__sub {
  color: var(--color-black-red);
  font-size: 17px;
  line-height: 180%; /* 30.6px */
}
@media(max-width: 768px) {
  .ticketcnt__title {
    font-size: 19px;
  }
}

/*-----------------------------
 3.7. Layout 07
-----------------------------*/
.section--ticket-plan {
  padding-top: 168px;
  padding-bottom: 90px;
}
.ticket-plan {
  padding: 64px;
  background-image: url("../img/bg-ticket-plan.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ticket-plan h2 {
  color: rgba(242, 207, 146, 0.10);
  font-family: "Snell Roundhand";
  font-size: 92.354px;
  font-style: italic;
  font-weight: 900;
  line-height: 110%;
  letter-spacing: 9.235px;
  margin-bottom: 0;
}
.ticket-plan .section-heading {
  margin-top: -40px;
}
.ticket-plan__btn {
  text-align: center;
  margin-top: 30px;
}
@media(max-width: 768px) {
  .ticket-plan h2 {
    font-size: 72px;
  }
}
@media(max-width: 767px) {
  .section--ticket-plan {
    padding: 50px 0 0;
  }
  .ticket-plan {
    padding: 20px;
  }
  .ticket-plan h2 {
    font-size: 26px;
  }
  .ticket-plan .section-heading {
    margin-top: 10px;
    font-size: 18px;
  }
}

/*-----------------------------
 3.8. Layout 08
-----------------------------*/
.contact {
  color: var(--color-black-red);
  padding: 70px 20px;
  background: linear-gradient(270deg, rgba(223, 216, 202, 0.00) 0%, #F2CF92 50%, rgba(223, 216, 202, 0.00) 100%);
}
.contact__phone {
  font-size: 24px;
}
.contact__phone img {
  margin-left: 10px;
}
@media(max-width: 767px) {
  .section--contact {
    padding-bottom: 0;
  }
  .contact {
    padding: 30px 0;
  }
}

/*-----------------------------
 3.9. Layout 09
-----------------------------*/
.section--note {
  color: var(--color-tertiary);
}
.section--note h3 {
  margin-bottom: 25px;
}
ul.note {
  list-style: disc;
  margin-left: 30px;
}
@media(max-width: 767px) {
  ul.note {
    margin-left: 23px;
  }
}

/*********************************
4. Footer
*********************************/
.footertop {
  padding: 52px 0 75px;
  background-color: #4E0003;
  color: var(--color-white);
  font-family: var(--font-family--primary);
}

.footertop h4 {
  font-family: var(--font-family--primary);
}

@media(max-width: 767px) {
  .footertop {
    padding-bottom: 30px;
  }
}

/*-----------------------------
 4.1. Footer top
-----------------------------*/
.footertop__logo {
  margin-bottom: 25px;
}

.footertop__sns,
.footertop__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.footertop__sns {
  margin-bottom: 20px;
}
.footertop__sns-item img {
  width: 59px;
  height: 59px;
}
.footertop__link > li {
  min-width: 242px;
  font-size: 17px;
  position: relative;
}
.footertop__link > li:not(:last-child):before {
  position: absolute;
  content: "";
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  height: 24px;
  width: 1px;
  background-color: var(--color-white);
}
.footertop__link > li a {
  color: var(--color-white);
}

.footertop__info {margin-bottom: 140px;}
.footertop__hotel-details {
  text-align: center;
  margin-bottom: 140px;
}

.footertop__access .footertop__access-title {
  color: var(--color-white);
}

.footertop__access .footertop__access-title span {
  font-size: 16px;
}

.footertop__map iframe {
  width: 100%;
  height: 320px;
}

@media (max-width: 768px) {
  .footertop__logo {
    margin-bottom: 20px;
  }
  .footertop__info {
    grid-template-columns: 1fr;
    margin: 30px 0;
  }
  .footertop__sns {gap: 20px;}
  .footertop__link {
    flex-wrap: wrap;
    gap: 0;
  }
  .footertop__link > li {
    min-width: auto;
  }
  .footertop__link > li:not(:last-child):before {
    content: none;
  }
  .footertop__hotel-details {
    margin-bottom: 30px;
  }
  .footertop__map iframe {
    height: 280px;
  }
  .footertop__sns-item img {
    width: 45px;
    height: 45px;
  }
}

/*-----------------------------
 4.3. Footer copyright
-----------------------------*/
.footercopyright {
  padding: 0 0 53px;
  font-size: 17px;
  font-weight: 400;
  font-family: var(--font-family--primary);
  background-color: #4E0003;
  color: var(--color-white);
}

.footercopyright p {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .footercopyright {
    font-size: 11px;
    line-height: 17px;
  }
}

/*********************************
5. Back top
*********************************/
.pageTop a {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 17px;
  bottom: 20px;
  z-index: 10;
  background-color: var(--color-btn);
  filter: drop-shadow(0px 3px 10px #3D260440);
}

.pageTop a:hover {
  background-color: var(--color-secondary);
}

.pageTop a img {
  width: 12px;
  transform: rotate(-90deg);
}

@media (max-width: 768px) {
  .pageTop a {
    width: 50px;
    height: 50px;
  }
}