@charset "UTF-8";

/* reset */

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

html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	scroll-behavior: smooth;
}

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

ul[role='list'],
ol[role='list'] {
	list-style: none
}

body {
	min-height: 100vh;
	line-height: 1.5
}

h1,
h2,
h3,
h4,
button,
input,
label {
	line-height: 1.1
}

h1,
h2,
h3,
h4 {
	text-wrap: balance
}

a:not([class]) {
	text-decoration-skip-ink: auto;
	color: currentColor
}

img,
picture {
	max-width: 100%;
	display: block
}

input,
button,
textarea,
select {
	font: inherit
}

textarea:not([rows]) {
	min-height: 10em
}

:target {
	scroll-margin-block: 5ex
}



/* ///////////////////////////////////////////////// design */

body {
	background: #C3E3F4;
	color: #464F58;
}

img {
	width: 100%;
}

.cart {
	background-color: #FFF;
	padding: 30px 16px 70px 16px;
}

.cart form {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart form .number {
	font-size: 30px;
	font-weight: bold;
}

.cart form .count {
	margin: 0 20px;
}

.cart form .count select {
	font-size: 20px;
	padding: 10px 20px;
}

.cart .btn input {
	max-width: 100%;
}


/* /////////////////////////////////////////////////  pc-design */

@media screen and (min-width: 1025px) {

	header,
	main,
	footer {
		width: 960px;
		margin: 0 auto;
		overflow: hidden;
	}

	img {
		width: auto;
	}

	.cart .btn input {
		width: 400px;
	}

}