@import url(//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSansNeo.css);
@font-face {
	font-family: "GmarketSans";
	src: url("./fonts/GmarketSansTTFLight.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "GmarketSans";
	src: url("./fonts/GmarketSansTTFMedium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: "GmarketSans";
	src: url("./fonts/GmarketSansTTFBold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
}
* {
	font-family: "GmarketSans", sans-serif;
	font-weight: 500; /* 기본 굵기를 Medium으로 설정 */
	box-sizing: border-box;
	color: #373737;
	caret-color: transparent;
}
h1,
h2,
h3 {
	margin: 0;
}
.light-text {
	font-weight: 300; /* Light 굵기 */
}

.bold-text {
	font-weight: 700; /* Bold 굵기 */
}
html {
	font-size: clamp(1px, 0.67vw, 10px);
}
button {
	cursor: pointer;
}
body {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #383838;
	position: relative;
	max-width: 1280px;
	justify-self: center;
}
p {
	margin: 0;
}

/* 블러 + 좌우로 펼쳐지면서 타이핑때 딜레이줘서 씀.*/
@-webkit-keyframes anim1 {
	0% {
		filter: blur(2rem);
		opacity: 0;
		transform: scaleX(0.1);
	}

	100% {
		opacity: 1;
		transform: scaleX(1);
		filter: blur(0px);
	}
}

@keyframes anim1 {
	0% {
		filter: blur(2rem);
		opacity: 0;
		transform: scaleX(0.1);
	}

	100% {
		opacity: 1;
		transform: scaleX(1);
		filter: blur(0px);
	}
}

/* 하-상 */
@-webkit-keyframes anim2 {
	0% {
		filter: blur(2rem);
		opacity: 0;
		bottom: -10rem;
	}

	20% {
		opacity: 0;
	}

	100% {
		filter: blur(0px);
		opacity: 1;
		bottom: 0;
	}
}

@keyframes anim2 {
	0% {
		filter: blur(2rem);
		opacity: 0;
		bottom: -10rem;
	}

	20% {
		opacity: 0;
	}

	100% {
		filter: blur(0px);
		opacity: 1;
		bottom: 0;
	}
}
button.bottom-btn {
	width: 100%;
	height: 18.8rem;
	background-color: #f10c09;
	color: #fff;
	border-radius: 3rem 3rem 0 0;
	font-size: 8.8rem;
	position: sticky;
	transition: 0.3s;
	bottom: -50rem;
	border: none;
	font-weight: 700;
}
button.bottom-btn.fixed {
	bottom: 0;
	z-index: 5;
}
/* 부모 요소의 반복을 위한 키프레임 (수정) */
@keyframes sequence-repeat {
	/* 0% ~ 80% 구간: 글자들이 보이면서 순차 애니메이션이 모두 실행됨 */
	0%,
	80% {
		opacity: 1;
	}
	/* 80.1% ~ 100% 구간: 모든 글자를 잠시 숨겨서 애니메이션을 리셋할 준비 */
	80.1%,
	100% {
		opacity: 0;
	}
}
.text-anim {
	position: relative;
	/* animation: 0.5s ease 0.5s 1 alternate  both running anim2; */
	animation: sequence-repeat 4.1s infinite;
}
/* 각 글자는 이제 한 번만 애니메이션을 실행합니다 */
.text-anim span {
	position: relative;
	/* 반복 횟수를 'infinite'에서 '1'로 변경 */
	font-size: 4.6rem;
	font-weight: 700;
	opacity: 0;
}
.text-anim.on span {
	animation: 0.5s ease 0s 1 alternate both running anim1;
}
/* 부모 요소의 반복을 위한 비어있는 키프레임 */
@keyframes sequence-repeat {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}

/* 이하 코드는 동일 */
.text-anim span.sb {
	margin-right: 0.8rem;
}
.text-anim span:nth-child(1) {
	animation-delay: 0.6s;
}
.text-anim span:nth-child(2) {
	animation-delay: 0.7s;
}
.text-anim span:nth-child(3) {
	animation-delay: 0.8s;
}
.text-anim span:nth-child(4) {
	animation-delay: 0.9s;
}
.text-anim span:nth-child(5) {
	animation-delay: 1s;
}
.text-anim span:nth-child(6) {
	animation-delay: 1.1s;
}
.text-anim span:nth-child(7) {
	animation-delay: 1.2s;
}
.text-anim span:nth-child(8) {
	animation-delay: 1.3s;
}
.text-anim span:nth-child(9) {
	animation-delay: 1.4s;
}
.text-anim span:nth-child(10) {
	animation-delay: 1.5s;
}
.text-anim span:nth-child(11) {
	animation-delay: 1.6s;
}
.text-anim span:nth-child(12) {
	animation-delay: 1.7s;
}
.text-anim span:nth-child(13) {
	animation-delay: 1.8s;
}
.text-anim span:nth-child(14) {
	animation-delay: 1.9s;
}
.text-anim span:nth-child(15) {
	animation-delay: 2s;
}
.text-anim span:nth-child(16) {
	animation-delay: 2.1s;
}
.text-anim span:nth-child(17) {
	animation-delay: 2.2s;
}
.text-anim span:nth-child(18) {
	animation-delay: 2.3s;
}
.text-anim span:nth-child(19) {
	animation-delay: 2.4s;
}
.text-anim span:nth-child(20) {
	animation-delay: 2.5s;
}
.text-anim span:nth-child(21) {
	animation-delay: 2.6s;
}
a.logo img {
	width: 18.8rem;
	height: 13.3rem;
}
div.inner {
	padding: 0 4rem;
	width: 100%;
}

section.sec1 {
	width: 100%;
	aspect-ratio: 1297/1027;
	background-image: url(./img/section1-bg.png);
	background-size: contain;
	background-repeat: no-repeat;
	padding-top: 3.8rem;
}
.white-bg {
	height: 10.4rem;
	width: 106.3rem;
	max-width: 90%;
	background: #fff;
	display: flex;
	align-items: center;
	margin-top: 8.3rem;
	padding-left: 2.2rem;
}
.red-bg {
	display: flex;
	align-items: center;
	background: #f10c09;

	width: 95.8rem;
	height: 19.2rem;
	font-weight: 700;
	font-size: 7.3rem;
	max-width: 90%;
	padding-left: 2.2rem;
	color: #fff;
}
section {
	width: 100%;
}
section.sec2 {
	padding-top: 8.3rem;
	padding-bottom: 9.5rem;
	background-color: #fff;
	/* background-color: #f1f0f0; */
}

/* 폼 전체를 감싸는 컨테이너 */
section.sec2 .form-container {
	width: 100%;
	box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.07);
	border-radius: 5rem;
	background-color: #fff;
}

/* 각 입력 필드(라벨 + 입력창)를 묶는 그룹 */
section.sec2 .form-group {
	display: flex; /* 라벨과 입력창을 가로로 정렬 */
	align-items: center; /* 세로 중앙 정렬 */
	margin-bottom: 2.2rem; /* 각 필드 사이의 간격 */
}
section.sec2 .input-wrapper {
	padding: 6.2rem;
}
/* 라벨 스타일 */
section.sec2 .form-group label {
	flex: 0 0 27rem;
	font-size: 5.2rem;
	color: #777777;
}

section.sec2 .form-group label .required {
	color: #f10c09;
	margin-left: 0.3rem;
}

/* 입력창 스타일 */
section.sec2 .form-group input[type="text"],
section.sec2 .form-group input[type="tel"] {
	flex: 1; /* 남은 공간을 모두 차지 */
	padding: 1.2rem 1.5rem;
	border: 0.2rem solid #929292;
	border-radius: 2rem;
	font-size: 5.4rem;
	outline: none;
	font-family: "Spoqa Han Sans Neo", "sans-serif";
	height: 12.2rem;
	padding-left: 2.4rem;
	font-weight: 400;
}

section.sec2 .form-group input::placeholder {
	color: #c7c7c7;
}

/* --- 커스텀 체크박스 스타일 --- */
section.sec2 .terms-box {
	margin-top: 2rem;
}

section.sec2 .consent-group {
	display: flex;
	align-items: center;
	justify-content: center;
}

section.sec2 .consent-group input[type="checkbox"] {
	display: none;
}

section.sec2 .consent-group label {
	font-size: 4rem;
	color: #000;
	cursor: pointer;
	display: flex;
	align-items: center;
}
section.sec2 .consent-group label span {
	margin-top: 1rem;
}
section.sec2 .consent-group label::before {
	content: "";
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 6rem;
	height: 6rem;
	margin-right: 2.3rem;
	background-image: url(./img/check.png);
	background-size: 4rem 3rem;
	background-position: center;
	background-repeat: no-repeat;
	flex-shrink: 0;
	border-radius: 2rem;
	border: 0.3rem solid;
	border-color: #e53e3e;
	box-sizing: border-box;
}

section.sec2 .consent-group input[type="checkbox"]:checked + label::before {
	background-image: url(./img/check.png);
	background-color: #e53e3e;
	color: white;
}

section.sec2 .consent-group .details-link {
	color: #e53e3e;
	text-decoration: none;
	margin-left: 1.1rem;
}
.terms-content {
	max-height: 0; /* 평소에는 높이를 0으로 하여 숨김 */
	overflow: hidden; /* 높이를 벗어나는 내용 숨김 */
	transition: max-height 0.4s ease-out, padding 0.4s ease-out; /* 부드러운 효과 */

	margin-top: 1rem;
	padding: 0rem 5rem; /* 평소에는 내부 여백 없음 */
	background-color: #f7f7f7;
	font-size: 3rem;
	color: #555;
	line-height: 1.6;
}

/* 'active' 클래스가 추가되었을 때 펼쳐짐 */
.terms-content.active {
	max-height: 250rem; /* 보여줄 내용에 맞춰 충분한 높이 지정 */
	padding: 1rem 5rem; /* 평소에는 내부 여백 없음 */
}
.terms-content p {
	padding: 1rem 0;
}
/* 버튼 스타일 */
section.sec2 .form-container button {
	width: 100%;
	margin-top: 6.2rem;
	background-color: #2c3e50;
	color: white;
	border: none;
	border-radius: 3rem;
	font-size: 8.8rem;
	cursor: pointer;
	height: 18.8rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
section.sec3 {
	background-color: #f6f6f6;
	padding-top: 11.8rem;
	padding-bottom: 8.8rem;
}
section.sec3 h1 {
	font-size: 11.5rem;
	font-weight: 700;
	margin: 0;
	text-align: center;
	color: #f10c09;
	margin-top: 1.7rem;
	padding-bottom: 10.7rem;
}
section.sec3 h2 {
	font-size: 7rem;
	font-weight: 700;
	margin: 0;
	text-align: center;
}
section.sec3 h2 span {
	color: #f10c09;
	font-weight: 700;
}
/* 전체 컴포넌트를 감싸는 컨테이너 (상대 위치 기준) */
.sec3 .plan-container {
	position: relative;
	width: 100%;
	margin-top: 5rem;
	padding-bottom: 31rem;
}

/* 3단 비교 테이블 */
.sec3 .comparison-table {
	display: flex;
	background-color: white;
	border-radius: 2rem;
	box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.07);
	padding: 0 4.1rem;
	/* align-items: center; */
	padding-bottom: 8.1rem;
	justify-content: center;
	height: 94.1rem;
}

/* 각 컬럼의 공통 스타일 */
.sec3 .column {
	/* flex: 1; */
	/* padding: 20px 10px; */
	text-align: center;
}
.column.side-column {
	padding-top: 10rem;
	width: 31rem;
}
.sec3 .column h3 {
	font-size: 5.5rem;
	color: #333;
	padding-bottom: 3rem;
	font-weight: 700;
	position: relative;
}
.sec3 .column h3::after {
	content: "";
	background-color: #7d7d7d;
	height: 0.6rem;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 1rem 0 0 1rem;
}
.sec3 .column:last-child h3::after {
	border-radius: 0 1rem 1rem 0;
}
.sec3 .column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sec3 .column li {
	font-size: 5.5rem;
	color: #555;
	padding: 3.1rem 0;
	height: 11.1rem;
}

/* 가운데 메인 컬럼 특별 스타일 */
.sec3 .main-column {
	background-color: #f10c09;
	color: white;
	border-radius: 3rem;
	padding-top: 3.9rem;
	margin: -7.9rem 0;
	position: relative;
	z-index: 2;
	width: 50rem;
	height: 108.3rem;
	flex: 1;
}

.sec3 .main-column .logo-box {
	margin-bottom: 5.1rem;
}
.sec3 .main-column .logo-box img {
	width: 24rem;
	margin-bottom: 0.5rem;
}

.sec3 .main-column li {
	font-size: 6rem;
	font-weight: bold;
	color: white;
	padding: 3.1rem 0;
}
.approval-badge {
	position: absolute;
	left: -5.1rem;
	top: -6.2rem;
	width: 19.3rem;
	height: 18rem;
}
.approval-badge img {
	width: 100%;
}
/* 하단 이미지 스타일 */
.sec3 .car-image-1 {
	position: absolute;

	bottom: 0;
	z-index: 3;
	right: 0;
	width: 112.1rem;
}
.pass-wrapper {
	display: flex;
	gap: 1.6rem;
	margin-bottom: 6.1rem;
}
.pass-card {
	background-color: #fff;
	padding-top: 6.1rem;
	padding-bottom: 2.7rem;
	flex: 1;
	justify-content: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 0.2rem solid #ee0c09;
	border-radius: 3rem;
}
.pass-card p {
	line-height: 6.5rem;
	letter-spacing: -0.02em;
	font-size: 4rem;
	font-weight: 700;
}
.pass-card img {
	width: 24rem;
	margin-top: 1rem;
}
section.sec3 button {
	background-color: #2c3e50;
	color: #fff;
	width: 100%;
	height: 18.8rem;
	border-radius: 3rem;
	font-size: 8.8rem;
	font-weight: 700;
	letter-spacing: -0.02rem;
}
section.sec4 {
	background-color: #f6f6f6;
	font-size: 5rem;
	text-align: center;
	padding-bottom: 8.7rem;
}
section.sec4 .live-box {
	background-color: #fff;
	width: 100%;
	/* height: 65.9rem; */
	padding: 8% 0;
	border-radius: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.07);
}
section.sec4 .live-box img {
	max-width: 100%;
}
section.sec5 {
	background-color: #fff;
	padding-top: 16.3rem;
	padding-bottom: 11.1rem;
}
section.sec5 .inner {
	padding-left: 11.1rem;
	padding-right: 12.4rem;
}
section.sec5 h1 {
	letter-spacing: -0.05em;
	font-size: 8.8rem;
	font-weight: 700;
	line-height: 10rem;
	text-align: center;
	color: #2c3e50;
}
section.sec5 h1.red {
	color: #f10c09;
	margin-bottom: 13.1rem;
}

/* 4개의 카드를 감싸는 그리드 컨테이너 */
.sec5 .car-pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2개의 컬럼을 생성 */
	gap: 20rem 13rem; /* 카드 사이의 세로, 가로 간격 */
	margin: 0 auto;
}

/* 각 자동차 카드 */
.sec5 .car-card {
	background-color: transparent;
	text-align: center;
}

/* 자동차 이미지 */
.sec5 .car-card .car-image {
	/* width: 100%; */
	height: 19.3rem;
	margin-bottom: 8.4rem;
}

/* 자동차 이름 */
.sec5 .car-card .car-name {
	font-size: 4.5rem;
	font-weight: 700; /* Extra Bold */
	text-align: center;
	margin: 0 0 2.6rem 0;
	color: #2c3e50;
}

/* 가격 정보 행 */
.sec5 .car-card .price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.2rem;
}

/* 가격 조건 라벨 (무보증, 보증금 등) */
.sec5 .price-row .price-label {
	color: white;

	border-radius: 1rem;
	font-size: 3rem;
	font-weight: 700;
	flex-shrink: 0; /* 너비가 줄어들지 않도록 */
	min-width: 20rem;
	height: 5.8rem;
	align-content: center;
	text-align: center;
}

/* 라벨 색상 */
.sec5 .price-label.label-gray {
	background-color: #2c3e50; /* 어두운 남색 */
}
.sec5 .price-label.label-red {
	background-color: #e21e29; /* 빨간색 */
}

/* 가격 값 */
.sec5 .price-row .price-value {
	font-size: 3rem;
	color: #2c3e50;
	display: flex;
	justify-content: space-between;
	width: 24.2rem;
	align-items: center;
	font-weight: 500;
}

/* 가격 숫자 부분 */
.sec5 .price-value .price-amount {
	font-size: 4rem;
	font-weight: 700;
	color: #111;
	margin: 0 0.2rem;
	color: #f10c09;
}

section.sec6 {
	padding-bottom: 11.1rem;
	background-color: #f1f0f0;
	padding-top: 11.9rem;
}
section.sec6 .car-promo-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20rem 13rem;
	margin: 0 auto;
}

/* 각 자동차 카드 */
section.sec6 .promo-card {
	background-color: transparent;
	text-align: center;
}

/* 자동차 이미지 */
section.sec6 .promo-card .car-image {
	height: 20.6rem;
	margin-bottom: 8rem;
}

/* 자동차 이름 영역 */
section.sec6 .promo-card .car-title {
	margin-bottom: 3rem;
}

/* 메인 이름 */
section.sec6 .car-title .main-name {
	font-size: 4.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin: 0 0 0.8rem 0;
}

/* 서브 이름 (트림명) */
section.sec6 .car-title .sub-name {
	font-size: 2.2rem;
	color: #2c3e50;
	margin: 0;
}

/* 가격표 태그 */
section.sec6 .promo-card .price-tag {
	display: inline-block;
	background-color: #f10c09;
	color: white;
	width: 33.7rem;
	height: 5.8rem;
	border-radius: 1rem;
	font-size: 3rem;
	font-weight: 500;
	box-shadow: 0 0.5rem 1.5rem rgba(229, 9, 20, 0.35);
	align-content: center;
	padding-top: 0.6rem;
}

/* 가격 숫자 부분 */
section.sec6 .price-tag .price-amount {
	font-weight: 700;
	font-size: 4rem;
	margin: 0 0.2rem;
	color: #fff;
}
section.sec6 .inner {
	padding-left: 11.1rem;
	padding-right: 12.4rem;
}
section.sec6 h1 {
	letter-spacing: -0.05em;
	font-size: 8.8rem;
	font-weight: 700;
	line-height: 10rem;
	text-align: center;
	color: #2c3e50;
}
section.sec6 h1.red {
	color: #f10c09;
	margin-bottom: 6.2rem;
}
section.sec6 h3 {
	font-size: 3.6rem;
	color: #2c3e50;
	margin-bottom: 14.8rem;
	text-align: center;
}

section.sec6 h3 span {
	color: #f10c09;
}
section.sec7 {
	padding-top: 6.1rem;
	position: relative;
	background-color: #ffffff;
}
section.sec7 .capital {
	margin-bottom: 9.9rem;
	width: 100%;
}
section.sec7 h1 {
	color: #f10c09;
	font-size: 6rem;
	font-weight: 700;
	padding-left: 8.3rem;
	padding-bottom: 5.9rem;
}
section.sec7 h2 {
	color: #2c3e50;
	font-size: 4.7rem;
	font-weight: 700;
	padding-left: 8.3rem;
	padding-bottom: 14.6rem;
	line-height: 7rem;
}
section.sec7 img.man {
	position: absolute;
	right: 6rem;
	bottom: 0;
	width: 27.7rem;
}
.grayspace87 {
	width: 100%;
	height: 8.7rem;
	background-color: #f1f0f0;
}
.grayspace95 {
	width: 100%;
	height: 9.5rem;
	background-color: #f1f0f0;
}
section.sec8 {
	background-color: #ffffff;
	padding-top: 15rem;
}
section.sec8 .inner {
	position: relative;
}
section.sec8 h2 {
	font-size: 6rem;
	color: #2c3e50;
	text-align: center;
	margin-bottom: 2.4rem;
}
section.sec8 .gradient-text1 {
	margin-bottom: 15rem;
	width: 100%;
}
section.sec8 .review-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
	margin: 0 auto;
	padding-bottom: 9rem;
}

/* 각 후기 카드 */
section.sec8 .review-card {
}

/* 카드 헤더 (이름 + 별점) */
section.sec8 .review-card .review-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 2.9rem;
}

section.sec8 .review-header .reviewer-name {
	font-size: 4rem;

	color: #2c3e50;
}

section.sec8 .review-header .star-rating {
	color: #f10c09;
	font-size: 1.8rem;
}

/* 후기 이미지 */
section.sec8 .review-card .review-image {
	border-radius: 3rem;
	overflow: hidden;
}
section.sec8 .review-card .review-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

section.sec8 .review-content .car-model {
	font-size: 5.8rem;
	font-weight: 700;
	color: #2c3e50;
	margin-top: 2.6rem;
	margin-bottom: 3.2rem;
}

section.sec8 .review-content .review-text {
	font-size: 3.4rem;
	color: #2c3e50;
	line-height: 1.6;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	word-break: keep-all;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}
.white-blur {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 14.6rem;
	background: #fff;
	z-index: 11111;
	opacity: 0.7;
}

section.sec9 {
	background-color: #fff;
	padding-top: 10.4rem;
	padding-bottom: 10.2rem;
}
section.sec9 div.inner {
	padding-left: 9rem;
}
/* 전체를 감싸는 컨테이너 */
section.sec9 .consultation-box {
}

/* 상단 헤더 (제목 + 운영시간) */
section.sec9 .consultation-box .header {
	display: flex;
	align-items: baseline;
	margin-bottom: 1rem;
}

section.sec9 .header h2 {
	font-size: 6rem;
	font-weight: 700;
	color: #333;
	margin: 0;
	padding: 0;
	letter-spacing: -0.02em;
}

section.sec9 .header .hours {
	font-size: 4.8rem;
	color: #777777;
	margin-left: 1.7rem;
	border-bottom: 0.3rem solid #777777;
}

/* 부제목 */
section.sec9 .consultation-box .subtitle {
	font-size: 3.8rem;
	color: #777;
	line-height: 1;
	margin-bottom: 6.6rem;
	margin-top: 3.6rem;
}

/* 전화 정보 (아이콘 + 번호) */
section.sec9 .consultation-box .phone-info {
	display: flex;
	align-items: center;
}

section.sec9 .phone-info .call-icon {
	width: 6.7rem;
	height: auto;
	margin-right: 3.4rem;
}

section.sec9 .phone-info .phone-number {
	font-size: 6rem;
	font-weight: 700;
	color: #f10c09;
	text-decoration: none;
	letter-spacing: -0.02em;
}
footer {
	background-color: #383838;
	padding-top: 7.4rem;
	padding-bottom: 7.1rem;
	text-align: center;
}
footer p {
	color: #b4b3b3;
	text-align: center;
	font-size: 3.2rem;
	line-height: 6rem;
}
footer .footer-logo {
	margin-bottom: 7.9rem;
	width: 24.1rem;
	height: 17.1rem;
}
button.kako {
	background-color: transparent;
	border: none;
	position: fixed;
	bottom: 23.9rem;
	right: 4.4rem;
	width: 16.9rem;
	height: 16.9rem;
}
button.kako img {
	width: 100%;
	border-radius: 50%;
	box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.07);
}
