@charset "UTF-8";

.section {
	margin-bottom: 150px;
}
.section h2 {
	border-bottom: solid 2px #95AEB2;
	border-top: solid 2px #95AEB2;
	color: #95AEB2;
	font-size: 28px;
	margin-bottom: 50px;
	padding: 5px 0;
	text-align: center;
}
.section article h3 {
	font-size: 20px;
	margin-bottom: 30px;
}
.section article p {
	line-height: 1.8;
}
.section article p + p {
	margin-top: 30px;
}
@media screen and (max-width: 1240px) {
	.section {
		margin-bottom: 15vw;
	}
	.section h2 {
		font-size: 2.6vw;
		margin-bottom: 5vw;
		padding: .4vw 0;
	}
	.section article h3 {
		font-size: 1.8vw;
		margin-bottom: 2.5vw;
	}
	.section article p + p {
		margin-top: 2.8vw;
	}
}
@media screen and (max-width: 780px) {
	.section {
		margin-bottom: 15vw;
	}
	.section h2 {
		font-size: 4.6vw;
		line-height: 1.4;
		margin-bottom: 8vw;
		padding: 2vw 0;
	}
	.section article h3 {
		font-size: 3.6vw;
		margin-bottom: 5vw;
	}
	.section article p + p {
		margin-top: 4vw;
	}
}

/** -- section_1 -- **/
.section_1 .inner {
	justify-content: space-between;
}
.section_1 article {
	margin-bottom: 100px;
	width: calc(50% - 40px);
}
.section_1 article figure {
	margin-bottom: 30px;
}
.section_1 article:nth-last-child(1),
.section_1 article:nth-last-child(2) {
	margin-bottom: 0;
}
@media screen and (max-width: 1240px) {
	.section_1 article {
		margin-bottom: 8vw;
		width: calc(50% - 2vw);
	}
	.section_1 article figure {
		margin-bottom: 2.6vw;
	}
}
@media screen and (max-width: 780px) {
	.section_1 article {
		margin-bottom: 12vw;
		width: 100%;
	}
	.section_1 article:nth-last-child(2) {
		margin-bottom: 12vw;
	}
	.section_1 article figure {
		margin-bottom: 5vw;
	}
}

/** -- section_2 -- **/
.section_2 {
	margin-bottom: 80px;
}
.section_2 article .text {
	width: 50%;
}
.section_2 article figure {
	width: 50%;
}
.section_2 article.box_1 {
	margin-bottom: 80px;
}
.section_2 article.box_1 .text {
	padding-top: 70px;
}
.section_2 article.box_2 {
	flex-direction: row-reverse;
}
.section_2 article.box_2 .text {
	padding: 0 40px;
	padding-top: 100px;
}
@media screen and (max-width: 1240px) {
	.section_2 {
		margin-bottom: 7vw;
	}
	.section_2 article.box_1 {
		margin-bottom: 7vw;
	}
	.section_2 article.box_1 .text {
		padding-top: 2vw;
	}
	.section_2 article.box_2 .text {
		padding: 0 0 0 3vw;
		padding-top: 5vw;
	}
}
@media screen and (max-width: 780px) {
	.section_2 {
		margin-bottom: 7vw;
	}
	.section_2 article {
		flex-direction: column !important;
	}
	.section_2 article figure {
		width: 100%;
	}
	.section_2 article .text {
		margin-bottom: 8vw;
		width: 100%;
	}
	.section_2 article.box_1 {
		margin-bottom: 12vw;
	}
	.section_2 article.box_1 .text {
		padding-top: 0;
	}
	.section_2 article.box_2 .text {
		padding: 0;
	}
}

/** -- section_3 -- **/
.section_3 {
	margin-bottom: 100px;
}
.section_3 figure {
	margin-bottom: 50px;
}
@media screen and (max-width: 1240px) {
	.section_3 {
		margin-bottom: 8vw;
	}
	.section_3 figure {
		margin-bottom: 4vw;
	}
}
@media screen and (max-width: 780px) {
	.section_3 {
		margin-bottom: 14vw;
	}
	.section_3 figure {
		margin: 0 -6vw 8vw;
	}
}

/** -- recipe -- **/
.recipe .list {
	justify-content: space-between;
}
.recipe .list article {
	border-radius: 15px;
	margin-bottom: 60px;
	overflow: hidden;
	position: relative;
	transition: ease .3s;
	width: calc(50% - 20px);
}
.recipe .list article:hover {
	opacity: .8;
}
.recipe .list article:nth-last-child(1),
.recipe .list article:nth-last-child(2) {
	margin-bottom: 0;
}
.recipe .list article a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}
.recipe .list article .text {
	background-color: rgba(0, 0, 0, .45);
	color: #fff;
	padding: 10px 20px;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 280px;
}
.recipe .list article h3 {
	font-size: 24px;
	line-height: 1.4;
	margin-bottom: 10px;
}
.recipe .list article .exp {
	font-weight: bold;
	line-height: 1.6;
}
.recipe .list article .view {
	color: #fff;
	display: table;
	font-size: 18px;
	font-weight: bold;
	padding-right: 50px;
	position: absolute;
	bottom: 15px;
	right: 20px;
}
.recipe .list article .view::after {
	background: url("../img/icon-arrow3.png") no-repeat 0 0 / 100%;
	content: '';
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: ease .3s;
	height: 35px;
	width: 35px;
}
@media screen and (max-width: 1240px) {
	.recipe .list article {
		border-radius: 1vw;
		margin-bottom: 5vw;
		width: calc(50% - 1vw);
	}
	.recipe .list article .text {
		padding: .5vw 1vw;
		width: 25vw;
	}
	.recipe .list article h3 {
		font-size: 2vw;
		line-height: 1.4;
		margin-bottom: .8vw;
	}
	.recipe .list article .exp {
		font-size: 1.4vw;
	}
	.recipe .list article .view {
		font-size: 1.6vw;
		padding-right: 4vw;
		bottom: 1vw;
		right: 1vw;
	}
	.recipe .list article .view::after {
		height: 2.6vw;
		width: 2.6vw;
	}
}
@media screen and (max-width: 780px) {
	.recipe .list article {
		border-radius: 2vw;
		margin-bottom: 8vw;
		width: 100%;
	}
	.recipe .list article:nth-last-child(2) {
		margin-bottom: 8vw;
	}
	.recipe .list article .text {
		padding: 1vw 2vw;
		width: 48vw;
	}
	.recipe .list article h3 {
		font-size: 3.4vw;
		margin-bottom: 2vw;
	}
	.recipe .list article .exp {
		font-size: 2.8vw;
	}
	.recipe .list article .view {
		font-size: 3vw;
		padding-right: 8vw;
		bottom: 1vw;
		right: 2vw;
	}
	.recipe .list article .view::after {
		height: 5vw;
		width: 5vw;
	}
}