@charset "UTF-8";


/* -------------------------------------------

kv

------------------------------------------- */
.kv {
	background: url(../img/kv-img-1.jpg) no-repeat center right / cover;
	position: relative;
	padding-bottom: 2rem;
}
/* 人気サプリ比較サイト */
.kv > div {
	background: url(../img/bg-txt.png) no-repeat;
	background-size: 100% auto;
	width: 48rem;
	height: 6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 900;
	font-size: 2.8rem;
	padding-bottom: 0.2rem;
}
@media screen and (max-width: 768px) {
	.kv > div {
		width: 30rem;
		height: 3.7rem;
		font-size: 2.0rem;
		padding-right: 1rem;
	}
}
/* h1 */
.kv h1 {
	padding-left: 8rem;
	margin: 4rem 0 3rem 0;
	width: 88rem;
}
.kv h1 span {
	background: url(../img/fukidashi.png) no-repeat;
	background-size: 100% auto;
	width: 56rem;
	height: 9.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.6rem;
	font-weight: 900;
	padding-bottom: 1.8rem;
}
@media screen and (max-width: 768px) {
	.kv h1 {
		padding: 0 2rem;
		margin: 2rem 0 1.5rem 0;
		width: 100%;
	}
	.kv h1 span {
		width: 32rem;
		height: 5.2rem;
		font-size: 2rem;
		padding-bottom: 1.1rem;
	}
}
/* figure */
.kv figure {
	width: 68rem;
	margin-left: 4.2rem;
}
@media screen and (max-width: 768px) {
	.kv figure {
		width: 100%;
		margin-left: 0;
		margin-bottom: 1rem;
	}
}
/* dl */
.kv dl {
	position: absolute;
	right: 0;
	bottom: 3rem;
	width: 44rem;
}
.kv dt img {
	display: block;
	width: 18rem;
	margin-left: 4rem;
	margin-bottom: 1rem;
}
.kv ul li:not(:last-child) {
	margin-bottom: 1rem;
}
.kv ul li {
	background: var(--orange);
	color: #fff;
	font-weight: 900;
	line-height: 1;
	border-radius: 10rem 0 0 10rem;
	font-size: 2rem;
	padding: 1rem 0 1.1rem 2.5rem;
}
.kv ul li strong {
	font-size: 2.8rem;
	font-weight: 900;
}
@media screen and (max-width: 768px) {
	.kv dl {
		position: relative;
		right: auto;
		bottom: auto;
		padding: 0 3rem;
		width: 100%;
	}
	.kv dt img {
		display: block;
		width: 18rem;
		margin: 0 auto 1rem auto;
	}
	.kv ul li:not(:last-child) {
		margin-bottom: 1rem;
	}
	.kv ul li {
		text-align: center;
		border-radius: 10rem;
		font-size: 1.8rem;
		padding: 1rem 0 1.1rem 0;
	}
	.kv ul li strong {
		font-size: 2.4rem;
	}
}



/* -------------------------------------------

search

------------------------------------------- */
.search {
	padding: 3rem 0 6rem 0;
}
@media screen and (max-width: 768px) {
	.search {
		padding: 3rem 2rem 6rem 2rem;
	}
}
.search .wrap {
	border: solid 0.5rem var(--green);
	background: var(--green);
	border-radius: 2.5rem;
	overflow: hidden;
}
/* search-ttl */
.search-ttl {
	background: var(--green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 6.4rem;
	position: relative;
	font-size: 3.2rem;
	font-weight: 900;
	transition: all .3s;
	padding-bottom: 0.2rem;
	position: relative;
}
.search-ttl i {
	font-size: 3.6rem;
	margin-top: 0.4rem;
	margin-right: 1rem
}
@media screen and (max-width: 768px) {
	.search-ttl {
		height: 5.6rem;
		font-size: 2.4rem;
	}
	.search-ttl i {
		font-size: 3rem;
	}
}
.search-ttl:hover {
	cursor: pointer;
	color: var(--yellow);
}
span.cross {
	width: 3.6rem;
	height: 3.6rem;
	border: solid 0.3rem #fff;
	border-radius: 50%;
	position: absolute;
	right: 2rem;
	top: calc(50% - 1.8rem);
}
@media screen and (max-width: 768px) {
	span.cross {
		width: 2.8rem;
		height: 2.8rem;
		right: 1rem;
		top: calc(50% - 1.4rem);
	}
}
span.cross::before,
span.cross::after {
	content: "";
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 10rem;
	transition: all .3s;
}
span.cross::before {
	width: 2rem;
	height: 0.4rem;
}
span.cross::after {
	width: 0.4rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	span.cross::before {
		width: 1.6rem;
	}
	span.cross::after {
		height: 1.6rem;
	}
}
.open span.cross::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.open span.cross::after {
	transform: translate(-50%, -50%) rotate(225deg);
}
/* search-content */
.search-content {
	background: #fff;
	padding: 3.5rem 5rem 4rem 5rem;
}
@media screen and (max-width: 768px) {
	.search-content {
		padding: 2.5rem;
	}
}
/* form */
.search-content form > div {
	display: flex;
	flex-direction: column;
}
.search-content form > div:not(:last-of-type) {
	margin-bottom: 3rem;
}
.search-content form > div:last-of-type {
	margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
	.search-content form > div:last-of-type {
		margin-bottom: 3rem;
	}
}
/* search-item */
.search-item {
	background: url(../img/dot.png) repeat-x center left;
	background-size: auto 0.4rem;
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
	.search-item {
		background: none;
	}
}
.search-item::before {
	content: "";
	width: 2rem;
	height: 2rem;
	background: var(--green);
	border-radius: 50%;
}
.search-item span {
	display: block;
	background: #fff;
	padding-right: 1.5rem;
	line-height: 1;
	font-weight: bold;
	font-size: 2rem;
	letter-spacing: 0.15em;
	padding-left: 1rem;
}
/* search-check */
.search-check {
	display: flex;
	padding-left: 3rem;
}
.search-check > div {
	border: solid 0.3rem #ccc;
	border-radius: 1rem;
	padding: 0.8rem 3rem 0.9rem 1rem;
	box-shadow: inset 0 0.3rem 0.6rem rgba(0,0,0,0.15);
}
.search-check > div:not(:last-of-type) {
	margin-right: 2rem;
}
@media screen and (max-width: 768px) {
	.search-check {
		display: block;
		padding-left: 0;
	}
	.search-check > div {
		width: 100%;
		padding: 0.8rem 1rem 0.9rem 1rem;
	}
	.search-check > div:not(:last-of-type) {
		margin-right: 0;
		margin-bottom: 1rem;
	}
}
/* checkbox */
input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	width: 1.6rem;
	height: 1.6rem;
	border: 2px solid #8e8e8e;
	vertical-align: -0.4rem;
}
input[type="checkbox"]:checked:before {
	content: "";
	position: absolute;
	width: 1.6rem;
	height: 1.6rem;
	top: -0.5rem;
	left: 0.1rem;
	background: url(../img/check.png) no-repeat;
	background-size: 1.6rem;
}
/* submit */
input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-weight: bold;
	color: #fff;
	background: url(../img/ico-search.png) no-repeat center left 7rem;
	background-size: 3rem auto;
	background-color: var(--green);
	width: 28rem;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 6.4rem;
	border-radius: 2.5rem;
	border: none;
	font-size: 2.2rem;
	padding-bottom: 0.2rem;
	letter-spacing: 0.6em;
	padding-left: 3.8rem;
	margin: 0 auto;
	transition: all .3s;
}
input[type="submit"]:hover {
	cursor: pointer;
	background-color: var(--orange);
}
@media screen and (max-width: 768px) {
	input[type="submit"] {
		width: 100%;
	}
}



/* -------------------------------------------

comparison

------------------------------------------- */
.comparison {
	position: relative;
	padding-bottom: 6rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
	.comparison {
		padding: 0 3rem 6rem 2rem;
	}
}
.comparison::before {
	content: "";
	width: 100%;
	height: 20rem;
	background: linear-gradient(to top, var(--beige), transparent);
	position: absolute;
	left: 0;
	bottom: 0;
}
.comparison > * {
	position: relative;
	z-index: 10;
}
/* table */
.table-wrap .table {
	width: 100%;
  border-top: solid 0.15rem #d6d6d6;
  border-right: solid 0.15rem #d6d6d6;
	margin-bottom: 5rem;
  font-size: 100%;
  display: grid;
  grid-template-columns: repeat(6,1fr);
}
@media screen and (max-width: 768px) {
	.table-wrap .table {
		margin-bottom: 0;
    display: flex;
	}
	.table-wrap {
		margin-bottom: 3rem;
	}
}
.table-wrap .column {
  border-left: solid 0.15rem #d6d6d6;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 13;
}
/* common */
.table-wrap .th,
.table-wrap .td {
	width: 100%;
	border-bottom: solid 0.15rem #d6d6d6;
	padding: 1.5rem 1.0rem 1.6rem 1.0rem;
	font-size: 62.5%;
	line-height: 1.4;
  vertical-align: middle;
}
.table-wrap .th {
	background: var(--green);
	color: #fff;
  font-size: 100%;
	vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-wrap .td {
  display: flex;
	flex-direction: column;
	align-items: center;
  justify-content: center;
}
/* thead */
.table-wrap .th.thead {
	background: #fff;
	color: #000;
	font-size: 125%;
	font-weight: 900;
}
.table-wrap .th.thead span {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.table-wrap .th.thead span img {
	width: 1.25em;
	margin-right: 0.5rem;
	margin-top: 0.4rem;
}
.table-wrap .th.thead span i {
	margin-top: 0.5rem;
}
.table-wrap .th.thead.no1 {
	color: var(--red);
}
.table-wrap .th.thead.no1 img {
	width: 1.25em;
	margin-top: 0.2rem;
}
/* item */
.td.table-item span {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: bold;
	text-align: center;
	font-size: 68.75%;
}
/* 評価 */
.table-wrap .td span {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	font-size: 100%;
}
.table-wrap .td span img {
	width: 100%;
  height: 10rem;
	margin-bottom: 1rem;
  object-fit: contain;
}
.table-wrap .column:nth-child(2) .td {
  background-color: rgba(255, 237, 237, 1);
}
.table-wrap .column:nth-child(2) .td.table-item {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .table-wrap {
    padding-left: 70px;
    position: relative;
    overflow: hidden;
  }
  .table .swiper-slide {
    transition: opacity 0.3s ease;
  }
  .table .swiper-slide-prev {
    opacity: 0;
  }
  .table-wrap .column {
    border-top: solid 0.15rem #d6d6d6;
    border-right: solid 0.15rem #d6d6d6;
  }
  .table-wrap .column.column-header {
    width: 70px;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .table-wrap .th,
  .table-wrap .td {
    height: 200px;
  }
  .table-wrap .th {
    font-size: 85%;
  }
  .table-wrap .th.thead {
    font-size: 100%;
  }
  .table-wrap .th.row1 {
    height: 40px;
  }
  .table-wrap .td span img {
    height: 4rem;
  }
}
/* 調査概念 */
.comparison dl {
	border: solid 0.5rem #d6d6d6;
	background: #fff;
	border-radius: 2.5rem;
	color: #534232;
	padding: 2.5rem 6rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.comparison dl * {
	width: 100%;
}
.comparison dl dt {
	font-weight: bold;
	font-size: 2.4rem;
	border-bottom: solid 0.15rem #534232;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
	text-align: center;
}
.comparison dl dd {
	display: flex;
	padding: 0 2.5rem;
}
.comparison dl dd > * {
	width: 50%;
}
.comparison dl dd li:not(:last-child) {
	margin-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
	.comparison dl {
		padding: 2.5rem;
	}
	.comparison dl dd {
		display: block;
		padding: 0;
	}
	.comparison dl dd > * {
		width: 100%;
	}
	.comparison dl dd li:not(:last-child) {
		margin-bottom: 1.2rem;
	}
	.comparison dl dd ul:nth-of-type(1) {
		margin-bottom: 1.2rem;
	}
}



/* -------------------------------------------

item

------------------------------------------- */
.item {
	padding: 8rem 0;
}
@media screen and (max-width: 768px) {
	.item {
		padding: 6rem 2rem;
	}
}
.item::after {
	content: "";
	width: 100%;
	height: 20rem;
	background: linear-gradient(to top, var(--beige), transparent);
	position: absolute;
	left: 0;
	bottom: 0;
}
.item h2 strong {
	font-weight: 900;
	background: linear-gradient(to top, #fae632 40%, transparent 40%);
	font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
	.item h2 strong {
		font-size: 2.0rem;
	}
}
/* item-ranking */
.item-ranking > li {
	background: #fff;
	border: solid 0.5rem #d6d6d6;
	border-radius: 2.5rem;
	padding: 4rem 6rem;
}
.item-ranking > li:not(:last-child) {
	margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
	.item-ranking > li {
		padding: 2.5rem 3rem;
	}
	.item-ranking > li:not(:last-child) {
		margin-bottom: 2rem;
	}
}
/* h3 */
.item-ranking h3 {
	position: relative;
	margin-bottom: 3rem;
}
/*.item-ranking h3::before {
	content: "";
	width: 100%;
	height: 2.4rem;
	background: #ddd6c6;
	position: absolute;
	left: 0;
	top: calc(50% - 1.2rem);
	margin-top: 0.2rem;
}*/
.item-ranking h3 span {
	background-color: #fff;
	position: relative;
	z-index: 10;
	font-size: 3.2rem;
	font-weight: 900;
	padding-right: 2rem;
}
/*.item-ranking li h3.no1::before {
	background: var(--orange);
}*/
/* item-content */
.item-content > div {
	display: flex;
	margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
	.item-content > div {
		display: block;
	}
}
.item-content > div > figure {
	width: 35%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.item-content > div > figure img {
	width: 75%;
	height: auto;
}
.item-content > div > div {
	width: 60%;
}
@media screen and (max-width: 768px) {
	.item-content > div > figure {
		width: 100%;
		margin-bottom: 2rem;
	}
	.item-content > div > figure img {
		width: 50%;
	}
	.item-content > div > div {
		width: 100%;
	}
}
.item-content > div > div > dl > dt {
	font-size: 2.4rem;
	font-weight: 900;
}
.item-content > div > div > dl > dd:nth-of-type(1) {
	margin: 1rem 0 2.5rem 0;
}
/* item-price */
.item-price {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.item-price li {
	width: 49%;
}
.item-price li:nth-child(n + 3) {
	margin-top: 2rem;
}
.item-price li dl {
	display: flex;
	font-weight: bold;
	line-height: 1.3;
	font-size: 1.5rem;
}
.item-price li dl dt {
	width: 40%;
	min-height: 6rem;
	color: #fff;
	background: var(--green);
	display: flex;
	justify-content: center;
	align-items: center;
}
.item-price li dl dd {
	width: 60%;
	background: #d6d6d6;
	padding: 1rem 0 1.2rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.item-price {
		display: block;
	}
	.item-price li {
		width: 100%;
	}
	.item-price li:not(:last-child) {
		margin-bottom: 1rem;
	}
	.item-price li:nth-child(n + 3) {
		margin-top: 0;
	}
	.item-price li dl dt {
		width: 35%;
		height: auto;
	}
	.item-price li dl dd {
		width: 65%;
	}
	.item-price li dl dd br {
		display: none;
	}
}
/* item-link */
.item-link {
	display: flex;
	justify-content: space-between;
	margin-bottom: 6rem;
}
.item-link li {
	width: 48%;
}
.item-link li a {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2.5rem;
	height: 6.4rem;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	background: var(--green);
	padding-bottom: 0.2rem;
}
.item-link li:nth-child(2) a {
	background: var(--orange);
}
@media screen and (max-width: 768px) {
	.item-link {
		display: block;
		margin-bottom: 3rem;
	}
	.item-link li {
		width: 100%;
	}
	.item-link li:not(:last-child) {
		margin-bottom: 1rem;
	}
}
/* item-comment */
.item-comment {
	margin-bottom: 4rem;
}
.item-comment .heading-2 {
	background: var(--beige);
	color: #000;
}
.item-comment > div {
	display: flex;
	padding: 0 3rem;
	margin-top: -1.5rem;
}
.item-comment > div > figure {
	width: 30%;
}
.item-comment > div > p {
	width: 70%;
	padding-left: 2rem;
	padding-top: 3.5rem;
}
@media screen and (max-width: 768px) {
	.item-comment {
		margin-bottom: 3rem;
	}
	.item-comment > div {
		display: block;
		padding: 0;
		margin-top: 1rem;
	}
	.item-comment > div > figure {
		width: 60%;
		margin: 0 auto 1rem auto;
	}
	.item-comment > div > p {
		width: 100%;
		padding: 0;
	}
}
/* item-voice */
.item-voice-content {
	padding: 2rem 3rem 0 3rem;
}
@media screen and (max-width: 768px) {
	.item-voice-content {
		padding: 2rem 0 0 0;
	}
}
.item-voice-content ul li:not(:last-child) {
	margin-bottom: 3rem;
	padding-bottom: 3rem;
	background: url(../img/dot.png) repeat-x center bottom;
	background-size: auto 0.4rem;
}
@media screen and (max-width: 768px) {
	.item-voice-content ul li:not(:last-child) {
		margin-bottom: 1.5rem;
		padding-bottom: 2rem;
	}
}
.item-voice-content li {
	position: relative;
}
.item-voice-content li dl dt {
	display: flex;
	flex-direction: column;
	margin-bottom: 1.5rem;
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: 900;
}
.item-voice-content li dl dt span {
	font-weight: 500;
	font-size: 1.6rem;
}
.item-voice-content .star {
	position: absolute;
	right: 0;
	top: 0;
	color: var(--yellow);
}
@media screen and (max-width: 768px) {
	.item-voice-content .star {
		position: relative;
		right: auto;
		top: auto;
		margin-bottom: 0.5rem;
	}
}
.item-voice-ttl:hover {
	cursor: pointer;
	color: var(--yellow);
}
/* item-ranking-other */
.item-ranking-other {
	margin-top: 6rem;
}
.item-ranking-other.heading-2 {
	border-radius: 2.5rem;
	margin-bottom: 2rem;
	color: #000;
	background: #fff;
	border: solid 0.5rem #d6d6d6;
	height: 8rem;
}
.item-ranking-other.heading-2 span.cross {
	border: solid 0.3rem #000;
}
.item-ranking-other.heading-2 span.cross::before,
.item-ranking-other.heading-2 span.cross::after {
	background: #000;
}
.item-ranking-other.heading-2:hover {
	background: #d6d6d6;
	cursor: pointer;
}
@media screen and (max-width: 768px) {
	
}



/* -------------------------------------------

column

------------------------------------------- */
.column {
  overflow: hidden;
}
.column p {
	text-align: center;
	margin: 3rem 0;
	font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
	.column p {
		margin: 2rem 0 2.2rem 0;
		font-size: 1.6rem;
	}
}
.column .wrap {
	background: var(--bg-green);
	padding: 4rem 0 13rem 0;
	position: relative;
}
@media screen and (max-width: 768px) {
	.column .wrap {
		padding: 3rem 2rem 12rem 2rem;
	}
}
.columnSwiper-slide {
	height: auto!important;
	align-self: stretch;
}
.columnSwiper-slide a {
	height: 100%;
	border: solid 0.4rem #d6d6d6;
	background: #fff;
	border-radius: 2rem;
	padding: 2.5rem;
	display: block;
}
.columnSwiper-slide figure {
	width: 100%;
	padding-top: 58.33%;
	display: block;
	position: relative;
}
.columnSwiper-slide figure img {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
.columnSwiper-slide span {
	display: block;
	margin-top: 1rem;
	font-weight: bold;
	font-size: 2rem;
	line-height: 1.4;
	text-align: center;
}
.swiper-button-prev,
.swiper-button-next {
    width: 16rem;
    height: 5.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: 4rem;
    position: absolute;
    z-index: 999;
    transition: all .3s;
	background: var(--green);
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	border-radius: 2rem;
	padding-bottom: 0.2rem;
}	
.swiper-button-prev i,
.swiper-button-next i {
	font-size: 3.2rem;
	margin-top: 0.2rem;
}
.swiper-button-prev i {
	margin-right: 1rem;
}
.swiper-button-next i {
	margin-left: 1rem;
}
.swiper-button-prev {
    left: 35%;
}	
.swiper-button-next  {
    right: 35%;
}
@media screen and (max-width: 768px) {
	.swiper-button-prev {
		left: 2rem;
	}	
	.swiper-button-next  {
		right: 2rem;
	}
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    cursor: pointer;
    opacity: 0.5;
}



/* -------------------------------------------

target

------------------------------------------- */
.target {
	padding: 8rem 0;
}
@media screen and (max-width: 768px) {
	.target {
		padding: 6rem 2rem;
	}
}
.target .wrap {
	display: flex;
	padding: 0 3rem;
}
.target .wrap figure {
	width: 35%;
}
@media screen and (max-width: 768px) {
	.target .wrap {
		display: block;
		padding: 0;
	}
	.target .wrap figure {
		width: 100%;
	}
}
.target .wrap ul {
	width: 65%;
	padding-left: 2rem;
	margin-top: -1rem;
}
@media screen and (max-width: 768px) {
	.target .wrap ul {
		width: 100%;
		padding-left: 0;
		margin-top: 0;
	}
}
.target .wrap ul li {
	background: url(../img/dot.png) repeat-x left bottom;
	background-size: auto 0.4rem;
	padding: 1.2rem 0 1.5rem 1.2rem;
	font-size: 2rem;
	font-weight: bold;
	display: flex;
	align-items: center;
}
.target .wrap ul li::before {
	content: "";
	width: 2.2rem;
	height: 2.2rem;
	background: url(../img/ico-check.png) no-repeat;
	background-size: 2.2rem;
	margin-right: 1rem;
}



/* -------------------------------------------

ingredient

------------------------------------------- */
.ingredient {
	padding: 0 0 4rem 0;
}
@media screen and (max-width: 768px) {
	.ingredient {
		padding: 0 2rem 4rem 2rem;
	}	
}
.ingredient .wrap {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	padding: 0 3rem;
	margin-bottom: 4rem;
}
.ingredient .wrap > * {
	width: 48%;
}
@media screen and (max-width: 768px) {
	.ingredient .wrap {
		display: block;
		padding: 0;
		margin-bottom: 3rem;
	}
	.ingredient .wrap > * {
		width: 100%;
	}
	.ingredient .wrap figure {
		margin-bottom: 2rem;
	}
}
.ingredient p {
	width: 80rem;
	margin: 0 auto;
}
.ingredient p strong {
	background:linear-gradient(transparent 60%, #ff6 60%);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
	.ingredient p {
		width: 100%;
	}
}
.ingredient dl dt {
	border: solid 0.15rem var(--red);
	text-align: center;
	padding: 0.7rem 0 1.2rem 0;
	color: var(--red);
	font-weight: bold;
	font-size: 2.4rem;
	line-height: 1;
	margin-bottom: 2rem;
}
.ingredient dl dt strong {
	font-size: 4.4rem;
	vertical-align: -0.6rem;
}
.ingredient dl dd ul li {
	background: url(../img/dot.png) repeat-x left bottom;
	background-size: auto 0.4rem;
	padding: 1.2rem 0 1.5rem 1.2rem;
	font-size: 2.8rem;
	font-weight: bold;
	display: flex;
	align-items: center;
}
.ingredient dl dd ul li img {
	width: 4rem;
	margin-right: 1rem;
}
.ingredient dl dd ul li:last-child::before {
	content: "";
	width: 4rem;
	height: 4rem;
	margin-right: 1rem;
	box-sizing: border-box;
	border: solid 1rem #fff;
	margin-top: 0.3rem;
}
.ingredient figcaption {
	font-size: 1rem;
	margin-top: 1.2rem;
}



/* -------------------------------------------

bnr

------------------------------------------- */
.bnr {
	margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
	.bnr {
		padding: 0 2rem;
	}
}



/* -------------------------------------------

item

------------------------------------------- */
/* h1 */
.item-low h1 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4rem;
	line-height: 1;
	font-size: 3.2rem;
	font-weight: 900;
	background: url(../img/ico-crown-4.png) no-repeat center top;
	background-size: 5rem auto;
	padding-top: 4.5rem;
}
.item-low h1::before,
.item-low h1::after {
	content: "";
	width: 42%;
	height: 2.0rem;
	background: #d6d6d6;
	margin-top: 0.4rem;
}
@media screen and (max-width: 768px) {
	.item-low h1::before,
	.item-low h1::after {
		width: 35%;
		margin-top: 0.6rem;
	}
}
.item-low h1.no1 {
	background: url(../img/ico-crown-1.png) no-repeat center top;
	background-size: 5rem auto;
}
.item-low h1.no1::before,
.item-low h1.no1::after {
	background: var(--orange);
}
/* item-detail */
.item-detail {
	margin-bottom: 6rem;
}
.item-detail > div {
	display: flex;
	margin-bottom: 3rem;
}
.item-detail > div > figure {
	width: 40%;
	display: flex;
	justify-content: center;
}
.item-detail > div > figure img {
	width: 70%;
	height: auto;
}
.item-detail > div > dl {
	width: 60%;
}
.item-detail > div > dl dt {
	font-weight: 900;
	font-size: 2.4rem;
	margin-bottom: 1.5rem;
}
.item-detail a {
	width: 32rem;
	margin: 0 auto;
}
.item-detail span {
	display: block;
	margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
	.item-detail > div {
		display: block;
		margin-bottom: 3rem;
	}
	.item-detail > div > figure {
		width: 100%;
		margin-bottom: 2rem;
	}
	.item-detail > div > figure img {
		width: 60%;
	}
	.item-detail > div > dl {
		width: 100%;
	}
	.item-detail a {
		width: 100%;
	}
	.item-detail span {
		margin-bottom: 4rem;
	}
}
.low .item-voice {
	margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
	.low .item-voice {
		margin-bottom: 3rem;
	}
}



/* -------------------------------------------

column

------------------------------------------- */
.column-main {
	margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
	.column-main {
		margin-bottom: 4rem;
	}
}
/* h1 */
.column-low h1 {
	font-weight: 900;
	font-size: 4.8rem;
	color: var(--green);
	text-align: center;
	margin: 3rem 0 3.2rem 0;
	line-height: 1.3;
}
@media screen and (max-width: 768px) {
	.column-low h1 {
		font-size: 3.6rem;
	}
}
/* column-detail */
.column-detail {
	margin-bottom: 6rem;
}
.column-detail h2 {
	min-height: 6.4rem;
	padding-bottom: 0.2rem;
	background-color: var(--beige);
	margin-bottom: 0;
	color: #000;
	display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    font-weight: bold;
    transition: all .3s;
    position: relative;
}
.column-detail h2:not(:first-child) {
	margin-top: 6rem;
}
.column-detail h2:not(:first-of-type)::before {
	content: '';
	width: 100%;
	height: 6rem;
	background: url(../img/dot.png) repeat-x left top;
	background-size: auto 0.4rem;
	position: absolute;
	top: -6rem;
	left: 0;
}
.column-detail h2.summary {
	background-color: var(--green);
	color: #fff;
}
.column-detail figure {
	padding: 4rem 0 6rem;
}
.column-detail p {
	padding: 4rem 3rem 6rem 3rem;
	font-size: 1.8rem;
}
.column-detail > p:first-child {
	border: solid 0.3rem var(--green);
	border-radius: 2.5rem;
	background: #fff;
	padding: 3.3rem 6rem 3rem 6rem;
	font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
	.column-detail > p:first-child {
		padding: 2.5rem 3rem 2.6rem 3rem;
		font-size: 1.6rem;
	}
}
.column-detail a {
	color: var(--green);
	text-decoration: underline;
	word-break: break-all;
}
.column-detail a:hover {
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.column-detail {
		margin-bottom: 4rem;
	}
	.column-detail li {
		margin-bottom: 3rem;
	}
	.column-detail li p {
		padding: 2rem 1.5rem 3rem 1.5rem;
		font-size: 1.6rem;
	}
	.column-detail figure {
		padding: 4rem 0 0;
	}
}
/* column-summary */
.column-summary h2 {
	margin-bottom: 3rem;
}
.column-summary p {
	padding: 4rem 3rem 6rem 3rem;
	font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
	.column-summary h2 {
		margin-bottom: 2rem;
	}
	.column-summary p {
		padding: 2rem 1.5rem 3rem 1.5rem;
		font-size: 1.6rem;
	}
}
