/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1e293b;
  --secondary: #86efac;
  --background: #ffffff;
  --foreground: #0a0a0a;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --red-50: #fef2f2;
  --red-600: #dc2626;
  --white-20: rgba(255, 255, 255, 0.2);
  --black-10: rgba(0, 0, 0, 0.1);
  --black-40: rgba(0, 0, 0, 0.4);
}



/* Main Content */
.main-content {
  padding: 40px 0;
}

/* Section Title */
.section-title {
  font-size: 18px;
  font-weight: bold;
  border-left: 4px solid var(--primary);
  padding-left: 16px;
  margin-bottom: 16px;
}

/* Pricing Section */
.pricing-section {
  margin: 32px 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 12px;
}

.pricing-table thead {
  background-color: var(--primary);
  color: white;
}

.th-item {
  padding: 8px;
  text-align: left;
  border-right: 1px solid var(--white-20);
}

.th-period {
  padding: 8px;
  text-align: center;
  border-right: 1px solid var(--white-20);
  border-bottom: 1px solid var(--white-20);
}

.th-period.th-last {
  border-right: none;
}

.th-age {
  padding: 8px;
  text-align: center;
}

.th-age.th-border {
  border-right: 1px solid var(--white-20);
}

.pricing-table tbody tr {
  background-color: var(--gray-50);
  border-bottom: 1px solid var(--black-10);
}

.td-item {
  padding: 8px;
  border-right: 1px solid var(--gray-300);
}

.td-price {
  padding: 8px;
  text-align: center;
}

.td-price.td-border {
  border-right: 1px solid var(--gray-300);
}

.table-notes {
  margin-bottom: 20px;
}

.table-notes p {
  font-size: 12px;
  color: var(--gray-700);
  margin: 0;
}

/* Notice Box */
.notice-box {
  background-color: var(--red-50);
  padding: 12px 16px;
  border-radius: 8px;
  margin: 10px 0 0;
}

.notice-box p {
  font-size: 12px;
  color: var(--red-600);
  margin: 0;
}

/* Size Section */
.size-section {
  margin: 48px 0;
}

.size-content {
  background-color: var(--gray-50);
  padding: 16px 24px;
  border-radius: 8px;
  margin-top: 16px;
}

.size-category {
  padding: 12px 0;
}

.size-category.size-border {
  border-top: 1px solid var(--gray-300);
  padding-top: 24px;
  margin-top: 12px;
}

.size-category h5 {
  font-size: 14px;
  margin-bottom: 8px;
}

.size-category ul {
  list-style: none;
  padding: 0;
}

.size-category li {
  font-size: 12px;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.video-title {
  font-size: 16px;
  text-align: center;
  margin-top: 12px;
}

.video-item {
  margin-top: 16px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Rental Flow Section */
.rental-flow-section {
  margin: 100px 0;
}

.flow-title {
  font-size: 18px;
  text-align: center;
  color: var(--primary);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  margin: 0 auto 40px;
  width: fit-content;
  display: block;
}

.flow-description {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.flow-description li {
  font-size: 12px;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.rental-steps {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-top: 10px;
}

.rental-steps::-webkit-scrollbar {
  height: 8px;
}

.rental-steps::-webkit-scrollbar-track {
  background: var(--gray-300);
  border-radius: 10px;
}

.rental-steps::-webkit-scrollbar-thumb {
  background: var(--gray-600);
  border-radius: 10px;
}

.step-circle {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

.step-circle div:first-child {
  font-size: 14px;
}

.step-circle div:last-child {
  font-size: 12px;
}

.operating-hours {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 50px;
}

.hours-box {
  display: flex;
  align-items: flex-start;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 12px 16px;
}

.hours-icon {
  font-size: 16px;
  margin-right: 8px;
  flex-shrink: 0;
}

.hours-text {
  font-size: 12px;
  color: var(--gray-700);
  line-height: 1.6;
}


/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.howto-slider{
	margin-top:40px;
	margin-bottom:60px;
	position:relative;
}
.howto-slider .title{
	font-size: 20px;
	text-align:center;
	margin-bottom:10px;
}
.howto-slider .swiper-slide .img{
	margin-bottom:15px;
}
.howto-slider .swiper-slide p{
	font-size: 14px;
}
.howto-slider .swiper-pagination-bullets.swiper-pagination-horizontal{
	bottom: -40px;
}
.howto-slider .swiper-button-prev{
	left: -35px;
}
.howto-slider .swiper-button-next{
	right: -35px;
}
.howto-slider .swiper-button-prev,
.howto-slider .swiper-button-next{
	color:#000;
}
.howto-slider .swiper-button-prev::after,
.howto-slider .swiper-button-next::after{
	font-size: 24px;
}


/* Tablet & Desktop Styles */
@media (min-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .pricing-table {
    font-size: 16px;
  }

  .th-item,
  .th-period,
  .th-age,
  .td-item,
  .td-price {
    padding: 16px;
  }

  .table-notes p,
  .notice-box p {
    font-size: 14px;
  }

  .size-category h5 {
    font-size: 16px;
  }

  .size-category li {
    font-size: 16px;
  }

  .flow-title {
    font-size: 24px;
  }

  .flow-description li {
    font-size: 16px;
  }

  .operating-hours {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hours-text {
    font-size: 16px;
  }

  .rental-steps {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }

  .rental-steps::-webkit-scrollbar {
    height: 0;
  }
  
	.howto-slider .swiper-button-prev{
		left: -40px;
	}
	.howto-slider .swiper-button-next{
		right: -40px;
	}
}

@media (min-width: 1024px) {
  .flow-title {
    margin-left: 290px;
    margin-right: 290px;
  }
}
