html {
	font-size: 16px;
	scroll-behavior: smooth;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

.wrapper {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	background-color: #fff;
}

@media (min-width: 751px) {
	.wrapper {
		width: calc(750px * 0.6);
	}
}

ul,
ol {
	padding: 0;
	list-style: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
	font-family: "Jost",
		sans-serif;
	font-weight: 600;
	font-size: 30px;
}

@media only screen and (min-width: 751px) {
	body {
		font-size: calc(30px * 0.6);
	}
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* ホバー */

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

@media (any-hover: hover) {
	a:hover {
		opacity: 0.7;
	}
}

.relative {
	position: relative;
}

/* ロゴ */
.logo {
	position: fixed;
	top: 50%;
	left: calc((50% - 225px)/ 2);
	transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1200px) {
	.logo {
		transform: translate(-50%, -50%) scale(0.75);
	}
}

@media only screen and (max-width: 900px) {
	.logo {
		transform: translate(-50%, -50%) scale(0.5);
	}
}

/* scroll_down */
.scroll_down {
	position: fixed;
	bottom: 0px;
	right: 50%;
	transform: translateX(357px);
	transition: .3s;
}

@media only screen and (max-width: 900px) {
	.scroll_down {
		transform: translateX(300px);
	}
}

.scroll_down.is-hide {
	opacity: 0;
	pointer-events: none;
}

.scroll_down a {
	position: absolute;
	left: 10px;
	bottom: 88px;
	color: #000;
	font-size: 14px;
	font-family: 'Josefin Sans', sans-serif;
	letter-spacing: .06em;
	writing-mode: vertical-lr;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 400;
}

.scroll_down:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -4px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #000;
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
	0% {
		bottom: 150px;
	}

	100% {
		bottom: 0px;
	}
}

@keyframes cirlemovehide {
	0% {
		opacity: 0
	}

	50% {
		opacity: 1;
	}

	80% {
		opacity: 0.9;
	}

	100% {
		opacity: 0;
	}
}

.scroll_down:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2px;
	height: 150px;
	background: #000;
}

/* main */
.cv_coupon {
	position: absolute;
	top: calc(221px * 0.6);
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	letter-spacing: 0.06em;
	gap: calc(12px * 0.6);

}

.cv_coupon-txt {
	width: calc(212px * 0.6);
}

.cv_coupon-code {
	padding-block: calc(10px * 0.6);
	cursor: pointer;
}

.cv_coupon-code.is-copied {
	opacity: 0.7;
}

.cv_coupon-btn {
	width: calc(300px * 0.6);
	position: absolute;
	bottom: calc(97px * 0.6);
	left: 50%;
	transform: translateX(-50%);
}

.view-item {
	position: absolute;
	right: calc(12px * 0.6);
	bottom: calc(92px * 0.6);
	width: calc(191px * 0.6);
	padding: calc(20px * 0.6);
}

.cnt03 .relative:nth-of-type(4) .view-item {
	bottom: calc(113px * 0.6);
}

.cnt03 .relative:nth-of-type(6) .view-item {
	bottom: calc(100px * 0.6);
}

@media only screen and (max-width: 750px) {
	body {
		font-size: calc(30 / 750 * 100vw);
	}

	.logo {
		display: none;
	}

	.scroll_down {
		display: none;
	}

	.cv_coupon {
		top: calc(221 / 750 * 100vw);
		gap: calc(12 / 750 * 100vw);
	}

	.cv_coupon-txt {
		width: calc(212 / 750 * 100vw);
	}

	.cv_coupon-code {
		padding-block: calc(10 / 750 * 100vw);
	}

	.cv_coupon-btn {
		width: calc(300 / 750 * 100vw);
		bottom: calc(97 / 750 * 100vw);
	}

	.view-item {
		right: calc(12 / 750 * 100vw);
		bottom: calc(92 / 750 * 100vw);
		width: calc(191 / 750 * 100vw);
		padding: calc(20 / 750 * 100vw);
	}

	.cnt03 .relative:nth-of-type(4) .view-item {
		bottom: calc(113 / 750 * 100vw);
	}

	.cnt03 .relative:nth-of-type(6) .view-item {
		bottom: calc(100 / 750 * 100vw);
	}
}