@charset "utf-8";

@import url(common.css);

body {
	margin: 0 auto;
	width: 100%;
	background-color: #f8fad7;
	color: #4d0000;
	text-align: center;
}

html {
	scroll-behavior: smooth;
}

header {
	overflow: hidden;
	background-color: #ef2323;
	text-align: center;
}

.logonav {
	max-width: 840px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 95%;
	box-sizing: border-box;
}

.logonav h1 {
	margin: 10px 0 0 0;
}

nav ul {
	list-style-type: none;
	display: flex;
	gap: 20px;
	color: #f8fad7;
	padding: 0;
	margin: 0;
}

nav ul li {
	font-size: 120%;
}

nav ul li a {
	color: #f8fad7;
	text-decoration: none;
	font-weight: bold;
}

nav ul li a:hover {
	color: #ffffff;
	text-decoration: underline;
}

article {
	position: relative;
	max-width: 840px;
	width: 95%;
	display: block;
	margin: 0 auto;
	padding: 0 10px;
	text-align: center;
	box-sizing: border-box;
}

.topgazou {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-top: 30px;
	margin-bottom: 50px;
}

.topmoji {
	position: absolute;
	top: 20%;
	left: 10%;
	text-align: left;
	font-size: 2em;
	font-weight: bold;
	line-height: 1.8;
	width: 80%;
	text-shadow: 0 0 7px rgba(255, 255, 255, 0.7);
	font-family: "Yu Gothic", "遊ゴシック";
}

#maingazou {
	display: block;
	width: 100%;
	height: auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.aboutcoco {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px;
	justify-content: center;
	align-items: flex-start;
}

#about {
	text-align: left;
	line-height: 23px;
	flex: 1 1 300px;
}

.aboutcoco h2 {
	text-align: left;
	position: relative;
	font-size: 150%;
	padding-left: 17px;
	margin: 0 auto 5px 0;
}

.aboutcoco h2::before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 28px;
	background-color: #ef2323;
}

.subtitle {
	font-size: 15px;
}

#about p {
	padding-left: 1.3em;
	padding-right: 20px;
}

strong {
	display: inline-block;
	margin-bottom: 5px;
	font-size: 15px;
}

.mainpic {
	border-radius: 5px;
	width: 300px;
	height: auto;
	object-fit: contain;
}

#cococare {
	display: flex;
	flex-direction: column;
	margin-bottom: 60px;
}

#cococare p a {
	color: #ef2323;
	text-decoration: none;
}

#cococare p a:hover {
	opacity: 0.8;
	text-decoration: underline;
}

.care-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-bottom: 40px;
}

.care-row .text {
	max-width: 600px;
	text-align: left;
	flex: 1 1 300px;
}

#cococare h2 {
	text-align: left;
	position: relative;
	font-size: 150%;
	padding-left: 17px;
}

#cococare h2::before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 28px;
	background-color: #ef2323;
}

.care-row p {
	padding-left: 1.3em;
	padding-right: 20px;
}

.shouhin {
	width: 120px;
	height: auto;
	object-fit: contain;
	border-radius: 5px;
}

.shousho {
	width: 180px;
	height: auto;
	object-fit: contain;
	border-radius: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
}

#contact {
	text-align: left;
	margin-bottom: 40px;
	padding: 0 10px;
	box-sizing: border-box;
}

#contact h2 {
	position: relative;
	font-size: 150%;
	padding-left: 17px;
}

#contact h2::before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 28px;
	background-color: #ef2323;
}

#contact p {
	padding-left: 1.3em;
	padding-right: 20px;
}

#contact p a {
	color: #ef2323;
	text-decoration: none;
}

#contact p a:hover {
	opacity: 0.8;
	text-decoration: underline;
}

footer {
	background-color: #ef2323;
	width: 100%;
	height: auto;
	padding: 20px 10px;
	position: static;
	text-align: center;
	color: #f8fad7;
	box-sizing: border-box;
}

.logo-circle {
	width: 120px;
	height: 120px;
	background-color: #f8fad7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
}

.logo-circle img {
	position: relative;
	top: 4px;
	width: 85px;
	height: auto;
}

.footerlogo {
	width: 150px;
	margin-top: 15px;
}

/* ========== スマホ対応 ========== */
@media screen and (max-width: 768px) {
	body {
		font-size: 90%;
	}

	header,
	footer {
		padding: 10px;
	}

	.logonav {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.logonav h1 img {
		width: 200px;
	}

	nav ul {
		flex-direction: row;
		justify-content: center;
		padding: 0;
		gap: 10px;
	}

	nav ul li {
		font-size: 90%;
	}

	article {
		width: 95%;
		padding: 0 10px;
		text-align: left;
	}

	.topmoji {
		position: absolute;
		top: 20%;
		left: 10%;
		font-size: 1.1em;
		text-align: left;
		width: 80%;
		text-shadow: 0 0 7px rgba(255, 255, 255, 0.7);
	}

	#maingazou,
	.mainpic {
		width: 100%;
		height: auto;
	}

	.aboutcoco {
		display: block;
	}

	.care-row {
		display: block;
		text-align: center;
	}

	.care-row .text {
		width: 100%;
		text-align: left;
		margin: 0 auto;
	}

	.care-row .shouhin {
		display: inline-block;
		width: 80%;
		margin: 10px auto;
	}

	.care-row img {
		disp;ay: inline-block;
		width: 80%;
		margin: 10px auto;
	}

	.logo-circle {
		width: 100px;
		height: 100px;
	}

	.logo-circle img {
		width: 70px;
		top: 6px;
	}

	.footerlogo {
		width: 100px;
	}
}
