@charset "utf-8";

/* ******************************************************************

	--style.css--

	1. Style setting
		1-1. Base styles
		1-2. Structure styles

	2. Layout setting
		2-1. Header styles
			・2-1_1. SpNavi styles
		2-2. GlobalNavi styles
		2-3. Main styles
		2-4. SideBar styles
		2-5. Footer styles
		2-6. bnrarea styles
		2-7. Page styles

	99. SP

	100. WP style

****************************************************************** */

/*==================================================================
	1. Base setting
===================================================================*/
/* ------------------------------------------------------------------
	1-1. Base styles
-------------------------------------------------------------------*/
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #393939;
	min-width: 1200px;
	font-weight: 400;
	/* Noto Sans JP Regular */
	position: relative;
	/*-webkit-text-size-adjust: none;*/
}

a {
	color: #2AACB8;
	text-decoration: none;
	outline: none;
}

a:hover {
	text-decoration: underline;
}

a:focus {
	outline: none;
}

/* 251106_追加 */

a.underline {
	text-decoration: underline;
}

a.underline:hover {
	text-decoration: none;
}

@font-face {
	font-family: 'DIN Alternate Bold';
	font-style: normal;
	font-weight: normal;
	src: local('DIN Alternate Bold'), url('../webfonts/DINAlternate-Bold.woff') format('woff');
}

/* ------------------------------------------------------------------
	1-2. Structure styles
-------------------------------------------------------------------*/
.container {}

/*.main {
	padding: 50px 0;
}
.mv+.main{
	padding: 0;
}*/
.wrapper {
	width: 1200px;
	margin: 0px auto;
}

.inner {
	padding: 0 90px;
}

#main {
	width: auto;
	margin: 0 auto;
}

/* welcartのstyle上書き */
#main.one-column,
#main.two-column {
	width: 1000px;
	padding: 60px 0;
}

/* welcartのstyle上書き */

/*==================================================================
	2. Layout setting
===================================================================*/

/* ------------------------------------------------------------------
	2-1. Header styles
-------------------------------------------------------------------*/
header#masthead {
	margin-bottom: 0;
	border-bottom: none;
}

/* welcartのstyle上書き */
#header {
	/*background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));*/
	background: #FFF;
	box-shadow: 0px 5px 5px -5px rgba(0, 0, 0, 0.1);
	position: relative;
	/*
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2;
*/
}

#header .wrapper {
	display: flex;
	align-items: center;
}

.logo img {
	max-height: 50px;
}

.logo_catch {
	margin-left: 10px;
	font-family: 'Noto Serif JP', serif;
	font-size: 11px;
}

.header_nav {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-left: auto;
	font-weight: 500;
}

.header_nav a {
	color: #1D2B59;
	transition: all .3s ease;
}

.header_nav a:hover {
	color: #2AACB8;
	text-decoration: none;
}

.header_contact {
	display: none;
}

/* カートボタン */
.header_tool {
	margin: 0 30px;
	display: flex;
	gap: 20px;
	font-size: 18px;
}

.header_tool a {
	color: #1D2B59;
}

.header_tool_item.cart {
	position: relative;
}

.total-quant {
	position: absolute;
	left: 20px;
	top: -3px;
	background: #2AACB8;
	border-radius: 100vh;
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	padding: 5px;
	text-align: center;
	font-size: 12px;
	color: #FFF;
	line-height: 1;
}

/* ------------------------------------------------------------------
	2-1_1. SpNavi styles
-------------------------------------------------------------------*/
.sp_nav_wrap,
.hamburger {
	display: none;
}

/* ------------------------------------------------------------------
	2-2. GlobalNavi styles
-------------------------------------------------------------------*/
/*
.gnav {
	background: #990033;
	text-align: center;
}
.gnav .wrapper {
	background: #FFF;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}
.gnav_main {
	background: #EEE;
	margin-right: 10px;
	width: calc( ( 100% - 40px ) / 5 );
}
.gnav_main:last-child {
	margin-right: 0;
}
.gnav_main:hover {
	background: #990033;
	color: #FFF;
}
.gnav_main > a {
	display: block;
	padding: 18px 0 15px 0;
	line-height: 1;
	font-weight: bold;
	color: inherit;
	text-decoration: none;
	transition: none;
}
.gnav_main .en {
	font-size: 10px;
	font-weight: normal;
}

.gnav_sub {
	background: #990033;
	padding: 10px 160px;
	position: absolute;
	top: 65px;
	left: 0;
	width: 100%;
	-webkit-transition: all .3s;
	transition: all .3s;
	visibility: hidden;
	opacity: 0;
	z-index: 11;
}
.gnav_main:hover .gnav_sub {
	top: 65px;
	visibility: visible;
	opacity: 1;
}
.gnav_sub li {
	display: inline-block;
	margin: 10px 30px;
	text-align: center;
	font-size: 14px;
}
.gnav_sub a {
	color: #FFF;
	text-decoration: none;
	position: relative;
}
.gnav_sub a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgba(255,255,255,1);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
}
.gnav_sub a:hover::after,
.gnav_sub a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(5px);
	-moz-transform: translateY(5px);
	transform: translateY(5px);
}

.gnav.fixed {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 11;
}
*/

/* ------------------------------------------------------------------
	2-3. Main styles
-------------------------------------------------------------------*/
.block {
	padding: 80px 0;
}

.page_head {
	text-align: center;
	margin-bottom: 40px;
}

.page_title {
	display: inline-block;
	margin-bottom: 40px;
	font-family: 'Noto Serif JP', serif;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	color: #1D2B59;
	position: relative;
}

.page_title::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(to right, #20b2aa, #1e3a8a);
}


/* ------------------------------------------------------------------
	2-5. Footer styles
-------------------------------------------------------------------*/
.footer {
	background: #1D2B59;
	padding: 20px 0;
	color: #FFF;
}

.footer .wrapper {
	display: flex;
	flex-direction: row-reverse;
}

.fnav {
	/*border-bottom: 1px solid #c4c4c4;*/
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-left: auto;
	/*padding-bottom: 20px;*/
	/*margin-bottom: 20px;*/
	font-size: 14px;
}

.fnav a {
	text-decoration: none;
	color: inherit;
}

.fnav a:hover {
	text-decoration: underline;
}

/*.fnav_item a {
	text-decoration: none;
	color: inherit;
}
.fnav_item a:hover {
	text-decoration: underline;
}*/
.copyright {
	text-align: center;
	padding: 0;
	/* welcartのstyle上書き */
	font-size: 11px;
}

/* ------------------------------------------------------------------
	2-7. Page styles
-------------------------------------------------------------------*/

/* ▼▼▼ここに各コーダーが別途作成したCSS内のスタイルをドッキングしていく▼▼▼ */
/* ------------------------------------
	404系ページここから
------------------------------------*/
.note_page {
	padding: 15% 0;
	text-align: center;
}

/* ------------------------------------
	404系ページここまで
------------------------------------*/
/* ------------------------------------
	TOP_ここから
------------------------------------*/
.mv {
	width: 100%;
	height: 600px;
	display: flex;
	background: #999;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.mv::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.mv::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: none;
	/* JSで背景を制御するため固定画像を解除 */
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	opacity: 0;
	transform: scale(1.2);
	animation: mvAnime forwards 2s 1 ease 0.5s normal;
}

.mv_wrap {
	width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	color: #fff;
}

.mv_title {
	font-size: 52px;
	font-family: serif;
	line-height: 1.5;
}

.mv_text {
	margin-top: 40px;
	font-size: 18px;
}

.mv_btn {
	margin-top: 40px;
}

.mv_wrap {
	position: relative;
	z-index: 2;
	/* テキストを半透明白の上に配置 */
}

@keyframes mvAnime {
	0% {
		opacity: 0;
		transform: scale(1.2);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

/* Information */
.topics {
	background: #858b9f;
	padding: 15px 0;
	color: #FFF;
}

.topics .wrapper {
	display: flex;
	align-items: center;
	gap: 30px;
}

.topics_heading {
	border: 1px solid #FFF;
	padding: 2px 15px;
	font-family: 'Noto Serif JP', serif;
	font-size: 11px;
}

.topics_item {
	display: flex;
	gap: 20px;
	font-size: 12px;
}

.topics_item a {
	color: #FFF;
}

/* セルバイオについて */
.top_about {
	display: flex;
	gap: 40px;
	margin-top: 50px;
}

.top_about_item {
	background: #FFF;
	box-shadow: 0 8px 32px rgba(31, 38, 135, .1);
	border-radius: 20px;
	width: 33.3%;
	padding: 20px;
}

.top_about_head {
	display: flex;
	align-items: center;
	gap: 10px;
}

.top_about_icon {
	width: 100px;
}

.top_about_title {
	flex: 1;
	font-size: 18px;
}

.top_about_body {
	margin-top: 15px;
}

/* 製品情報 */
.top_product {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 50px;
}

.top_product_img {
	width: 40%;
	text-align: center;
}

.top_product_text {
	flex: 1;
	font-size: 18px;
}

.top_product_info {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 40px;
	font-size: 12px;
}

.top_secretome {
	display: flex;
	gap: 40px;
	margin-top: 50px;
}

.top_secretome_item {
	background: #f9f9f9;
	box-shadow: 0 8px 32px rgba(31, 38, 135, .1);
	border-radius: 20px;
	width: 33.3%;
	padding: 20px;
	text-align: center;
}

.top_secretome_title {
	font-size: 18px;
}

.top_secretome_img {
	margin: 15px 0;
}

.top_secretome_text {
	text-align: left;
}

/* 会社情報 */
.block_top_company {
	background: url(../img/bg_company.jpg) no-repeat center center;
	background-size: cover;
	padding: 40px 0;
	color: #FFF;
}

.block_top_company .heading_en {
	text-align: left;
}

.block_top_company .heading_1 {
	color: #FFF;
}

.top_company {
	display: flex;
	align-items: center;
	gap: 40px;
}

.top_company_item {
	width: 50%;
}

.top_company_title {
	margin-bottom: 15px;
	font-size: 30px;
	font-weight: 700;
}

.top_company_history>li {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.top_company_history .time {
	flex: 0 0 85px;
}

.top_company_history .desc {
	flex: 1;
}

.top_company_history>li:not(:first-child) {
	border-top: 1px dotted #c4c4c4;
	padding-top: 15px;
	margin-top: 15px;
}

.top_company_btn {
	margin-top: 60px;
	text-align: center;
	font-size: 20px;
}

.top_company_btn a {
	width: 450px;
}

@media only screen and (max-width: 640px) {
	.mv {
		height: 120vw;
	}

	.mv_wrap {
		width: 92%;
	}

	.mv_title {
		font-size: 9.0625vw;
	}

	.mv_text {
		margin-top: 5%;
		font-size: 4.6875vw;
	}

	.mv_btn {
		display: none;
		margin-top: 5%;
	}

	/* Information */
	.topics {
		padding: 3% 0;
	}

	.topics .wrapper {
		gap: 3.125vw;
	}

	.topics_heading {
		padding: 1px 5px;
		font-size: 2.5vw;
	}

	.topics_item {
		display: block;
		font-size: 2.8125vw;
	}

	/* セルバイオについて */
	.top_about {
		flex-direction: column;
		align-items: flex-start;
		gap: 3.125vw;
		margin-top: 5%;
	}

	.top_about_item {
		width: 100%;
		padding: 8%;
	}

	.top_about_head {
		flex-direction: column;
		gap: 3.125vw;
	}

	.top_about_icon {
		width: 32%;
	}

	.top_about_title {
		text-align: center;
		font-size: 4.6875vw;
	}

	.top_about_body {
		margin-top: 3%;
	}

	/* 製品情報 */
	.top_product {
		flex-direction: column;
		align-items: flex-start;
		gap: 3.125vw;
		margin-bottom: 15%;
	}

	.top_product_img {
		width: 80%;
		margin: 5% auto 0 auto;
	}

	.top_product_text {
		font-size: 4.6875vw;
	}

	.top_product_info {
		gap: 3.125vw;
		margin-top: 5%;
		font-size: 3.125vw;
	}

	.top_secretome {
		flex-direction: column;
		align-items: flex-start;
		gap: 3.125vw;
		margin-top: 5%;
	}

	.top_secretome_item {
		width: 100%;
		padding: 8%;
	}

	.top_secretome_title {
		font-size: 4.6875vw;
	}

	.top_secretome_img {
		margin: 5% 0;
	}

	/* 会社情報 */
	.block_top_company {
		padding: 10% 0;
	}

	.top_company {
		flex-direction: column;
		align-items: flex-start;
		gap: 12.5vw;
	}

	.top_company_item {
		width: 100%;
	}

	.top_company_title {
		margin-bottom: 5%;
		font-size: 6.25vw;
	}

	.top_company_history {
		font-size: 3.75vw;
	}

	.top_company_history>li {
		gap: 2vw;
	}

	.top_company_history .time {
		flex: 0 0 20vw;
	}

	.top_company_history>li:not(:first-child) {
		padding-top: 3%;
		margin-top: 3%;
	}

	.top_company_btn {
		margin-top: 10%;
		font-size: 4.375vw;
	}

	.top_company_btn a {
		width: 90%;
	}


}

/* ------------------------------------
	TOP_ここまで
------------------------------------*/

/* ------------------------------------
	お問い合わせ_ここから
------------------------------------*/
.form_list {
	display: flex;
	margin-bottom: 30px;
}

.form_item {}

.form_item.subject {
	width: 300px;
	font-weight: 700;
}

.form_item.body {
	flex: 1;
	word-break: break-all;
}

.form_agree {
	text-align: center;
	margin-top: 50px;
}

@media only screen and (max-width: 640px) {
	.form_list {
		flex-direction: column;
		gap: 10px;
		margin-bottom: 10%;
	}

	.form_item.subject {
		width: 100%;
	}

	.form_agree {
		margin-top: 10%;
	}

	.form_agree label {
		text-align: left;
	}

}

/* ------------------------------------
	お問い合わせ_ここまで
------------------------------------*/

/* ------------------------------------
	お知らせ_ここから
------------------------------------*/
.post_item {
	border-bottom: 1px dotted #c4c4c4;
	padding: 30px 0;
}

.post_item a {
	display: flex;
	align-items: center;
	gap: 30px;
	color: inherit;
	text-decoration: none;
}

.post_date {
	font-size: 14px;
}

.post_title {
	flex: 1;
}

.post_item a:hover .post_title {
	color: #2AACB8;
}

/*---------------*/
/*	記事詳細
/*---------------*/
.article_title {
	border-bottom: 1px dotted #c4c4c4;
	padding-bottom: 30px;
	margin-bottom: 30px;
	font-family: 'Noto Serif JP', serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
	color: #1D2B59;
}

.article_date {
	margin-bottom: 10px;
	font-size: 14px;
	color: #858b9f;
}

.article_body {
	padding-bottom: 50px;
}

@media only screen and (max-width: 640px) {
	.post_item {
		padding: 5% 0;
	}

	.post_item a {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}

	.post_date {
		font-size: 3.125vw;
	}

	/*---------------*/
	/*	記事詳細
/*---------------*/
	.article_title {
		padding-bottom: 5%;
		margin-bottom: 5%;
		font-size: 5.625vw;
	}

	.article_date {
		margin-bottom: 3%;
		font-size: 3.125vw;
	}

	.article_body {
		padding-bottom: 10%;
	}

}

/* ------------------------------------
	お知らせ_ここまで
------------------------------------*/

/* ------------------------------------
	製品一覧_ここから
------------------------------------*/
/* 25/11/11時点で商品は1点のみだが一旦準備 */
.prd_list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.prd_item {
	background: #FFF;
	box-shadow: 0 8px 32px rgba(31, 38, 135, .1);
	border-radius: 20px;
	width: calc((100% - 80px) / 3);
	overflow: hidden;
}

.prd_item a {
	display: block;
	color: inherit;
}

.prd_item a:hover {
	text-decoration: none;
}

.prd_thm {
	height: 200px;
}

.prd_thm img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.prd_item a:hover .prd_thm img {
	transform: scale(1.05);
}

.prd_body {
	padding: 20px;
}

.prd_name {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 1.3;
	color: #2AACB8;
}

.prd_price {
	text-align: right;
}

.prd_price span {
	font-size: 12px;
	color: #858b9f;
}

@media only screen and (max-width: 640px) {
	.prd_list {
		flex-direction: column;
		gap: 6.25vw;
	}

	.prd_item {
		width: 100%;
	}

	.prd_thm {
		height: 50vw;
	}

	.prd_body {
		padding: 5%;
	}

	.prd_name {
		margin-bottom: 3%;
		font-size: 4.6875vw;
	}

	.prd_price span {
		font-size: 3.125vw;
	}

}


/* ------------------------------------
	製品一覧_ここまで
------------------------------------*/

/* ------------------------------------
	EVcosme_ここから_新UIに刷新したため後で削除
------------------------------------*/
.grid_col {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.grid_col:not(:last-child) {
	margin-bottom: 50px;
}

.grid_col.reverse {
	flex-direction: row-reverse;
}

.grid_col_2 .grid_item {
	width: calc((100% - 40px) / 2);
}

.grid_col_3 .grid_item {
	width: calc((100% - 80px) / 3);
}

.grid_item_img {
	width: 40%;
	text-align: center;
}

.grid_item_body {
	flex: 1;
	align-self: center;
}

.ev_title {
	font-family: 'Noto Serif JP', serif;
	font-size: 28px;
	font-weight: 400;
	/*color: #a70006;*/
}

.btn_ev {
	background: #cfb400;
	/*padding: 20px 100px;*/
}

.btn_ev:hover {
	background: #bba300;
}

/* 追従ボタン */
#js_fltarea {
	position: fixed;
	right: 0;
	bottom: 300px;
	z-index: 9999;
}

.is-hidden {
	visibility: hidden;
	/* 指定の領域までスクロールしたら消す*/
	opacity: 0;
	transition: .3s;
}

#js_fltarea .btn {
	background: rgba(167, 0, 6, .8);
	border-top-left-radius: 10px;
	border-top-right-radius: 0;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 0;
	padding: 30px 20px;
	writing-mode: vertical-rl;
	text-orientation: upright;
	letter-spacing: 0.5em;
}

#js_fltarea .btn i {
	margin-right: 0;
	margin-bottom: 10px;
}

.page-id-205 .grecaptcha-badge {
	visibility: hidden;
	/* 追従ボタンがあるのでrecapchaを非表示に */
}

/* MV */
.block_ev_mv {
	background: url(../img/evcosme/bg_ev_mv.png) no-repeat top center;
	/*background-size: cover;*/
	/*height: 100vh;*/
	text-align: center;
	padding: 60px 0 80px 0;
	font-size: 18px;
	color: #393116;
}

.ev_mv_head {
	/*margin-bottom: 30px;*/
	font-family: 'Noto Serif JP', serif;
	font-size: 40px;
	/*font-weight: 700;*/
	line-height: 1.3;
}

.ev_mv_catch {
	width: 700px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px auto 10px auto;
	font-family: 'Noto Serif JP', serif;
	font-size: 70px;
	font-weight: 400;
	/*color: #cfb400;*/
	line-height: 1;
	position: relative;
}

.ev_mv_catch_item_img {
	max-width: 320px;
}

.ev_mv_catch::before,
.ev_mv_catch::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 150px;
	height: 218px;
}

.ev_mv_catch::before {
	left: -18%;
	background: url(../img/evcosme/leaf_l.png) no-repeat;
	background-size: contain;
}

.ev_mv_catch::after {
	right: -18%;
	background: url(../img/evcosme/leaf_r.png) no-repeat;
	background-size: contain;
}

.ev_mv_catch_sub {
	display: inline-block;
	padding: 0 160px;
	font-family: 'Noto Serif JP', serif;
	font-size: 30px;
	line-height: 1;
	position: relative;
}

.ev_mv_catch_sub::before,
.ev_mv_catch_sub::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 130px;
	height: 2px;
	background: linear-gradient(to right, #9f8d5b, #dcd374);
}

.ev_mv_catch_sub::before {
	left: 0;
}

.ev_mv_catch_sub::after {
	right: 0;
}

.ev_mv_logo {
	width: 150px;
	margin: 40px auto;
}

.ev_mv_lead {
	margin-bottom: 30px;
	font-family: 'Noto Serif JP', serif;
	font-size: 32px;
	line-height: 1.5;
	/*color: #a70006;*/
}

.ev_mv_box {
	background: rgba(255, 255, 255, .75);
	box-shadow: 0 8px 32px rgba(31, 38, 135, .1);
	border-radius: 20px;
	width: 70%;
	margin: 0 auto 30px auto;
	padding: 20px;
}

.ev_mv_title {
	margin-bottom: 10px;
	font-family: 'Noto Serif JP', serif;
	font-size: 24px;
	color: #a70006;
}

.ev_mv_info {
	margin-bottom: 30px;
}

.ev_mv_info strong {
	font-size: 20px;
	/*color: #a70006;*/
}


/* 開発ストーリー */
.block_ev_story {
	background: url(../img/evcosme/bg_ev_story.jpg) no-repeat center center;
	background-size: cover;
}

/* EV Cosmeとは */
.block_ev_about {
	background: url(../img/evcosme/bg_ev_about.jpg) no-repeat center center;
	background-size: cover;
}

/* オーダーメイド */
.block_ev_ordermade {
	background: url(../img/evcosme/bg_ev_ordermade.jpg) no-repeat center center;
	background-size: cover;
}

/* クールコスメ */
.block_ev_cool {
	background: url(../img/evcosme/bg_ev_cool.jpg) no-repeat center center;
	background-size: cover;
}

/* 美容液へのこだわり */
.block_ev_kodawari {
	/*background: #fffcef;*/
	background: url(../img/evcosme/bg_ev_kodawari.jpg) no-repeat center center;
	background-size: cover;
}

.no {
	background: #ff0000;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1 / 1;
	text-align: center;
	width: 20px;
}

/* 3つの主要成分 */
.block_ev_seibun {
	background: url(../img/evcosme/bg_ev_seibun.jpg) no-repeat center center;
	background-size: cover;
}

/*
.block_seibun .heading_3 {
	color: #FFF;
}
*/
.block_ev_seibun .rounded_box {
	background: rgba(255, 255, 255, .75);
	border: 1px solid #FFF;
}

/* 使い方 */
.block_ev_step {
	background: linear-gradient(to bottom, #FFF, #fffce7);
	/*background: #fffdec;*/
}

.flow_list {
	margin-bottom: 50px;
}

.flow_item {
	display: flex;
	gap: 30px;
	counter-increment: mycounter;
	position: relative;
}

.flow_item:not(:last-child) {
	margin-bottom: 40px;
}

.flow_item:not(:last-child)::before {
	content: "";
	background: #eeeacd;
	position: absolute;
	bottom: -40px;
	left: 32px;
	width: 4px;
	height: 100%;
	display: inline-block;
}

.flow_no {
	background: #eeeacd;
	border-radius: 100vh;
	width: 70px;
	height: 70px;
	position: relative;
}

.flow_no::after {
	content: counter(mycounter);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
	font-weight: 700;
}

.flow_body {
	flex: 1;
}

.flow_title {
	margin-bottom: 5px;
	font-size: 18px;
}

.ev_step_guide img {
	max-height: 140px;
}

/* よくある質問 */
.qa_list {
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	margin-bottom: 15px;
}

.qa_title {
	position: relative;
	padding: 20px 50px 20px 20px;
	font-weight: 700;
	cursor: pointer;
}

.qa_title::after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\2b";
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translateY(-50%);
	color: #a62126;
}

.qa_title.open::after {
	content: "\f068";
}

.qa_article {
	background: #f9f9f9;
	border-top: 1px solid #e0e0e0;
	padding: 20px;
	font-size: 14px;
	display: none;
}

/* 会社情報 */
.block_ev_company {
	background: url(../img/evcosme/bg_ev_company.jpg) no-repeat center center;
	background-size: cover;
	color: #FFF;
}

.block_ev_company .rounded_box {
	background: rgba(255, 255, 255, .2);
	border: 1px solid #8f96aa;
}




@media only screen and (max-width: 640px) {
	.grid_col {
		flex-direction: column;
		gap: 6.25vw;
	}

	.grid_col.reverse {
		flex-direction: column;
	}

	.grid_col_2 .grid_item {
		width: 100%;
	}

	.grid_col_3 .grid_item {
		width: 100%;
	}

	.grid_item_img {
		width: 100%;
	}

	.ev_title {
		font-size: 5.625vw;
	}

	/* 追従ボタン */
	#js_fltarea {
		bottom: 2%;
		width: 100%;
	}

	#js_fltarea .btn {
		display: block;
		width: 94%;
		margin: 0 auto;
		text-align: center;
		border-radius: 100vh;
		padding: 3.125vw 0;
		writing-mode: inherit;
		text-orientation: inherit;
		letter-spacing: 0;
	}

	#js_fltarea .btn i {
		margin-right: 15px;
		margin-bottom: 0;
	}

	/* MV */
	.block.block_ev_mv {
		background: url(../img/evcosme/bg_ev_mv_sp.png) no-repeat top center;
		background-size: cover;
		padding: 8% 0 10% 0;
		font-size: 3.75vw;
	}

	.ev_mv_head {
		font-size: 5.94vw;
	}

	.ev_mv_divider {
		max-width: 70vw;
		margin: 0 auto;
	}

	.ev_mv_catch {
		width: 86%;
		margin: 5% auto 3% auto;
		font-size: 8.125vw;
	}

	.ev_mv_catch_item_img {
		max-width: 37.5vw;
	}

	.ev_mv_catch::before,
	.ev_mv_catch::after {
		width: 18.75vw;
		height: 27.19vw;
	}

	.ev_mv_catch::before {
		left: -13%;
	}

	.ev_mv_catch::after {
		right: -13%;
	}

	.ev_mv_catch_sub {
		padding: 0 18vw;
		font-size: 4.6875vw;
	}

	.ev_mv_catch_sub::before,
	.ev_mv_catch_sub::after {
		width: 15vw;
	}

	.ev_mv_logo {
		width: 25vw;
		margin: 6% auto;
	}

	.ev_mv_lead {
		margin-bottom: 5%;
		font-size: 5vw;
	}

	.ev_mv_box {
		width: 100%;
		margin: 0 auto 5% auto;
		padding: 5%;
		/*text-align: left;*/
		font-size: 3.125vw;
	}

	.ev_mv_title {
		margin-bottom: 2%;
		font-size: 4.375vw;
	}

	.ev_mv_info {
		margin-bottom: 8%;
	}

	.ev_mv_info strong {
		font-size: 4.6875vw;
	}




}

/* ------------------------------------
	EVcosme_ここまで_新UIに刷新したため後で削除
------------------------------------*/

/* ------------------------------------
	welcart_ここから
------------------------------------*/
.cart_page_title,
.member_page_title {
	margin-bottom: 30px;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	color: #1D2B59;
}

.post a {
	color: inherit;
}

/* 商品詳細 */
@media screen and (min-width: 38.75em) {
	#itempage #img-box {
		width: 40%;
		margin-bottom: 0;
	}
}

.item-name {
	font-family: 'Noto Serif JP', serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	color: #1D2B59;
}

#itempage .itemcode {
	padding-bottom: 10px;
}

/* 次回入荷予定お知らせ枠（リッチ＆視認性向上版） */
.arrival-info-box {
	margin: 35px 0;
	padding: 24px 28px;
	border: 1px solid #E5DCD0;
	border-left: 5px solid #2AACB8;
	/* 左側にブランドのターコイズをあしらって目立たせる */
	background: #FAF7F2;
	/* 少しトーンを落とした上品なウォームベージュで背景から浮き立たせる */
	border-radius: 0 8px 8px 0;
	/* 左側が直線になるので、右側だけ角丸に */
	box-shadow: 0 10px 30px rgba(29, 43, 89, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
	position: relative;
}

.arrival-info-box .arrival-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px dashed #E5DCD0;
	/* 破線にして柔らかい印象に */
}

/* 他のスタイルでh4に背景色や余白がついている場合の競合回避 */
.arrival-info-box .arrival-title {
	margin: 0;
	padding: 0 !important;
	background: transparent !important;
	font-family: 'Noto Serif JP', serif;
	font-size: 18px;
	font-weight: 700;
	color: #1D2B59;
	/* ブランドのネイビー */
	letter-spacing: 0.05em;
	line-height: 1.4;
	border: none !important;
}

/* カレンダーアイコンのバッジ化 */
.arrival-info-box .arrival-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background-color: rgba(42, 172, 184, 0.1);
	/* ターコイズの10%の薄い色 */
	border-radius: 50%;
	flex-shrink: 0;
}

.arrival-info-box .arrival-icon {
	width: 18px;
	height: 18px;
	color: #2AACB8;
}

.arrival-info-box p {
	line-height: 1.8;
}

.arrival-info-box p:last-child {
	margin-bottom: 0;
}

/* 強調文字（より目立たせる） */
.arrival-info-box strong {
	color: #1D2B59;
	font-weight: 700;
	font-size: 16px;
	background: linear-gradient(transparent 60%, rgba(42, 172, 184, 0.25) 60%);
	/* ターコイズの蛍光ペン風アンダーライン */
	padding: 0 4px;
	margin: 0 2px;
}

/* .arrival-info-box .arrival-subtext {
	font-size: 13px;
	color: #666666;
} */

/* 「入荷待ち」メッセージの文字色カスタマイズ */
.item-info .itemsoldout.backorder {
	color: #1D2B59;
	/* ブランドのネイビーに変更 */
	font-size: 14px;
	border-bottom: 1px dashed #1D2B59;
	/* 誘導を示す控えめな下線 */
	display: table;
	/* 幅をコンテンツ幅にする */
	margin-left: auto;
	/* 右寄せにする */
	padding-bottom: 2px;
}

.item-info .skubutton {
	background: #2AACB8;
}

.item-info .skubutton:hover {
	background: #1A8A94;
}

/* カート周り_ボタン色 */
.send input.to_customerinfo_button,
.send input.to_memberlogin_button,
.send input.to_deliveryinfo_button,
.send input.to_confirm_button,
.send input#purchase_button,
#point_table td input.use_point_button,
.member-page .send input,
#wc_login .loginbox #member_login,
#wc_member .loginbox #member_login,
#wc_lostmemberpassword #member_login,
#wc_changepassword #member_login {
	background: #2AACB8;
}

.send input.to_customerinfo_button:hover,
.send input.to_memberlogin_button:hover,
.send input.to_deliveryinfo_button:hover,
.send input.to_confirm_button:hover,
.send input#purchase_button:hover,
#point_table td input.use_point_button:hover,
.member-page .send input:hover,
#wc_login .loginbox #member_login:hover,
#wc_member .loginbox #member_login:hover,
#wc_lostmemberpassword #member_login:hover,
#wc_changepassword #member_login:hover {
	background: #1A8A94;
}

#wc_cart #cart .upbutton input {
	border: 1px solid #000;
	color: #000;
}

#wc_cart #cart .upbutton input:hover {
	border: 1px solid #1A8A94;
	color: #1A8A94;
	background: none;
}

/* 会員登録しながら次へ_ボタン色 */
#wc_customer .send input.to_reganddeliveryinfo_button {
	background: #cfb400;
}

#wc_customer .send input.to_reganddeliveryinfo_button:hover {
	background: #bba300;
}

/* 新規ご入会はこちら_ボタン色 */
#wc_login .loginbox .new-entry #nav a,
#wc_member .loginbox .new-entry #nav a {
	background: #cfb400;
}

#wc_login .loginbox .new-entry #nav a:hover,
#wc_member .loginbox .new-entry #nav a:hover {
	background: #bba300;
}

@media only screen and (max-width: 640px) {

	.cart_page_title,
	.member_page_title {
		margin-bottom: 8%;
		font-size: 6.25vw;
	}

	.item-name {
		font-size: 6.25vw;
	}

}


/* ------------------------------------
	welcart_ここまで
------------------------------------*/
/* ▲▲▲ここに各コーダーが別途作成したCSS内のスタイルをドッキングしていく▲▲▲ */












/*==================================================================
	99. SP
===================================================================*/

@media only screen and (max-width: 640px) {

	/*==================================================================
	1. Base setting
===================================================================*/
	/* ------------------------------------------------------------------
	1-1. Base styles
-------------------------------------------------------------------*/
	body {
		/*font-size: 4.375vw;*/
		/* 28px：画面幅640pxで換算 */
		font-size: 3.75vw;
		/* 24px：画面幅640pxで換算 */
		min-width: 100%;
	}

	/* ------------------------------------------------------------------
	1-2. Structure styles
-------------------------------------------------------------------*/
	.container {
		margin-top: 60px;
	}

	.wrapper {
		width: 92%;
	}

	.inner {
		padding: 0;
	}

	#main.one-column,
	#main.two-column {
		width: auto;
		padding: 10% 0;
	}

	/* welcartのstyle上書き */

	.scroll-prevent {
		position: fixed;
		z-index: -1;
		width: 100%;
		height: 100%;
		top: 0;
		left: auto;
	}

	/*==================================================================
	2. Layout setting
===================================================================*/

	/* ------------------------------------------------------------------
	2-1. Header styles
-------------------------------------------------------------------*/
	#header {
		background: #FFF;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 999;
		-webkit-transition: -webkit-transform .4s ease;
		transition: -webkit-transform .4s ease;
		transition: transform .4s ease;
		transition: transform .4s ease, -webkit-transform .4s ease;
		height: 60px;
	}

	.header--unpinned {
		-webkit-transform: translateY(-150%);
		transform: translateY(-150%);
	}

	#header .wrapper {
		width: 100%;
		height: 60px;
		/* 251104_追加 */
	}

	.logo {
		margin-left: 3%;
	}

	.logo img {
		max-height: 38px;
	}

	.logo_catch {
		display: none;
	}

	.header_nav {
		display: none;
	}

	.header_contact {
		/*display: block;*/
		/* 251104_修正 */
		display: none;
		/* 251104_修正 */
		margin-left: auto;
	}

	.header_contact a {
		background: #2AACB8;
		width: 60px;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 20px;
		color: #FFF;
	}

	.header_contact a:hover {
		text-decoration: none;
	}

	/* カートボタン */
	.header_tool {
		margin: 0 70px 0 auto;
		gap: 1em;
	}

	/* ------------------------------------------------------------------
	2-1_1. SpNavi styles
-------------------------------------------------------------------*/
	.sp_nav_wrap {
		position: relative;
		display: block;
	}

	.sp_nav {
		background: rgba(233, 241, 242, .8);
		position: fixed;
		top: 60px;
		left: auto;
		width: 100%;
		height: 100%;
		overflow-y: scroll;
		padding: 4% 4% 25vw 4%;
		display: none;
		z-index: 999;
	}

	.sp_nav_inner {
		background: #FFF;
		border-radius: 20px;
		padding: 6% 8% 10% 8%;
	}

	.sp_nav a {
		display: block;
		color: #1D2B59;
	}

	.sp_nav_main {
		border-bottom: 1px solid #2AACB8;
		padding: 5% 10% 5% 0;
		position: relative;
		font-weight: 700;
	}

	.sp_nav_main:after {
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		content: "\f054";
		position: absolute;
		top: 50%;
		right: 3%;
		transform: translateY(-50%);
		display: inline-block;
	}

	.sp_nav_main.js_ac_trigger:after {
		content: "\2b";
	}

	.sp_nav_main.js_ac_trigger.open:after {
		content: '\f068';
	}

	.sp_nav_sub {
		padding: 5% 0;
		display: none;
	}

	.sp_nav_sub a {
		padding: 3% 3% 3% 8%;
		display: block;
		position: relative;
	}

	.sp_nav_sub a:before {
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		content: "\f138";
		position: absolute;
		top: 0.6em;
		left: 0;
		display: inline-block;
	}

	.sp_nav_btn {
		margin-top: 8%;
		text-align: center;
	}

	.sp_nav_btn a {
		background: #2AACB8;
		border-radius: 100vh;
		display: block;
		padding: 4% 6%;
		color: #FFF;
	}

	/* ------------------------------------
	ハンバーガーメニュー
------------------------------------*/
	.hamburger {
		display: block;
		/* 251104_修正 */
		/*display: none;*/
		/* 251104_修正 */
		position: absolute;
		top: 50%;
		right: 2%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		cursor: pointer;
		z-index: 101;
	}

	.hamburger::after,
	.hamburger::before {
		content: "";
		height: 2px;
		width: 50%;
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		background: #1D2B59;
		border-radius: 3px;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
	}

	.hamburger::before {
		top: 13px;
	}

	.hamburger::after {
		bottom: 13px;
	}

	.hamburger span {
		height: 2px;
		width: 50%;
		position: absolute;
		top: 50%;
		left: 0;
		right: 0;
		margin: 0 auto;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		background: #2E4967;
		border-radius: 3px;
	}

	.hamburger.active {
		background: none;
		border: none;
	}

	.hamburger.active span {
		display: none;
	}

	.hamburger.active:before {
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
		top: 19px;
	}

	.hamburger.active:after {
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
		top: 19px;
	}

	/* ------------------------------------------------------------------
	2-3. Main styles
-------------------------------------------------------------------*/
	.block {
		padding: 10% 0;
	}

	.page_head {
		margin: 0 4% 5% 4%;
	}

	.page_title {
		margin-bottom: 8%;
		font-size: 6.25vw;
		/* 7.5vwから変更 */
	}

	.page_title::after {
		width: 12.5vw;
	}

	.page_lead {
		text-align: left;
	}

	/* ------------------------------------------------------------------
	2-5. Footer styles
-------------------------------------------------------------------*/
	.footer {
		padding: 5% 0;
	}

	.footer .wrapper {
		flex-direction: column;
	}

	.fnav {
		display: none;
	}

	.copyright {
		font-size: 2.8125vw;
	}

}


/*==================================================================
	100. WP style
===================================================================*/
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.item-description h1,
.item-description h2,
.item-description h3,
.item-description h4,
.item-description h5 {
	font-size: revert;
	/*margin-bottom: revert;*/
}

.entry-content p,
.item-description p {
	margin-bottom: 1.875em;
}

.wp-block-button__link {
	background: #2AACB8;
}

.wp-block-button__link:hover {
	background: #1A8A94;
	color: #FFF;
	text-decoration: none;
}