@charset"utf-8";

/*base--------------------------------*/

*{
	font-family: 'IBM Plex Sans JP', sans-serif, 'Meiryo', 'メイリオ', 'ヒラギノ 角ゴPro W3', 'Hiragino Kaku Gothic Pro', 'MS PGothic', 'ＭＳ Ｐゴシック';
	font-size: 100%;
	}
.container figcaption {
	font-size: 0.75em;
}

html, body {
	height: 100%;
	overflow: visible;
}

body{
	width: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	overflow-y: scroll;
}

/* よく登場する要素のリセット */

h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, caption, th, td, img, form, div {
	margin: 0;
	padding: 0;
	border: none;
	
	font-weight: normal;
	font-size: 100%;
	text-align: left;
	list-style-type: none;
	font-family: 'IBM Plex Sans JP', 'Meiryo', 'メイリオ', 'ヒラギノ 角ゴPro W3', 'Hiragino Kaku Gothic Pro', 'MS PGothic', 'ＭＳ Ｐゴシック';
	color: #333;
}

/* テキストエリア内文字サイズのブラウザ間での差異をなくす */
textarea { font-size: 100%; }

/* 画像の下にできる隙間をなくす */
img {
	vertical-align: bottom;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.cf:after {
	content: ".";	/* 新しい要素を作る */
	display: block;	/* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
}

.cf {
	min-height: 1px;
}

* html .cf {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}

ruby rt {
	font-size: 50%;
}
@-moz-document url-prefix() {
	ruby rt {
		font-size: 50%;
	}
}



/*common--------------------------------*/

#wrap {
	overflow: hidden;
}

:root {
	--main-color: #E2001A;
	--sub-color: #A83B72;
	--bg-color: #F3F3F3;
	--white: #fff;
	--gray: #707070;
	--yellow: #FFF600;
	--main-hover-color: #FF253E;
	--sub-hover-color: #D2428B;
}

a:link,
a:visited,
a:active {
	color: #333;
	text-decoration: none;
}

a:focus {
	outline:none;
	text-decoration: none;
}

a.underline {
	text-decoration: underline;
}

.hover {
	transition: .3s ease-out;
}

.hover:hover {
	opacity:0.7;
	filter: alpha(opacity=70);
	zoom:1;
	transition: .3s ease-out;
}

.disabled {
	pointer-events: none;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

.tab {
	display: none;
}

.red {
	color: var(--main-color);
}

.yellow {
	color: var(--yellow);
}

.fit {
	width: 100%;
}

sup {
	font-size: 70%;
}

section {
	padding: 80px 0;
}

section:nth-child(even) {
	background-color: var(--bg-color);
}

.content_wrap,
.content_container {
	width: 91.47vw;
	max-width: 1280px;
	box-sizing: border-box;
	margin: 0 auto;
	position: relative;
}

.content_wrap {
	background-color: var(--white);
	border-radius: 40px;
	padding: 60px 7.55% 80px;
}

.content_wrap > .content_container {
	width: 100%;
	max-width: 100%;
}

.plain_txt {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1.8em;
	padding-bottom: 2em;
}

strong,
em,
i {
	font-style: normal;
}

.btn_container a {
	width: 340px;
	height: 70px;
	background-color: var(--main-color);
	border-radius: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: .3s ease-out;
}

.btn_container a:hover {
	background-color: var(--main-hover-color);
	transition: .3s ease-out;
}

.btn_container a::after {
	content: '';
	display: block;
	width: 8px;
	height: 12px;
	background: url('../img/arrow_obj01.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
}

.btn_container a strong {
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: .04em;
	position: relative;
}

.btn_container a strong.search,
.btn_container a strong.cart {
	padding-left: 40px;
}

.btn_container a strong::before {
	content: '';
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.btn_container a strong.search::before {
	width: 23px;
	height: 23px;
	background-image: url('../img/ico_search.svg');
}

.btn_container a strong.cart::before {
	width: 27px;
	height: 25px;
	background-image: url('../img/ico_cart.svg');
}

/*contact_wrap--------------------------------*/

.contact_wrap {
	width: 91.47vw;
	max-width: 1280px;
	margin: 0 auto;
	padding: 32px;
	box-sizing: border-box;
	background-color:  var(--bg-color);
	border-radius: 40px;
}

.contact_list_container {
	width: 760px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contact_list_item .contact_txt {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.6em;
	text-align: center;
	padding-bottom: 8px;
}

.contact_list_item .contact_txt strong {
	color: var(--main-color);
}


/*--------------------------------------*/

/*header*/

/*--------------------------------------*/

header {
	width: 100%;
	height: 120px;
	background-color: var(--white);
	padding: 25px 32px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 999;
}

header .logo_container a {
	display: flex;
	align-items: center;
}

header .logo_container .logo_obj {
	margin-right: 10px;
}

header .logo_container .logo_obj:first-of-type {
	width: 124px;
}

header .logo_container .logo_obj:last-of-type {
	width: 66px;
}

/*mv_wrap--------------------------------*/

.mv_wrap {
	width: 100vw;
	height: calc(100vh - 120px);
	background: url('../img/mv_obj_pc.jpg') center center no-repeat;
	background-size: cover;
	position: relative;
}

.mv_wrap .page_ttl {
	position: absolute;
	top: 50%;
	left: 13.89vw;
	transform: translateY(-50%);
}

.mv_wrap .page_ttl strong {
	font-size: 56px;
	font-weight: 700;
	color: var(--main-color);
	letter-spacing: .04em;
	line-height: 1.4em;
	display: block;
	padding-bottom: 32px;
}

.mv_wrap .page_ttl em {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.8em;
}

.mv_wrap .page_ttl em b {
	color: var(--main-color);
}



/*sec01--------------------------------*/

.sec01 .sec_ttl {
	padding: 16px 0 100px;
	text-align: center;
}

.sec01 .sec_ttl span {
	display: inline-block;
	padding-left: 180px;
	position: relative;
	text-align: center;
}

.sec01 .sec_ttl span::before {
	content: '';
	display: block;
	width: 140px;
	height: 140px;
	background: url('../img/ico_new.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.sec01 .sec_ttl strong {
	display: inline-block;
	font-size: 48px;
	font-weight: 700;
	color: var(--main-color);
	letter-spacing: .04em;
	line-height: 1.4em;
	padding-bottom: 8px;
	margin-bottom: 21px;
	border-bottom: 4px solid var(--main-color);
}

.sec01 .sec_ttl em {
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	color: var(--main-color);
	letter-spacing: .04em;
	line-height: 1.6em;
}

.sec01 .content_container {
	display: flex;
	justify-content: space-around;
}

.sec01 .img_container {
	width: 39.06%;
}

.sec01 .txt_container {
	width: 46.88%;
}

.sec01 .product_ttl_container {
	margin-bottom: 40px;
}

.note_container {
	width: 100%;
	box-sizing: border-box;
	border-radius: 10px;
	padding: 16px 21px 16px 24px;
	background-color: var(--bg-color);
	display: flex;
	justify-content: center;
	align-items: center;
}

.note_container .note_obj {
	width: 56px;
}

.note_container .note_txt {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.6em;
	padding-left: 16px;
}

.sec01 .txt_container .btn_container {
	padding-top: 58px;
	display: flex;
	justify-content: end;
}

.sec01 .txt_container .btn_container a {
	background-color:  var(--sub-color);
}

.sec01 .txt_container .btn_container a:hover {
	background-color: var(--sub-hover-color);
}

.sec01 .contact_wrap {
	margin-top: 40px;
}



/*sec02--------------------------------*/

.sec02 {
	padding-top: 120px;
}

.sec02 .sec_ttl {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.4em;
	text-align: center;
	padding-bottom: 52px;
}

.sec02 .sec_ttl strong {
	color: var(--main-color);
}

.sec02 .content_container {
	display: flex;
	justify-content: space-between;

}

.sec02 .content_container .txt_container {
	width: 53.85%;
}

.sec02 .content_container .img_container {
	width: 45%;
	text-align: center;
}

.sec02 .content_wrap:nth-of-type(1) .content_container .cat_obj {
	width: 53.41%;
}

.sec02 .content_wrap:nth-of-type(2) .content_container .cat_obj {
	width: 80.34%;
}

.sec02 .content_wrap + .content_wrap {
	margin-top: 40px;
}

.sec02 .sec_subttl {
	display: flex;
	align-items: center;
	font-size: 28px;
	font-weight: 700;
	color: var(--main-color);
	letter-spacing: .04em;
	line-height: 1.6em;
	padding-bottom: 32px;
}

.sec02 .sec_subttl strong {
	display: inline-block;
	width: 80px;
	height: 80px;
	border-radius: 100vh;
	background-color: var(--main-color);
	margin-right: 6px;
	font-size: 40px;
	color: var(--white);
	text-align: center;
	line-height: 80px;
}

.sec02 .txt_container .plain_txt {
	padding-bottom: 8px;
}

.sec02 .txt_container .plain_txt.red {
	font-weight: 700;
}

.point_container {
	background-color: var(--bg-color);
	border-radius: 40px;
	padding: 32px 4.62%;
	margin-top: 29px;
}

.point_ttl {
	display: inline-block;
	padding: 14px 36px 14px 59px;
	margin-bottom: 32px;
	background-color: var(--white);
	border-radius: 100vh;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.6em;
	position: relative;
}

.point_ttl::before {
	content: '';
	display: block;
	width: 21px;
	height: 19px;
	background: url('../img/ico_heart.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 29px;
	transform: translateY(-50%);
}

.point_list_container dt + dd {
	padding-top: 16px;
}

.point_list_container dt + dt {
	padding-top: 24px;
}

.point_list_container dd + dt {
	padding-top: 24px;
}

.point_list_container dt span {
	display: inline-block;
	width: 32px;
	height: 32px;
	background-color: var(--white);
	border-radius: 100vh;
	font-size: 16px;
	font-weight: 700;
	color: var(--main-color);
	text-align: center;
	line-height: 32px;
	margin-right: 8px;
}

.point_list_container dt strong {
	font-size: 18px;
	font-weight: 700;
	color: var(--main-color);
	letter-spacing: .04em;
	line-height: 1.78em;
}

.point_list_container dd {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.8em;
}

.sec02 .btn_container {
	padding: 32px 0 11px;
}

.sec02 .btn_container a {
	width: 500px;
	height: 90px;
	justify-content: flex-start;
}

.sec02 .btn_container a span {
	padding-left: 81px;
}

.sec02 .btn_container a::before {
	content: '';
	display: block;
	width: 23px;
	height: 19px;
	background: url('../img/ico_check.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 40px;
	transform: translateY(-50%);
}

.sec02 .btn_container a::after {
	width: 26px;
	height: 10px;
	background-image: url('../img/arrow_obj02.svg');
}

.sec02 .btn_container i {
	width: 130px;
	height: 28px;
	margin: 0 0 7px;
	background-color: var(--white);
	border-radius: 100vh;
	font-size: 16px;
	font-weight: 700;
	color: var(--main-color);
	letter-spacing: .04em;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.sec02 .btn_container i::after {
	content: '';
	display: block;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 7px solid var(--white);
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
}



/*sec03--------------------------------*/

.sec03 .sec_ttl {
	text-align: center;
	box-sizing: border-box;
	padding-bottom: 52px;
}

.sec03 .sec_ttl strong {
	border: 4px solid var(--sub-color);
	border-radius: 100vh;
	box-sizing: border-box;
	padding: 16px 57px 19px;
	font-size: 38px;
	font-weight: 700;
	color: var(--sub-color);
	line-height: 1em;
	letter-spacing: .04em;
}

.product_mv_obj {
	display: block;
	max-width: 91.47vw;
	margin: 0 auto 16px;
}

.note_wrap {
	width: 91.47vw;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.note_wrap .note_container {
	width: 60%;
	margin-right: 10px;
}

.note_wrap .btn_container a {
	background-color: var(--sub-color);
	justify-content: left;
	padding-left: 17.5%;
	box-sizing: border-box;
}

.note_wrap .btn_container a:hover {
	background-color: var(--sub-hover-color);
}

.sec03 .contact_wrap {
	margin-top: 40px;
}

.feature_wrap {
	width: 100%;
	box-sizing: border-box;
	margin-top: 80px;
	border: 4px solid var(--sub-color);
	border-radius: 40px;
	overflow: hidden;
}

.feature_ttl {
	font-size: 32px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: .04em;
	line-height: 1.4em;
	text-align: center;
	background-color: var(--sub-color);
	padding: 33px 33px 32px;
}

.feature_container {
	padding: 32px 6.9% 8px 3.45%;
	display: flex;
	justify-content: space-between;
}

.feature_container .img_container {
	width: 23.88%;
}

.feature_container .txt_container {
	width: 72.41%;
}

.feature_list_container > dt {
	display: flex;
	align-items: center;
}

.feature_list_container dt span {
	display: inline-block;
	width: 80px;
	height: 80px;
	background-color: var(--bg-color);
	border-radius: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.feature_list_container dt span i {
	font-family: "Barlow", sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--sub-color);
	letter-spacing: .04em;
	line-height: 1em;
}

.feature_list_container dt span em {
	font-family: "Barlow", sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: var(--sub-color);
	letter-spacing: .04em;
	line-height: 1em;
}

.feature_list_container dt strong {
	width: calc(100% - 80px);
	box-sizing: border-box;
	font-size: 28px;
	font-weight: 700;
	color: var(--sub-color);
	letter-spacing: .04em;
	line-height: 1.6em;
	padding-left: 20px;
}

.feature_list_container > dd {
	padding-left: 100px;
	border-bottom: 3px dotted var(--gray);
	padding-bottom: 34px;
}

.feature_list_container > dd:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.feature_list_container dd .plain_txt {
	font-size: 18px;
}

.feature_list_container > dd + dt {
	padding-top: 24px;
}

.point_subttl {
	font-size: 28px;
	font-weight: 700;
	color: var(--sub-color);
	letter-spacing: .04em;
	line-height: 1.6em;
	padding-bottom: 16px;
}

.support_list_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.support_list_container dt {
	width: 87px;
	height: 88px;
	border: 2px solid var(--main-color);
	border-radius: 10px;
	margin-right: 10px;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: 500;
	color: var(--main-color);
	letter-spacing: .04em;
	line-height: 1.4em;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.support_list_container dd {
	width: 85%;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.6em;
}

.lineup_container {
	width: 84.38%;
	background-color: var(--sub-color);
	border-radius: 10px;
	padding: 32px 60px 40px;
	margin: 0 auto 60px;
	box-sizing: border-box;
}

.lineup_ttl {
	display: block;
	padding-bottom: 24px;
	text-align: center;
	position: relative;
}

.lineup_ttl span {
	position: relative;
	padding-left: 72px;
}

.lineup_ttl strong {
	font-size: 28px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: .04em;
	line-height: 1.6em;
	border-bottom: 4px solid var(--white);
}

.lineup_ttl span::before {
	content: '';
	display: block;
	width: 52px;
	height: 27px;
	background: url('../img/ico_dish.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.lineup_txt {
	font-size: 18px;
	font-weight: 500;
	color: var(--white);
	letter-spacing: .04em;
	line-height: 1.6em;
}

.product_lead_wrap {
	width: 91.47vw;
	max-width: 960px;
	margin: 0 auto;
	padding: 80px 0;
}

.product_lead_wrap .product_lead_ttl {
	text-align: center;
	padding-bottom: 62px;
}

.product_lead_wrap .product_lead_ttl strong {
	font-size: 32px;
	font-weight: 700;
	color: var(--sub-color);
	letter-spacing: .04em;
	line-height: 1.4em;
	padding-bottom: 14px;
	border-bottom: 4px solid var(--sub-color);
}

.product_lead_wrap .plain_txt {
	font-size: 18px;
}

.product_lead_list_container {
	width: 100%;
	background-color: var(--bg-color);
	border: 3px dotted var(--main-color);
	border-radius: 10px;
	padding: 32px 3.33%;
	box-sizing: border-box;
}

.product_lead_list_container dt {
	font-size: 24px;
	font-weight: 700;
	color: var(--main-color);
	letter-spacing: .04em;
	line-height: 1.6em;
	text-align: center;
	padding-bottom: 8px;
}

.product_lead_list_container dd {
	font-size: 18px;
	font-weight: 500;
	color: var(--main-color);
	letter-spacing: .04em;
	line-height: 1.6em;
	text-align: center;
}

.product_wrap {
	width: 91.47vw;
	max-width: 1240px;
	margin: 0 auto;
	padding-bottom: 80px;
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	justify-content: center;
}

.product_ttl {
	display: block;
	width: 100%;
	margin-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
}

.product_ttl::before {
	content: '';
	display: block;
	width: 100%;
	height: 4px;
	background-color: var(--main-color);
	position: absolute;
	top: 1.1em;
	left: 0;
	z-index: 0;
}

.product_ttl strong {
	font-size: 32px;
	font-weight: 700;
	color: var(--main-color);
	letter-spacing: .04em;
	line-height: 1.4em;
	background-color: var(--white);
	padding-right: 18px;
	position: relative;
	z-index: 1;
}

.product_ttl em {
	font-size: 24px;
	font-weight: 700;
	color: var(--main-color);
	letter-spacing: .04em;
	line-height: 1.4em;
	background-color: var(--white);
	position: relative;
	z-index: 1;
	transform: translateX(-18px);
}

.product_wrap .img_container {
	width: 46.61%;
}

.product_wrap .txt_container {
	width: 43%;
	padding: 30px 0 0 2.5%;
}

.product_wrap .img_container .product_obj01 {
	width: 94.46%;
}

.product_wrap .product_subttl {
	font-size: 26px;
	font-weight: 700;
	color: var(--sub-color);
	letter-spacing: .04em;
	line-height: 1.4em;
	padding-bottom: 24px;
}

.product_wrap .detail_list_item {
	font-size: 16px;
	letter-spacing: .04em;
	line-height: 1.6em;
	text-indent: -1.5em;
	padding-left: 1.5em;
}

.product_wrap .detail_list_item .ico_soindex {
	width: 90px;
	margin-top: 8px;
}

.product_wrap .note_txt {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.6em;
	padding-top: 20px;
}

.product_wrap .txt_wrap {
	width: 100%;
	padding-bottom: 40px;
}

.product_list_container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.product_list_container + .product_list_container {
	padding-top: 80px;
}

.product_list_item {
	width: 27.98%;
}

.product_list_container:nth-of-type(2) .product_list_item {
	width: 18.95%;
}

.product_list_container:last-of-type {
	flex-direction: row-reverse;
}

.liquid_txt_container {
	width: 69.12%;
}

.liquid_txt_container .liquid_ttl {
	font-size: 26px;
	font-weight: 700;
	color: var(--sub-color);
	letter-spacing: .04em;
	line-height: 1.4em;
	padding-bottom: 16px;
}

.liquid_txt_container .liquid_txt {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1.8em;
}



/*sec04--------------------------------*/

.sec04 {
	padding-bottom: 28px;
}

.sec04 .content_wrap {
	padding: 80px 16.67vw;
}

.sec04 .sec_ttl {
	font-size: 34px;
	font-weight: 700;
	color: var(--main-color);
	letter-spacing: .04em;
	line-height: 1.6em;
	padding-left: 64px;
	margin-bottom: 40px;
	position: relative;
}

.sec04 .sec_ttl::before {
	content: '';
	display: block;
	width: 48px;
	height: 48px;
	background: url('../img/ico_ex.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.summary_lead {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.6em;
	padding-bottom: 40px;
}

.summary_obj {
	margin-bottom: 24px;
}

.graph_txt {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	background-color: var(--main-color);
	border-radius: 10px;
	font-size: 20px;
	font-weight: 500;
	color: var(--white);
	letter-spacing: .04em;
	line-height: 1.6em;
	text-align: center;
	margin-bottom: 73px;
}

.guide_container {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	border: 2px solid var(--main-color);
	border-radius: 10px;
	padding: 40px 5% 32px;
	position: relative;
}

.guide_ttl {
	font-size: 18px;
	font-weight: 500;
	color: var(--main-color);
	letter-spacing: .04em;
	line-height: 1.6em;
	position: absolute;
	padding: 2px 24px;
	border: 2px solid var(--main-color);
	border-radius: 100vh;
	background-color: var(--white);
	position: absolute;
	top: 0;
	left: 40px;
	transform: translateY(-50%);
	z-index: 2;
}

.guide_txt {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.6em;
	padding-bottom: 16px;
}

.link_container {
	text-align: right;
}

.guide_container a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	color: var(--main-color);
	padding-right: 42px;
	position: relative;
}

.guide_container a::after {
	content: '';
	display: block;
	width: 26px;
	height: 10px;
	background: url('../img/arrow_obj03.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.sec04 .contact_wrap {
	margin-top: 26px;
}


/*--------------------------------------*/

/*healthcheck*/

/*--------------------------------------*/

.healthcheck .sec01 {
	background-color: var(--bg-color);
}

.check_ttl {
	padding-bottom: 60px;
}

.check_ttl strong {
	display: block;
	font-size: 48px;
	font-weight: 700;
	color: var(--main-color);
	letter-spacing: .04em;
	line-height: 1.5em;
	text-align: center;
	padding-bottom: 16px;
}

.check_ttl em {
	display: block;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1.5em;
	text-align: center;
}

.healthcheck .content_wrap {
	padding: 30px 40px 32px;
}

.check_subttl {
	font-size: 22px;
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1.5em;
	padding-bottom: 17px;
}

.check_subttl span {
	display: inline-block;
	width: 22px;
	height: 22px;
	background: url('../OAcheck/img/ico_checked.svg') center center no-repeat;
	background-size: contain;
	transform: translate(-4px,2px);
}

.healthcheck_list_container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	padding-bottom: 13px;
}

.healthcheck_list_item {
	width: 22.76%;
	border: 4px solid var(--gray);
	background-color: var(--gray);
	border-radius: 10px;
	box-sizing: border-box;
	margin-bottom: 35px;
	overflow: hidden;
	cursor: pointer;
	transition: .3s ease-out;
}

.healthcheck_list_item .img_container {
	width: 100%;
	height: 196px;
	background-color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.healthcheck_list_item .img_container::after {
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	background: url('../healthcheck/img/ico_uncheck.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 24px;
	left: 24px;
}

.healthcheck_list_item:first-child .check_obj {
	transform: translate(3.79%,0);
}

.healthcheck_list_item:nth-child(3) .check_obj {
	transform: translate(3.79%,5.1%);
}

.healthcheck_list_item:nth-child(4) .check_obj {
	transform: translate(3.79%,2.55%);
}

.healthcheck_list_item:nth-child(6) .check_obj {
	transform: translate(3.79%,1.53%);
}

.healthcheck_list_item .txt_container {
	width: 100%;
	height: calc(100% - 196px);
	background-color: var(--gray);
	padding: 8px 20px 9px;
	box-sizing: border-box;
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: .04em;
	line-height: 1.6em;
	transition: .3s ease-out;
}

.healthcheck_list_item:hover {
	border: 4px solid #8F8F8F;
	background-color: #8F8F8F;
	transition: .3s ease-out;
}

.healthcheck_list_item:hover .txt_container {
	background-color: #8F8F8F;
	transition: .3s ease-out;
}


.healthcheck_list_item.checked {
	border: 4px solid var(--main-color);
	background-color: var(--main-color);
}

.healthcheck_list_item.checked .txt_container {
	background-color: var(--main-color);
}

.healthcheck_list_item.checked .img_container::after {
	background: url('../healthcheck/img/ico_checked.svg') center center no-repeat;
}

.healthcheck article .btn_container {
	padding-bottom: 24px;
}

.healthcheck article .btn_container a {
	background-color: var(--bg-color);
	margin: 0 auto;
}

.healthcheck article .btn_container a:hover {
	background-color: #D9D9D9;
}

.healthcheck article .btn_container a::after {
	display: none;
}

.healthcheck article .btn_container a strong {
	color: var(--gray);
}

.consul_ttl {
	font-size: 32px;
	font-weight: 700;
	color: var(--main-color);
	letter-spacing: .04em;
	line-height: 1.5em;
	text-align: center;
	padding-bottom: 16px;
}

.consul_ttl strong {
	border-bottom: 4px solid var(--main-color);
}

.consul_txt {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1.5em;
	text-align: center;
}



@media screen and (min-width: 768px) and (max-width: 1080px) {

	/*sec04--------------------------------*/

	.sec04 .sec_ttl .sp {
		display: block;
	}

	.graph_txt {
		text-align: left;
	}

	.graph_txt br {
		display: none;
	}
}



@media screen and (min-width: 768px) and (max-width: 980px) {

	/*sec03--------------------------------*/

	.lineup_container {
		padding: 32px 6.12vw 40px;
	}

	.lineup_ttl strong {
		font-size: 2.86vw;
	}

	/*--------------------------------------*/
	
	/*healthcheck*/
	
	/*--------------------------------------*/
	
	.healthcheck_list_item {
		width: 48%;
	}
}



@media screen and (min-width: 768px) and (max-width: 920px) {

	/*common--------------------------------*/
	
	.tab {
		display: block;
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
	}

	/*mv_wrap--------------------------------*/
	
	.mv_wrap {
		background: url('../img/mv_obj_pc.jpg') 65% center no-repeat;
	}
	
	.mv_wrap .page_ttl {
		left: 8.53vw;
	}

	/*contact_wrap--------------------------------*/
	
	.contact_wrap {
		padding: 32px 3.48vw;
	}
	
	.contact_list_container {
		width: 82.61vw;
	}

	/*sec03--------------------------------*/
	
	.product_ttl.twolines::before {
		top: 2.5em;
	}
}


@media screen and (min-width: 768px) and (max-width: 860px) {

	/*contact_wrap--------------------------------*/
	
	.contact_list_container .btn_container a {
		width: 39.53vw;
	}
}
