@charset "UTF-8";
/* CSS Document */


* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #FFF;
	overflow-x: hidden;
}

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

a:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
}

a {
	display: inline-block;
}

.container {
    margin: 0 auto;
    max-width: 600px;
	border-left: 1px solid #d0d0d0;
	border-right: 1px solid #d0d0d0;
}

.site-header {
	max-width: 600px;
	background-color: #FFF;
	align-items: center;
	padding: 18px 20px;
	margin: 0 auto;
	
	top: 0;
    left: 0;
    z-index: 1000;
    position: sticky;
	transition: background 0.4s ease;
}

.site-header.scrolling {
	 background: rgba(255,255,255,0.7);
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.header-logo {
	width: 200px;
	height: auto;
	display: flex;
	align-items: center;
}

.header-nav {
	display: flex;
}

.header-nav ul {
	margin: 0;
    padding: 0;
    list-style: none;         
    display: flex;           
    gap: 20px;
    align-items: center;
}

.header-nav img {
	width: 80px;
	height: auto;
}

.header-nav a {
    display: flex;
    align-items: center; 
}

.main-visual {
	width: 100%;
}

.product-1,
.product-3,
.product-5 {
	background-color: #e3e2e2;
}

.product-1,
.product-2,
.product-3,
.product-4,
.product-5 {
	padding-top: 3em;
	text-align: center;
}

.message {
	margin: 4em 0;
}

.product-1 a,
.product-2 a,
.product-3 a,
.product-4 a,
.product-5 a {
	display: inline-block;
	width: 40%;
	margin: 5px auto 3em auto;
	text-align: center;
}


.product-order  {
	margin-top: 5em;
	margin-bottom: 7em;
}


.sns {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

.sns-ig {
	width: 120px;
	height: auto;
}

.sns-tt,
.fc {
	width: 48px;
	height: auto;
}

.sns a {
	display: flex;
}

footer {
	max-width: 600px;
	text-align: center;
	margin: 0  auto;
	background-color: #FFF;
	padding-top: 2em;
	margin-bottom: 5px;
}

p {
	margin: 0;
	font-size: 13px;
	font-family: "Helvetica", Arial, sans-serif;
}


@media (max-width: 768px) {
	body {
		background: none;
	}
	
    .container {
        max-width: 100%;
		border-left: none;
		border-right: none;
	}

	.site-header{
		max-width: 100%;
		padding: 15px 18px;
	}
	
	
	.header-logo {
		width: 140px;
}
	.header-nav ul {
    gap: 5px;
}

	.header-nav img {
		width: 65px;
}
	
	.sns {
	justify-content: space-around;
}
	.sns-ig {
	width: 95px;
}

.sns-tt,
.fc {
	width: 39px;
}

}
