
/* Banner Section */
.banner {
	width: 100%;
	height: 1080px;
	max-width: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
  margin-bottom: 40px;
}
.banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/default/banner/full_bg.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* image banner slide */
.banner-slide-swiper-wrapper {
	position: absolute;
	top: 176px;
	left: -2%;
	width: 104%;
	height: 720px;
  transform: rotate(-4.5deg);
  pointer-events: none;
  overflow: hidden;
}

.banner-slide-container {
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.banner-slide-track {
	display: flex;
	align-items: center;
	width: fit-content;
	height: 100%;
	animation: bannerSlideMove 120s linear infinite;
	will-change: transform;
}

.banner-slide-item {
	width: auto;
	height: 100%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	pointer-events: none;
}

.banner-slide-image {
	width: auto;
	height: 100%;
	display: block;
	user-select: none;
	pointer-events: none;
  object-fit: contain;
}

@keyframes bannerSlideMove {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@keyframes bannerSlideMoveReverse {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(0);
	}
}

.banner-slide-track-reverse {
	transform: translateX(-50%);
	animation: bannerSlideMoveReverse 150s linear infinite;
}

.banner-slide-text-swiper-text {
	top: 906px;
  height: 72px;
}
@media screen and (max-width: 1200px) {

  .banner-slide-swiper-wrapper {
    top: 88px;
  }
  .banner-slide-text-swiper-text {
    top: 826px;
  }
}

@media screen and (max-width: 768px) {
  .banner-slide-swiper-wrapper {
    top: 100px;
    height: 360px;
  }
  .banner-slide-text-swiper-text {
    top: 486px;
    height: 55px;
  }
}

/* Decorative Text */
.banner__text-left {
	position: absolute;
	left: 0;
	top: 2px;
	width: 160px;
	height: 776px;
	background-image: url('../img/default/banner/left_text.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.banner__text-right {
	position: absolute;
	right: 0;
	top: 0;
	width: 160px;
	height: 744px;
	background-image: url('../img/default/banner/right_text.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
/* Logo Header */
.banner__logo {
	margin-top: 80px;
	width: 100%;
	display: flex;
	justify-content: center;
	img {
		width: 640px;
		height: 96px;
	}
}


/* Navigation */
.banner__nav {
	display: flex;
	justify-content: center;
	gap: 32px;
	background: #FFFFFF;
	border-radius: 100px;
	padding: 16px 20px 16px 40px;
	width: fit-content;
	margin: auto;
	margin-top: 56px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav__item {
	display: flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: #000000;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.5em;
	transition: opacity 0.3s ease;
}

.nav__item:hover {
	opacity: 0.7;
}

.nav__item--search {
	font-size: 15px;
}

.nav__icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}
.nav__item-badge {
  position: absolute;
  top: -3px;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: #FBE800;
  color: black;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__item--primary {
	background: #000000;
	color: #FFFFFF;
	border-radius: 140px;
	padding: 8px 16px 8px 12px;
}

.nav__item--primary:hover {
  color: #FFFFFF;
	opacity: 1;
	background: #333333;
}
/* image banner */
.banner__image-banner {
	position: absolute;
	z-index: -1;
	top: 78px;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/default/banner/center_image.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* image bottom */
.banner__image-bottom {
	position: absolute;
	z-index: -1;
	top: 522px;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/default/banner/bottom_image.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

/* Slider Section */
.slider {
	width: 100%;
	padding: 0;
}

@media screen and (min-width: 1441px) {
  .slider {
    margin-top: 120px;
  }
}

.slider__container {
	max-width: 1040px;
	margin: 0 auto;
	display: flex;
	gap: 16px;
	justify-content: center;
	align-items: stretch;
}

.slider .swiper {
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

.slider .swiper-wrapper {
	align-items: center;
}

.slider__card {
	position: relative;
	width: 100%;
	height: 336px;
	border-radius: 12px;
	overflow: hidden;
	margin: 0 auto;
}

.slider__card-image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slider__card-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Product Slider Pagination */
.productSlider {
	position: relative;
  padding: 0 !important;
  padding-bottom: 64px !important;
}

.productSlider-pagination {
	position: absolute;
	/* bottom: 33px !important; */
	bottom: 20px !important;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: auto;
	z-index: 10;
}

.productSlider-bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #E0E0E0;
	cursor: pointer;
	transition: background-color 0.3s ease;
	display: inline-block;
}

.productSlider-bullet-active {
	background-color: #00A854;
}

/* Product Slider Navigation */
.productSlider-navigation {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	gap: 8px;
	z-index: 10;
}

.productSlider-button {
	width: 48px;
	height: 48px;
	background-color: #FFFFFF;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.productSlider-button:hover {
	background-color: #f5f5f5;
}

.productSlider-button:active {
	transform: scale(0.95);
}

.productSlider-button.swiper-button-disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.productSlider-button.swiper-button-disabled:hover {
	background-color: #FFFFFF;
	transform: none;
}

.productSlider-button svg {
	width: 20px;
	height: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.slider .swiper {
		max-width: 872px;
		padding: 0 24px 60px 24px;
	}

	.slider__card {
		height: 280px;
	}

	.productSlider-navigation {
		right: 24px;
	}

	.productSlider-pagination {
		bottom: 20px;
	}
}

@media (max-width: 768px) {
	.productSlider-navigation {
    right: 16px;
    width: calc(100% - 32px);
    justify-content: space-between;
	}

	.productSlider-pagination {
		bottom: 16px;
	}
}

/* section 1 */
.curved-background {
	background-image: url('../img/default/icons/icon-white-curved.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.section-1 {
	width: 100%;
	height: 720px;
	margin-top: 40px;
	position: relative;
}
.section-1-wrapper {
	display: flex;
	height: 100%;
	gap: 40px;
}
.left_content {
	width: 53.33%;
	padding-top: 80px;
}
.left_content_text {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.8em;
	color: #000000;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.left_content_image {
	margin-bottom: 30px;
	width: 640px;
	height: 240px;
}

.left_content_text p {
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.8em;
	color: #000000;
}

.right_content {
	flex: 1;
	position: relative;
	z-index: 1;
}
.right_content_image {
	position: absolute;
	object-fit: cover;
	top: 0;
	left: 0;
	width: 640px;
	height: 740px;
  z-index: 1;
}

.top-image-mobile {
	display: none;
}
.right_content {
	display: block;
}

@media (max-width: 1200px) {
	.section-1-wrapper {
		gap: 24px;
	}
	.left_content_image {
		height: auto;
		width: 100%;
	}
	.right_content_image {
		width: 120%;
		height: 70%;
	}
}

/* responsive section 1 */
@media (max-width: 768px) {
	/* section 1 */
	.section-1-wrapper {
		flex-direction: column;
		max-width: 100%;
		margin: 0 auto;
	}
	.top-image-mobile {
		display: block;
	}
	.right_content {
		display: none;
	}
	.left_content {
		width: 100%;
		padding-top: 0;
		margin-right: 0;
	}
	.top-image-mobile {
		height: 426px;
		width: 100%;
	}
	.top-image-mobile img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	.left_content_image {
		width: 100%;
		object-fit: contain;
		margin-bottom: 16px;
	}

	.left_content_text {
		width: 100%;
	}
	.left_content_text p {
		font-size: 14px;
		line-height: 1.5em;
	}
	.section-1 {
		height: auto;
		padding-bottom: 84px;
	}
}
/* Ranking Section */
.ranking-section {
	width: 100%;
	margin: 0 auto;
	padding: 40px 0 90px 0;
	background-color: #FFFFFF;
	border-radius: 0 0 120px 120px;
	position: relative;
	z-index: 10;
}

/* Main Ranking Item (No.1) */
.ranking-main {
	display: flex;
	gap: 58px;
	margin-bottom: 40px;
}

/* Ranking Card */
.ranking-card {
	position: relative;
	background-color: #E9E9E9;
	border-radius: 40px;
	overflow: hidden;
}

.ranking-card--large {
	width: 480px;
	height: 480px;
}

.ranking-card--small {
	width: 100%;
	height: 280px;
}

.ranking-card__image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.ranking-card__image img {
	width: 480px;
	height: 90%;
	object-fit: contain;
}

.ranking-card--small .ranking-card__image img {
	width: 280px;
	height: 90%;
	object-fit: contain;
}

.ranking-card__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background-color: #FFFFFF;
	padding: 8px 20px;
	border-radius: 28px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1em;
	color: #000000;
}

.ranking-card--small .ranking-card__badge {
	width: calc(100% - 32px);
	text-align: center;
	box-sizing: border-box;
}

.ranking-card--large .ranking-card__badge {
	width: calc(100% - 32px);
	text-align: center;
	box-sizing: border-box;
}
.ranking-card__favorite {
	position: absolute;
	bottom: 32px;
	right: 32px;
	width: 32px;
	height: 32px;
	background-color: #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
  pointer-events: none;
}

.ranking-card__favorite img {
	width: 16px;
	height: 16px;
}

/* Ranking Info (for No.1) */
.ranking-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ranking-info__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.5em;
	color: #000000;
	margin: 0 0 14px 0;
}

.ranking-info__price {
	display: flex;
	align-items: baseline;
	gap: 2px;
}

.price-symbol {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.5em;
	color: #000000;
}

.price-amount {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.5em;
	color: #000000;
}

.price-tax {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.5em;
	color: #000000;
}

/* Divider Line */
.ranking-divider {
	width: 100%;
	height: 1px;
	background-color: #E9E9E9;
	margin-bottom: 40px;
}

/* Ranking Grid (No.2 - No.5) */
.ranking-grid {
	display: flex;
	justify-content: space-between;
	gap: 26.67px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.ranking-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ranking-item--right {
	align-items: flex-end;
}

.ranking-item__info {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ranking-item__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.5em;
	color: #000000;
	margin: 0;
}

.ranking-item__price {
	display: flex;
	align-items: baseline;
	gap: 2px;
}

@media (max-width: 1200px) {
	.ranking-main {
		gap: 24px;
	}
	.ranking-info__title {
		font-size: 16px;
	}
	.price-amount {
		font-size: 24px;
	}
	.ranking-card--small .ranking-card__badge, .ranking-card--large .ranking-card__badge {
		font-size: 14px;
	}
	.ranking-card--small .ranking-card__image img {
		width: 100%;
	}
	.ranking-item {
		width: calc(50% - 14px);
	}
}

@media (max-width: 768px) {
	/* ranking section */
	.ranking-grid {
		justify-content: space-between;
		gap: 40px;
		column-gap: 20px;
	}
	.ranking-item {
		width: calc(50% - 10px);
	}
	.ranking-card--small .ranking-card__favorite {
		bottom: 12px;
		right: 12px;
		width: 24px;
		height: 24px;

	}
	.ranking-card .ranking-card--large {
		border-radius: 32px;
	}
	.ranking-card--small {
		border-radius: 22px;
	}
	.ranking-card--small .ranking-card__image img {
		width: 100%;
		object-fit: contain;
	}
	.ranking-card--small .ranking-card__badge {
		font-size: 14px;
		top: 8px;
		left: 8px;
		width: calc(100% - 16px);
		padding: 4px;
	}
	.ranking-main {
		flex-direction: column;
		gap: 8px;
	}
	.ranking-card {
		width: 100%;
		height: 342px;
	}
	/* .ranking-card--large {
		width: 100%;
		height: auto;
	} */
	.ranking-card--small {
		height: 161px;
		border-radius: 22px;
	}
	.ranking-card__image {
	}
	.ranking-card__image img {
		width: 100%;
		object-fit: contain;
	}
	.ranking-card--large .ranking-card__badge {
		top: 16px;
		left: 20px;
		width: calc(100% - 40px);
		font-size: 14px;
	}
	.ranking-card__favorite {
		bottom: 24px;
		right: 24px;
	}
	.ranking-view-more {
		margin-top: 24px;
	}
	.ranking-view-more .btn-primary {
		width: 100%;
	}
	.ranking-info__title {
		font-size: 16px;
		margin-bottom: 8px;
	}
	.price-amount {
		font-size: 24px;
	}
	.ranking-section {
		border-radius: 0 0 56px 56px;
		padding: 24px 0 64px 0;
	}
	.news-section {
		border-radius: 56px;
	}
	.curved-background {
		background-image: url('../img/default/icons/icon-white-curved-mobile.svg');
		height: 28px;
	}
	.ranking-grid {
		margin-bottom: 0;
	}
}

/* View More Button */
.ranking-view-more {
	margin-top: 38px;
}

.banner-2 {
	width: 100%;
	height: 1000px;
	background-image: url('../img/default/banner/banner_2.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-top: -120px;
	margin-bottom: -120px;
}

/* News Section */
.news-section {
	width: 100%;
	background-color: #FFFFFF;
	border-radius: 120px;
	padding: 64px 0 80px 0;
	position: relative;
	z-index: 10;
}

/* News Header */
.news-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.news-title-desktop {
	margin-bottom: 80px;
}

.btn-arrow-black {
	width: 16px;
	height: 16px;
	position: absolute;
	right: 20px;
}

/* News List */
.news-list-wrapper {
	width: 100%;
	max-width: 840px;
	margin-left: auto;
	display: flex;
	flex-direction: column;
}


/* responsive news section */
@media (max-width: 1200px) {
	.news-section {
		border-radius: 56px;
		padding: 48px 0 40px 0;
	}
	.news-list-wrapper {
		margin-left: unset;
		max-width: 100%;
	}
}

@media (max-width: 992px) {
	.news-header {
		flex-direction: column;
		align-items: flex-start;
	}
	.news-title-desktop {
		margin-bottom: 24px;
	}
	.news-title-wrapper, .news-title-wrapper .btn-primary {
		width: 100%;
	}
}

/* Feature Section */
.feature-section {
	width: 100%;
	position: relative;
	z-index: 10;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 24px;
	column-gap: 48px;
	position: relative;
	background-color: white;
	padding: 56px;
	border-radius: 120px;
}

/* Feature Card */
.feature-card {
	background-color: #F5F5F5;
	border-radius: 200px;
	padding: 32px 40px;
	display: flex;
	align-items: center;
	gap: 12px;
	height: 184px;
	box-sizing: border-box;
}

.feature-card__icon {
	width: 120px;
	height: 120px;
	background-color: #FFFFFF;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-card__icon img {
	width: 80px;
	height: 80px;
	object-fit: contain;
}

.feature-card__content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.feature-card__badge {
	background: linear-gradient(270deg, #FBE800 0%, #68FFA7 100%);
	border-radius: 8px;
	padding: 4px 12px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.5em;
	color: #000000;
	width: fit-content;
}

.feature-card__description {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5em;
	color: #000000;
	margin: 0;
}

/* Feature Star */
.feature-star {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 128px;
	height: 128px;
	z-index: 1;
	pointer-events: none;
}

.feature-star img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* responsive feature section */
@media (max-width: 1200px) {
	.feature-header {
		margin-bottom: 24px !important;
		margin-top: 56px !important;
	}
	.feature-grid {
		gap: 12px;
		padding: 24px;
		border-radius: 56px;
	}
	.feature-card {
		flex-direction: column;
		height: auto;
		padding: 12px;
		gap: 10px;

		height: auto;
		border-radius: 32px;
	}
	.feature-card__content {
		/* width: 100%; */
		text-align: center;
	}
	.feature-card__badge {
		width: 100%;
		box-sizing: border-box;
		padding: 4px;
		font-size: 15px;
	}
	.feature-card__description {
		font-size: 14px;
		text-align: center;
	}
	.feature-star {
		width: 56px;
		height: 56px;
	}
}

@media (max-width: 768px) {
	.feature-card__content {
		width: 100%;
	}
}

/* How To Use Section */
.how-to-use-section {
	width: 100%;
	position: relative;
	z-index: 10;
}

.how-to-use-wrapper {
	display: flex;
	align-items: center;
	position: relative;
}
.how-to-use-header-image {
	position: absolute;
	right: -83px;
	top: -92px;
	width: 420px;
	height: 284px;
	object-fit: contain;
}

/* How To Use Slider */
.how-to-use-slider {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	overflow: visible;
}

.how-to-use-slider .swiper {
	width: 100%;
	overflow: visible;
}

.how-to-use-slider .swiper-wrapper {
	display: flex;
	align-items: center;
}

.how-to-use-slider .swiper-slide {
	width: 560px;
	height: auto;
}

/* Step Card */
.step-card {
	background-color: #FFFFFF;
	border-radius: 32px;
	padding: 24px 32px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 100%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.step-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.step-card__badge {
	background-color: #00A854;
	color: #FFFFFF;
	padding: 4px 12px;
	border-radius: 100px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1em;
	width: fit-content;
}

.step-card__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2em;
	color: #000000;
	margin: 0;
}

.step-card__image {
	width: 100%;
	height: 240px;
	border-radius: 8px;
	overflow: hidden;
	background-color: #D9D9D9;
}

.step-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.step-card__description {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.8em;
	color: #000000;
	margin: 0;
	min-height: 76px;
}

/* Slider Controls */
.slider-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 18px;
	gap: 20px;
}

/* Progress Bar */
.slider-progress {
	flex: 1;
	height: 6px;
	background-color: #E9E9E9;
	border-radius: 30px;
	overflow: hidden;
	position: relative;
}

.slider-progress-bar {
	height: 100%;
	width: 0%;
	background-color: #434343;
	border-radius: 30px;
	transition: width 0.3s ease;
}

/* Navigation Buttons */
.slider-navigation {
	display: flex;
	gap: 8px;
}

.slider-nav-btn {
	width: 48px;
	height: 48px;
	background-color: #FFFFFF;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-nav-btn:hover {
	background-color: #f5f5f5;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-nav-btn:active {
	transform: scale(0.95);
}

.slider-nav-btn.swiper-button-disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.slider-nav-btn.swiper-button-disabled:hover {
	background-color: #FFFFFF;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transform: none;
}

.slider-nav-btn img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

/* responsive how to use section */
@media (max-width: 1200px) {
	.how-to-use-wrapper {
		flex-direction: column;
		align-items: flex-start;
		margin-top: 300px;
	}

	.how-to-use-header-image {
		left: -24px;
		top: -278px;
		width: 100vw;
		height: 264px;
	}
	.how-to-use-header {
		margin-right: 0;
	}
	.how-to-use-slider {
		box-sizing: border-box;
		padding: 0 24px;
	}
	.step-card {
		padding: 12px 20px;
		gap: 8px;
		border-radius: 20px;
		height: auto;
	}
	.step-card__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.step-card__image {
		height: 160px;
	}
	.step-card__badge {
		font-size: 14px;
	}
	.step-card__title {
		font-size: 16px;
	}

	.how-to-use-slider .swiper-slide {
		width: 296px;
	}

	.step-card__description {
		height: 125px;;
	}


	.how-to-use-wrapper .btn-primary {
		width: 100%;
		max-width: 100%;
	}
	.slider-controls {
	}
}

/* My Page Section */
.my-page-section {
	width: 100%;
	position: relative;
	z-index: 10;
}

.my-page-wrapper {
	display: flex;
	align-items: center;
	position: relative;
}

.my-page-header-image {
	position: absolute;
	right: -77px;
	top: -32px;
	width: 400px;
	height: 267px;
	object-fit: contain;
}

/* My Page Grid */
.my-page-grid {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 45px;
}

/* My Page Card */
.my-page-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 264px;
	cursor: pointer;
	transition: transform 0.3s ease;
	position: relative;
}

.my-page-card:hover {
	transform: translateY(-8px);
}

.my-page-card__image {
	width: 264px;
	height: 264px;
	background-color: #D9D9D9;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.my-page-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.my-page-card__label {
	background-color: #000000;
	color: #FFFFFF;
	padding: 4px 0;
	border-radius: 8px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5em;
	text-align: center;
	width: 240px;
	margin: 0 auto;
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
}

/* mypage responsive */
@media (max-width: 1200px) {
	.my-page-wrapper {
		flex-direction: column;
		align-items: flex-start;
		margin-top: 56px;
		margin-bottom: 24px;
	}
	.my-page-header-image {
		display: none;
	}
	.my-page-header {
		margin-right: 0;
	}
	.my-page-grid {
		align-items: flex-start;
		gap: 20px;
		flex-wrap: wrap;
	}
	.my-page-card {
		width: calc(25% - 18px);
		max-width: 100%;
	}
	.my-page-card__image {
		width: 100%;
		height: 161px;
	}
	.my-page-card__label {
		width: calc(100% - 12px);
		max-width: 100%;
		font-size: 14px;
		padding: 4px 0;
		border-radius: 6px;
		bottom: 8px;
	}
	.my-page-wrapper .btn-primary {
		width: 100%;
		max-width: 100%;
	}
	.my-page-header-mobile {
		width: 100%;
		max-width: 390px;
		height: 260px;
		margin: 24px auto;
	}
}

@media (max-width: 768px) {
	.my-page-card {
		width: calc(50% - 12px);
	}
}

/* Specifications Section */
.specifications-left-image {
	height: 400px;
	position: relative;
}
.specifications-left-image img {
	position: absolute;
	top: 0;
	right: 0;
	width:119%;
	height: 100%;
}

.specifications-section {
	width: 100%;
}

.specifications-wrapper {
	display: flex;
	gap: 80px;
}

.specifications-left {
	width: 640px;
}

.specifications-right {
	width: 480px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Product Card */
.product-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.product-card__image {
	width: 100%;
	height: 320px;
	background-color: #D9D9D9;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-card__label {
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #00A854;
	color: #FFFFFF;
	padding: 8px 32px;
	border-radius: 0 16px 0 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2em;
}

.product-card__description {
	width: 440px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.8em;
	color: #000000;
	margin: 0;
}

/* Specifications Table */
.specifications-left-table {
	width: 100%;
}

.spec-table-header {
	background-color: #000000;
	border-radius: 8px;
	padding: 12px 8px;
	text-align: center;
	margin-bottom: 12px;
}

.spec-table-header h3 {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 1em;
	color: #FFFFFF;
	margin: 0;
}

.spec-table-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.spec-table-top-item {
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 1;
  background-color: #979797;
  border-radius: 8px;
  height: 44px;
  width: 100%;

  color: #FFFFFF;

  font-size: 20px;
  font-weight: bold;

}

.spec-table-top-item-active {
  background-color: #00A854;
}

.spec-table-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.spec-table-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 16px;
	background-color: #FFFFFF;
	border-radius: 8px;
}

.spec-table-row--last {
	align-items: flex-start;
}

.spec-table-label {
	width: 120px;
	flex-shrink: 0;
	background-color: #E9E9E9;
	border-radius: 4px;
	padding: 6px 0;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5em;
	color: #000000;
}

.spec-table-value {
	flex: 1;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5em;
	color: #000000;
}


/* responsive specifications section */
@media (max-width: 1200px) {
	.specifications-header {
		margin-top: 24px;
		margin-bottom: 24px;
		word-break: break-all;
	}
	.specifications-wrapper {
		flex-direction: column;
		gap: 24px;
		padding: 0;
	}
	.specifications-left {
		width: 100%;
	}
	.specifications-left-table {
		width: 100%;
		margin-bottom: 0;
	}
	.spec-table-header {
		padding: 8px 4px;
	}
	.spec-table-row {
		padding: 4px 8px;
	}
	.spec-table-label {
		width: 100px;
	}
	.specifications-right {
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.product-card {
		width: calc(33.33% - 16px);
	}
	.product-card__description {
		box-sizing: border-box;
		padding: 0 12px;
		width: 100%;
	}
	.product-card__image {
		height: 228px;
	}
	.specifications-left-image img {
		width: 100%;
	}
	.specifications-top-image {
		height: 410px;
	}
	.specifications-top-image img, .specifications-bottom-image img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	.specifications-bottom-image {
		height: 316px;
	}
}

@media (max-width: 992px) {
	.product-card {
		width: 100%;
	}
}

/* responsive */
@media (max-width: 1200px) {
	/* banner */
	.banner__text-left {
		top: 22px;
		width: 100px;
		height: 485px;
	}

	.banner__text-right {
		top: 22px;
		width: 100px;
		height: 465px;
	}
	.banner {
	}
	/* slider */
	.slider {
		padding: 24px 0;
	}



}

@media (max-width: 768px) {
	.banner {
    height: auto;
		min-height: 668px;
	}
  .banner-2 {
    background-image: url('../img/default/banner/banner_2_mobile.png');
    height: 800px;
    margin-bottom: -64px;
    margin-top: -64px;
  }
}

@media (max-width: 480px) {
	/* banner */
	.banner {
    height: auto;
		min-height: 668px;
    margin-bottom: 0;
	}
	.banner::before {
		height: 720px;
		top: -52px;
		background-image: url('../img/default/banner/full_bg_mobile.png');
	}
}
