@charset "UTF-8";

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

html {
	height: 100%;
	font-size: 10px;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@600&display=swap');

body {
	width: 100%;
	height: 100%;
	color: #230c05;
	font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN',
		'游明朝', 'Yu Mincho', 'MS PMincho', serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
	background: #fff;
	padding-top: 80px;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
		padding-top: 16vw;
	}
}

.gothic {
	font-family: '游ゴシック', 'Yu Gothic', YuGothic, 'Hiragino Sans',
		'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3',
		'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', Osaka, Verdana, sans-serif;
}

a {
	color: #230c05;
	text-decoration: none;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

a:hover,
a *:hover {
	opacity: 0.7;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

*:focus {
	outline: 0;
}

img {
	display: block;
	vertical-align: bottom;
}

@media screen and (max-width: 768px) {
	img {
		width: 100%;
		height: auto;
	}
}

.clearfix::after {
	content: '';
	display: block;
	clear: both;
}

/* display */
.u-sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.u-pc {
		display: none !important;
	}

	.u-sp {
		display: block !important;
	}

	br.u-sp {
		display: inline;
	}
}

/* container */
.container {
	min-width: 1400px;
}

@media screen and (max-width: 768px) {
	.container {
		min-width: auto;
		width: 100%;
		overflow: hidden;
	}
}

/* inner */
.inner {
	position: relative;
	width: 1120px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.inner {
		width: 100%;
		overflow: hidden;
	}
}

/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 1003;
}

header .inner {
	position: relative;
	height: 80px;
	padding-top: 10px;
	background: #fff;
}

@media screen and (max-width: 768px) {
	header .inner {
		height: 16vw;
		padding: 1.467vw 15.133vw 0 3.2vw;
		z-index: 2;
	}
}

.header_logo,
.header_title,
.header_menu {
	float: left;
}

.header_logo {
	display: block;
	width: 61px;
}

@media screen and (max-width: 768px) {
	.header_logo {
		width: 13.067vw;
	}
}

.header_menu {
	position: absolute;
	top: 28px;
	left: 50%;
	margin-left: -478px;
}

@media screen and (max-width: 1140px) {
	.header_menu {
		left: 80px;
		margin-left: 0;
	}
}

.header_menu ul {
	display: block;
	background: url(/brand/ogawaken/img/menu_bar.png) no-repeat top left / 1px
		25px;
	white-space: nowrap;
}

.header_menu li {
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	line-height: 25px;
	padding: 0 20px;
	background: url(/brand/ogawaken/img/menu_bar.png) no-repeat top right / 1px
		25px;
}

.header_sns {
	float: right;
	margin-top: 12px;
}

.header_sns li {
	display: inline-block;
	width: 36px;
	margin-left: 6px;
}

@media screen and (max-width: 768px) {
	.header_sns {
		margin-top: 2.7vw;
	}

	.header_sns li {
		width: 8vw;
		margin-left: 2.133vw;
	}
}

#sp_menu_switch,
.sp_menu_button {
	display: none;
}

@media screen and (max-width: 768px) {
	.header_menu_outer {
		display: block;
		position: absolute;
		top: 5.4vw;
		right: 4.267vw;
		width: 7.5vw;
		height: 6vw;
	}

	#sp_menu_switch {
		display: none;
	}

	.sp_menu_button {
		position: relative;
		display: block;
		width: 100%;
		height: 6vw;
	}

	.sp_menu_button span,
	.sp_menu_button::before,
	.sp_menu_button::after {
		content: '';
		position: absolute;
		left: 0;
		display: block;
		width: 100%;
		height: 3px;
		background: #3e2a23;
		border-radius: 1.5px;
		-webkit-transition: all 0.2s;
		-o-transition: all 0.2s;
		transition: all 0.2s;
		z-index: 3;
	}

	#sp_menu_switch:not(:checked) ~ .sp_menu_button span {
		top: 50%;
		margin-top: -1.5px;
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}

	#sp_menu_switch:not(:checked) ~ .sp_menu_button::before {
		top: 0;
	}

	#sp_menu_switch:not(:checked) ~ .sp_menu_button::after {
		bottom: 0;
	}

	#sp_menu_switch:checked ~ .sp_menu_button span {
		position: fixed;
		top: 16vw;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
		z-index: 0;
	}

	#sp_menu_switch:checked ~ .sp_menu_button::before,
	#sp_menu_switch:checked ~ .sp_menu_button::after {
		width: 116%;
		top: 51%;
		left: -0.5vw;
		margin-top: -0.4vw;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	#sp_menu_switch:checked ~ .sp_menu_button::after {
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	.header_menu {
		float: none;
		width: 100%;
		margin: 0;
		position: fixed;
		top: 16vw;
		left: 0;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
		z-index: 1;
		background: #fff;
		z-index: 1;
	}

	#sp_menu_switch:not(:checked) ~ .header_menu {
		top: -60vw;
	}

	.header_menu ul {
		background: none;
	}

	.header_menu li {
		display: block;
		width: 100%;
		font-size: 3.733vw;
		line-height: 12.5vw;
		text-align: center;
		background: none;
		padding: 0;
		border-top: 1px dotted #d3b337;
	}

	.header_menu li a {
		display: block;
		width: 100%;
		padding-top: 0.833vw;
		color: #230c05;
	}
}

/* footer */
footer {
	padding: 40px 0 42px 0;
	color: #fff;
	text-align: center;
	background: #2b2302;
}

footer .footer_logo {
	display: inline-block;
	width: 220px;
}

footer .copyright {
	font-size: 12px;
	font-weight: normal;
	margin-top: 30px;
}

@media screen and (max-width: 768px) {
	footer {
		padding: 4vw 0;
	}

	footer .inner {
		width: 100%;
	}

	footer .footer_logo {
		width: 36.8vw;
	}

	footer .copyright {
		font-size: 3.2vw;
		line-height: 1.8;
		margin-top: 7.2vw;
	}
}

/* kv */
.kv {
	width: 100%;
	overflow: hidden;
	background: url(/brand/ogawaken/img/kv_bg_pc.jpg) no-repeat center center /
		cover;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media screen and (max-width: 768px) {
	.kv {
		background: url(/brand/ogawaken/img/kv_bg_sp.jpg) no-repeat center center /
			cover;
	}
}

/* h2 */
h2 {
	font-size: 40px;
	line-height: 1.2;
}

.mac h2 {
	font-weight: normal;
}

h2 span {
	display: block;
	font-size: 22px;
	font-family: 'Times New Roman', Times, serif;
	font-weight: normal;
	font-style: oblique;
	color: #927d2e;
	line-height: 1.7;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
	h2 {
		font-size: 6.4vw;
	}

	h2 span {
		font-size: 3.467vw;
	}
}

/* lineup */
.lineup {
	width: 100%;
	text-align: center;
	margin-top: 80px;
}

.lineup .lineup_pkg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 23px auto 0;
}

.lineup .lineup_pkg li {
	width: 350px;
	margin: 0 20px;
}

.lineup .lineup_pkg_title {
	font-size: 25px;
	color: #4d311a;
	width: 400px;
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.lineup_pkg_img {
	height: 245px;
	margin: 22px auto 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.lineup_pkg_img img {
	width: 100%;
	height: auto;
}

.lineup .lineup_link,
.lineup .lineup_cs {
	display: block;
	max-width: 100%;
	height: 52px;
	font-size: 18px;
	color: #fff;
	border-radius: 3px;
	margin: 20px auto 0;
	padding-top: 13px;
	padding-right: 40px;
}

.lineup .lineup_link {
	background: #b52846 url(/brand/ogawaken/img/icon_arrow.png) no-repeat center
		right 19px / 24px 24px;
	-webkit-box-shadow: 0 4px 0 0 rgba(247, 222, 227, 1);
	box-shadow: 0 4px 0 0 rgba(247, 222, 227, 1);
}

.lineup .lineup_cs {
	background: #a69f83;
}

@media screen and (max-width: 768px) {
	.lineup {
		margin-top: 12.133vw;
	}

	.lineup h2 {
		font-size: 6.4vw;
	}

	.lineup h2 span {
		font-size: 3.467vw;
	}

	.lineup .lineup_pkg {
		display: block;
		width: 73.6vw;
		margin: 6vw auto 0;
	}

	.lineup .lineup_pkg li {
		width: 100%;
		margin: 0;
	}

	.lineup .lineup_pkg li:nth-child(n + 2) {
		margin-top: 10.4vw;
	}

	.lineup .lineup_pkg_title {
		width: 100%;
		font-size: 4.267vw;
	}

	.lineup_pkg_img {
		height: auto;
		margin-top: 2.227vw;
	}

	.lineup .lineup_link,
	.lineup .lineup_cs {
		width: 100%;
		height: 10.4vw;
		font-size: 3.467vw;
		margin: 4vw auto 0;
		padding-top: 2.8vw;
	}

	.lineup .lineup_link {
		background: #b52846 url(/brand/ogawaken/img/icon_arrow.png) no-repeat center
			right 3.467vw / 4.267vw 4.267vw;
		-webkit-box-shadow: 0 0.533vw 0 0 rgba(247, 222, 227, 1);
		box-shadow: 0 0.533vw 0 0 rgba(247, 222, 227, 1);
	}

	.lineup .lineup_pkg li:first-child .lineup_link {
		margin-top: 2.5vw;
	}
}

/* delicious */
.delicious {
	margin-top: 100px;
}

.delicious .inner {
	width: 1400px;
	height: 1000px;
	background: url(/brand/ogawaken/img/delicious_bg_pc.jpg) no-repeat center
		right / cover;
	padding-top: 96px;
}

.delicious h2 {
	margin: 0 auto;
	text-align: center;
}

.delicious_label_01,
.delicious_label_02 {
	margin: 40px 0 0 360px;
}

.delicious .delicious_point_01,
.delicious .delicious_point_04 {
	margin: 6px 0 0 170px;
}

.delicious .delicious_point_02,
.delicious .delicious_point_05 {
	margin: 24px 0 0 190px;
}

.delicious .delicious_point_03 {
	margin: 24px 0 0 210px;
}

.delicious .delicious_chef_ph {
	position: absolute;
	top: 242px;
	right: 170px;
}

.delicious .delicious_chef_label {
	position: absolute;
	top: 761px;
	right: 176px;
}

@media screen and (max-width: 768px) {
	.delicious {
		margin-top: 11.7vw;
	}

	.delicious .inner {
		width: 100%;
		/* min-height: 173.333vw; */
		height: auto;
		text-align: center;
		background: url(/brand/ogawaken/img/delicious_bg_sp.jpg) no-repeat center -10vw /
			cover;
		padding-top: 14.2vw;
	}

	.delicious h2 {
		margin-left: 0;
	}

	.delicious_label_01,
	.delicious_label_02 {
		width: 42vw;
		margin: 6.4vw auto 2vw;
	}

	.delicious .delicious_point_01 {
		width: 54.91vw;
		margin: 2vw 0 0 3.6vw;
	}

	.delicious .delicious_point_02 {
		width: 76.38vw;
		margin: 4.5vw 0 0 7.2vw;
	}

	.delicious .delicious_point_03 {
		width: 69.22vw;
		margin: 4.5vw 0 0 10.8vw;
	}

	.delicious .delicious_point_04 {
		width: 76.56vw;
		margin: 2vw 0 0 3.6vw;
	}

	.delicious .delicious_point_05 {
		width: 88vw;
		margin: 4.5vw 0 0 7.2vw;
	}

	.delicious .delicious_chef_ph {
		position: relative;
		top: auto;
		right: auto;
		width: 64vw;
		margin: 8vw auto 0;
	}

	.delicious .delicious_chef_label {
		position: relative;
		top: auto;
		right: auto;
		width: 61.6vw;
		margin: -4.8vw auto 0;
	}
}

/* about */
.about .inner {
	width: 1400px;
	height: 500px;
	text-align: center;
	padding: 100px 0 0 700px;
	background: url(/brand/ogawaken/img/about_inside.jpg) no-repeat center left /
			contain,
		url(/brand/ogawaken/img/about_bg.png) no-repeat center right / contain;
}

.about .about_copy {
	font-weight: normal;
	margin-top: 35px;
	line-height: 2;
}

@media screen and (max-width: 768px) {
	.about {
		margin-top: 11.7vw;
	}

	.about .inner {
		width: 100%;
		height: auto;
		padding: 82.133vw 0 9.6vw 0;
		background: url(/brand/ogawaken/img/about_inside.jpg) no-repeat top center /
				contain,
			url(/brand/ogawaken/img/about_bg.png) repeat-y bottom center / contain;
	}

	.about .about_copy {
		margin-top: 5.6vw;
		font-size: 3.467vw;
	}
}

/* recipe */
.recipe {
	text-align: center;
	margin-top: 100px;
	padding-bottom: 95px;
}

.recipe .recipe_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 1000px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 30px auto 0;
}

.recipe .recipe_list li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 400px;
	margin: 0 50px;
}

.recipe .recipe_title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 26px;
	color: #4d311a;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.recipe img {
	margin-top: 12px;
}

.recipe .recipe_link,
.recipe .recipe_cs {
	display: block;
	height: 52px;
	font-size: 18px;
	color: #fff;
	border-radius: 3px;
	margin-top: 32px;
	padding-top: 13px;
}

.recipe .recipe_link {
	background: #b52846 url(/brand/ogawaken/img/icon_pdf.png) no-repeat center
		left 82px / 23px 28px;
	-webkit-box-shadow: 0 4px 0 0 rgba(247, 222, 227, 1);
	box-shadow: 0 4px 0 0 rgba(247, 222, 227, 1);
	padding-left: 40px;
}

.recipe .recipe_cs {
	background: #a69f83;
}

@media screen and (min-width: 769px) {
	.recipe .recipe_list li:nth-child(n + 3) {
		margin-top: 50px;
	}
}

@media screen and (max-width: 768px) {
	.recipe {
		margin-top: 17.867vw;
		padding-bottom: 16vw;
	}

	.recipe .inner {
		padding-bottom: 1vw;
	}

	.recipe .recipe_list {
		display: block;
		width: 100%;
		margin: 0 auto;
	}

	.recipe .recipe_list li {
		display: block;
		width: 100%;
		margin: 9.067vw auto 0;
	}

	.recipe .recipe_title {
		display: block;
		font-size: 4.267vw;
	}

	.recipe img {
		width: 66.4vw;
		margin: 4vw auto 0;
	}

	.recipe .recipe_link,
	.recipe .recipe_cs {
		height: 12vw;
		font-size: 3.467vw;
		margin: 3.6vw auto 0;
		padding-top: 3.4vw;
		width: 66.4vw;
	}

	.recipe .recipe_link {
		background: #b52846 url(/brand/ogawaken/img/icon_pdf.png) no-repeat center
			left 10vw / 4.533vw 5.467vw;
		-webkit-box-shadow: 0 0.533vw 0 0 rgba(247, 222, 227, 1);
		box-shadow: 0 0.533vw 0 0 rgba(247, 222, 227, 1);
		padding-left: 6vw;
	}

	.recipe .recipe_title_cs {
		display: none;
	}

	.recipe .recipe_title_cs + img {
		margin-top: 10.5vw;
	}
}
