/*
Theme Name: オネストビューティー
Theme URI: 
Author: 
Author URI: 
Description: 
Version: 1.0
License: 
License URI: 
Tags: 
Text Domain: 
*/
@charset "UTF-8";
/*------------------------------------------------------------------
********************************************************************
 * ▼構成
 * ・ベースとなるCSS
 * ・スマホ用（@media screen and (max-width: 767px) {} ）
 * 
 * リセットCSS      css / destyle.min.css
 * モジュール系CSS  css / default.css
 * ページ共通CSS    style.css
 * 各ページCSS      css / (top.css, business.css, message.css,,,)
********************************************************************
--------------------------------------------------------------------*/
* {
	-webkit-box-sizing:border-box !important;
	-moz-box-sizing:border-box !important;
	box-sizing:border-box !important;
	border:0px none;
	margin:0px;
	padding:0px;
}

:root {
	/* グレー系 */
	--black-base:    #333333; /* ベースの黒 - 主にテキストに使用 */
	--gray-dark:     #3F3F3F; /* 濃いグレー - 背景に使用 */
	--gray-darker:   #B1B1B1; /* 暗めのグレー */
	--gray-line:     #D2D2D2; /* 暗めのグレー - 線に使用 */
	--gray-bg-dark:  #D9D9D9; /* 暗めのグレー - 背景に使用 */
	--gray-bg-light: #F5F5F5; /* 明るめのグレー - 背景に使用 */
	
	/* 青系 */
	--blue-dark:           #1668C1; /* 暗めの青 - ベースカラー */
	--blue-bright:         #077EFF; /* 明るめの青 */
	--blue-gradient-start: #0652D5; /* グラデーション開始 */
	--blue-gradient-end:   #004EA2; /* グラデーション終了 */
	--blue-light:          #6AB2FF; /* 明るめの青（別トーン） */
	--blue-extra-light:    #EBF4FF; /* かなり明るい青 */
	
	/* オレンジ系 */
	--orange-main:  #F84B38; /* オレンジ（濃いめ） */
	--orange-light: #FF9185; /* オレンジ（明るめ） */
	
	/* 黄緑系 */
	--green-yellow:       #06C655; /* 黄緑（鮮やか） */
	--green-yellow-light: #76D99F; /* 黄緑（明るめ） */

	/* その他の色 */
	--white: #fff;
	
	/* コンテンツ幅 */
	--content-width: 100%;
	--content-max-width: 750px;
}


/*--------------------------------------------------
**************************************************
  基本
**************************************************
--------------------------------------------------*/

body {
	margin: 0px;
	padding: 0px;
	background: none repeat scroll 0% 0%;
	background-attachment: scroll;
	/* font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
	line-height: 1.6;
	letter-spacing: 0.8px;
	font-size: 16px;
	font-weight: 400;
	color: var(--black-base);
}



/* -- サイトコンテナ -- */
.p-product_content__inner {
  max-width: 1200px;
}
.p-product_content__inner__img {
  width: calc(100% - 780px);
}
.p-product_content__inner__info {
  width: 750px;
}
@media screen and (max-width: 1200px) {
	.p-product_content__inner {
		max-width: 750px;
		display:block;
	}
	.p-product_content__inner__img {
	  width: 750px;
		max-width:100%;
	}
	.p-product_content__inner__info {
	  width: 750px;
		max-width:100%;
		margin-top:50px;
	}
	.p-product_content {
	  padding-right: 0;
	  padding-left: 0;
	}
	.p-product_content__breadcrumbs--pc {
	  padding: 20px;
	}
}
@media screen and (max-width: 749px) {
.p-product_content__inner__info {
    width: 100%;
    padding: 0 4vw;
    margin-top: 30px;
  }
}

.item_container {
	font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	max-width: 750px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
	letter-spacing: 0.8px;
	font-size: 16px;
	font-weight: 400;
	color: #333;
}
.item_container img{
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	font-style: italic;
	background-repeat: no-repeat;
	background-size: cover;
	shape-margin: 0.75rem;
}
.item_container ul { list-style-type:none; }



/*--------------------------------------------------
**************************************************
  リンク系
**************************************************
--------------------------------------------------*/
a {
	color: var(--black-base);
	text-decoration: none;
	transition: all 1s ease;
}

a:hover {
	color: var(--blue-dark);
}

a img{
	transition: 0.5s;
}

a img:hover {
	opacity: 0.7;
	transition: 0.5s;
}

a[href^="tel:"] {
	pointer-events: none;
	color: var(--black-base);
}

/* SP */
@media screen and (max-width: 750px) {
	a[href^="tel:"] {
		pointer-events: auto;
	}
}

/* PC */
@media (min-width: 751px) {
	.text_link_underline {
		position: relative;
		text-decoration: none;
		color: var(--black-base);
		transition: color 0.3s ease;
	}

	.text_link_underline:hover {
		color: var(--blue-dark);
	}

	.text_link_underline::before {
		content: '';
		position: absolute;
		left: 0;
		bottom: -2px;
		width: 0;
		height: 1px;
		background-color: var(--blue-dark);
		transition: width 0.3s ease;
	}

	.text_link_underline:hover::before {
		width: 100%;
	}
}


/*--------------------------------------------------
**************************************************
  メインコンテンツ
**************************************************
--------------------------------------------------*/
.item_box01 ul {
	width:86%;
	margin:20px auto;
	color:#2e4650;
	line-height:1.4;
	font-size:18px;
}
@media (max-width: 749px) {
	.item_box01 ul {
		font-size:2.4vw;
	}
}

.item_box02 {
	margin-top:60px;
}
.item_box02 ul {
	width:100%;
	padding:20px 7%;
	background: #f4ede9;
	color:#2e4650;
	line-height:1.4;
	font-size:18px;
}
@media (max-width: 749px) {
	.item_box02 ul {
		font-size:2.4vw;
	}
}

.item04_04 {
	position:relative;
	width: 100%;
	background-image: url('https://d2w53g1q050m78.cloudfront.net/nikuqhonestjp/uploads/imgs/lp/item04_04.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	aspect-ratio: 75 / 119;
}
.item04_04 p {
	position:absolute;
	width:75%;
	font-size:28px;
	line-height:1.6em;
	left:12.5%;
	top:38%;
	letter-spacing:.002em;
	color:#161e29;
}
.item04_04 p span {
	font-weight:bold;
	color:#ad9057;
}
.item04_04 p span sup {
	font-size:16px;
}
@media (max-width: 749px) {
	.item04_04 p {
		font-size:3.4vw;
	}
	.item04_04 p span sup {
		font-size:2.13vw;
	}
}

.item04_05 {
	position:relative;
	width: 100%;
	background-image: url('https://d2w53g1q050m78.cloudfront.net/nikuqhonestjp/uploads/imgs/lp/item04_05.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	aspect-ratio: 75 / 69;
}
.item04_05 > p {
	position:absolute;
	width:68%;
	font-size:30px;
	line-height:1.4em;
	left:16%;
	top:18%;
	letter-spacing:.002em;
	color:#161e29;
}
.item04_05 .links {
	position:absolute;
	width:68%;
	font-size:24px;
	top:65%;
	left:16%;
	letter-spacing:.002em;
	color:#161e29;
}
.item04_05 .links a {
	color:#13b5b1;
	font-size:28px;
}
.item04_05 .links a span {
	position:relative;
	padding-top:5px;
	padding-right:56px;
	padding-bottom:5px;
	background:url(https://d2w53g1q050m78.cloudfront.net/nikuqhonestjp/uploads/imgs/lp/link_icon.png) no-repeat right 13px;
	background-size:36px 36px;
}
.item04_05 .links a span::after {
	content:"";
	width:calc(100% - 56px);
	height:2px;
	background:#13b5b1;
	position:absolute;
	left:0;
	bottom:-8px;
}
@media (max-width: 749px) {
	.item04_05 > p {
		top:16vw;
	}
	.item04_05 p {
		font-size:3.4vw;
	}
	.item04_05 .links {
		top:52vw;
	}
	.item04_05 .links p{
		font-size:3.2vw;
	}
	.item04_05 .links a {
		font-size:3.4vw;
	}
	.item04_05 .links a span {
		padding-top:5px;
		padding-right:8vw;
		padding-bottom:5px;
		background:url(https://d2w53g1q050m78.cloudfront.net/nikuqhonestjp/uploads/imgs/lp/link_icon.png) no-repeat right 1.6vw;
		background-size:4.2vw;
	}
	.item04_05 .links a span::after {
		content:"";
		width:calc(100% - 10vw);
		height:2px;
		background:#13b5b1;
		position:absolute;
		left:0;
		bottom:-5px;
	}
}

.item04_07 {
	position:relative;
	width: 100%;
	background-image: url('https://d2w53g1q050m78.cloudfront.net/nikuqhonestjp/uploads/imgs/lp/item04_07.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	aspect-ratio: 75 / 72;
}
.item04_07 p {
	position:absolute;
	width:75%;
	font-size:28px;
	line-height:1.6em;
	left:12.5%;
	top:3%;
	letter-spacing:.002em;
	color:#161e29;
}
.item04_07 p span {
	font-weight:bold;
	color:#ad9057;
}
.item04_07 p span sup {
	font-size:16px;
}
@media (max-width: 749px) {
	.item04_07 p {
		font-size:3.4vw;
	}
	.item04_07 p span sup {
		font-size:2.13vw;
	}
}

.item04_09 {
	position:relative;
	width: 100%;
	background-image: url('https://d2w53g1q050m78.cloudfront.net/nikuqhonestjp/uploads/imgs/lp/item04_09.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	aspect-ratio: 75 / 90;
}
.item04_09 p {
	position:absolute;
	width:75%;
	font-size:28px;
	line-height:1.6em;
	left:12.5%;
	top:2%;
	letter-spacing:.002em;
	color:#161e29;
}
.item04_09 p span {
	font-weight:bold;
	color:#ad9057;
}
.item04_09 p span sup {
	font-size:16px;
}
@media (max-width: 749px) {
	.item04_09 p {
		font-size:3.4vw;
	}
	.item04_09 p span sup {
		font-size:2.13vw;
	}
}

.item04_11 {
	position:relative;
	width: 100%;
	background-image: url('https://d2w53g1q050m78.cloudfront.net/nikuqhonestjp/uploads/imgs/lp/item04_11.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	aspect-ratio: 75 / 83;
}
.item04_11 p {
	position:absolute;
	width:75%;
	font-size:28px;
	line-height:1.6em;
	left:12.5%;
	top:2%;
	color:#161e29;
}
.item04_11 p span {
	font-weight:bold;
	color:#ad9057;
}
.item04_11 p span sup {
	font-size:16px;
}
@media (max-width: 749px) {
	.item04_11 p {
		font-size:3.4vw;
	}
	.item04_11 p span sup {
		font-size:2.13vw;
	}
}

.item05_03 {
	position:relative;
	width: 100%;
	background-image: url('https://d2w53g1q050m78.cloudfront.net/nikuqhonestjp/uploads/imgs/lp/item05_03.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	aspect-ratio: 75 / 49;
}
.item05_03 p {
	position:absolute;
	width:78%;
	font-size:30px;
	line-height:1.6em;
	left:11%;
	top:3%;
	color:#161e29;
}
.item05_03 p span {
	font-weight:bold;
	color:#ad9057;
	font-size:36px;
	display:block;
}
.item05_03 p sup {
	font-size:16px;
}
@media (max-width: 749px) {
	.item05_03 p span {
		font-size:4.2vw;
	}
	.item05_03 p {
		font-size:3.6vw;
	}
	.item05_03 p sup {
		font-size:2.4vw;
	}
}

.item05_06 {
	position:relative;
	width: 100%;
	background-image: url('https://d2w53g1q050m78.cloudfront.net/nikuqhonestjp/uploads/imgs/lp/item05_06.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	aspect-ratio: 75 / 35;
}
.item05_06 p {
	position:absolute;
	width:82%;
	font-size:28px;
	line-height:1.6em;
	left:9%;
	top:3%;
	color:#161e29;
	letter-spacing:.002em;
}
.item05_06 p span {
	font-weight:bold;
	color:#ad9057;
}
.item05_06 p span sup {
	font-size:16px;
}
@media (max-width: 749px) {
	.item05_06 p {
		font-size:3.4vw;
	}
	.item05_06 p span sup {
		font-size:2.13vw;
	}
}

.item_box06 {
	margin-top:100px;
	padding:80px 0 0;
	background:#eceff0;
}
.item06_03 {
	position:relative;
	width: 100%;
	background-image: url('https://d2w53g1q050m78.cloudfront.net/nikuqhonestjp/uploads/imgs/lp/item06_03.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	aspect-ratio: 750 / 755;
}
.item06_03_inner {
	width:70%;
	position:absolute;
	left:15%;
	top:17%;
}
.item06_03_inner > div p {
	padding-left:20px;
	border-left:12px solid #2e4650;
	font-size:28px;
	color:#161e29;
	letter-spacing:.002em;
}
.item06_03_inner div + div {
	margin-top:40px;
	padding-top:40px;
	border-top:2px dashed #2e4650;
}
@media (max-width: 749px) {
	.item_box06 {
		margin-top:40px;
		padding:40px 0 0;
	}
	.item06_03_inner > div p {
		padding-left:4vw;
		border-left:2vw solid #2e4650;
		font-size:3.3vw;
	}
	.item06_03_inner div + div {
		margin-top:5vw;
		padding-top:5vw;
	}
}

.voice_box {
	width:93.33%;
	margin:80px auto 0;
}
.voice_box h2 {
	text-align:center;
	font-size:34px;
	font-weight:normal;
	background:#e8ecef;
	padding:20px 0;
}
@media (max-width: 749px) {
	.voice_box {
		margin-top:50px;
	}
	.voice_box h2 {
		font-size:4.5vw;
	}
}
.voice_detail {
	width:92.85%;
	margin:60px auto 0;
	display:flex;
	justify-content:space-between;
	align-items:start;
}
.voice_detail img {
	width:26.15%;
	height:auto;
	display:block;
}
.voice_detail div {
	width:calc(73.85% - 20px);
}
.voice_detail div > p {
	font-size:26px;
	font-weight:bold;
	color:#161e29;
}
.voice_detail div > p + p {
	margin-top:10px;
	font-weight:normal;
	letter-spacing:-0.02em;
}
.voice_detail div > p + p span {
	font-weight:bold;
	color:#ad9057;
}
@media (max-width: 749px) {
	.voice_detail {
		margin-top:40px;
	}
	.voice_detail div > p {
		font-size:3.2vw;
	}
}


.faq_box {
	width:93.33%;
	margin:80px auto 0;
}
.faq_box h2 {
	text-align:center;
	font-size:34px;
	font-weight:normal;
	background:#e8ecef;
	padding:20px 0;
}
.faq_box dl {
	width:92.85%;
	margin:40px auto 0;
}

@media (max-width: 749px) {
	.faq_box {
		margin-top:50px;
	}
	.faq_box h2 {
		font-size:4vw;
	}
}

.faq_box dt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 20px 0;
	font-weight: bold;
	color:#161e29;
	font-size:24px;
	letter-spacing:-0.05em;
	border-bottom:2px solid #161e29;
}
.faq_box dd {
	display: none;
	padding: 20px 0;
	line-height: 1.5;
	color:#161e29;
	font-size:24px;
}
/* アイコン */
.faq_box .icon {
	position: relative;
	width: 24px;
	height: 24px;
}
.faq_box .icon::before,
.faq_box .icon::after {
	content: "";
	position: absolute;
	background: #161e29;
}
.faq_box .icon::before {
	width: 24px;
	height: 2px;
	top: 21px;
	right:10px;
}
.faq_box .icon::after {
	width: 2px;
	height: 24px;
	top: 10px;
	right:21px;
	transition: opacity 0.3s;
}

/* 開いた状態 */
.faq_box dl.is-open dd {
	display: block;
}
.faq_box dl.is-open .icon::after {
	opacity: 0; /* ＋ → − */
}
@media (max-width: 749px) {
	.faq_box dl {
		margin-top:30px;
	}
	.faq_box dt {
		font-size:3.3vw;
		padding: 15px 0;
	}
	.faq_box dl:nth-child(2) dt {
		padding-top:0;
	}
	.faq_box dd {
		font-size:3.3vw;
		padding: 20px 0 0;
	}
	.faq_box .icon {
		width: 18px;
		height: 18px;
	}
	.faq_box .icon::before {
		width: 18px;
		height: 2px;
		top: 10px;
		right:10px;
	}
	.faq_box .icon::after {
		width: 2px;
		height: 18px;
		top: 2px;
		right:18px;
		transition: opacity 0.3s;
	}
}


/*--------------------------------------------------
**************************************************
  cta01
**************************************************
--------------------------------------------------*/
.cta01_box {
	padding:20px 0 100px;
	background: #f4ede9;
}
.cta_inner {
	width:93.33%;
	margin:0 auto;
}
.cta_inner div {
	position:relative;
	width: 100%;
	background-image: url('https://d2w53g1q050m78.cloudfront.net/nikuqhonestjp/uploads/imgs/lp/cta1_bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	aspect-ratio: 700 / 632;
}
.cta_inner div button img {
	width:55.7%;
	height:auto;
	position:absolute;
	bottom:7%;
	right:8%;
}

@media (max-width: 749px) {
	.cta01_box {
		padding:20px 0 40px;
	}
}


/*--------------------------------------------------
**************************************************
  cta02
**************************************************
--------------------------------------------------*/
.cta02_inner {
	position:relative;
}
.cta02_inner div {
	width: 100%;
	background-image: url('https://d2w53g1q050m78.cloudfront.net/nikuqhonestjp/uploads/imgs/lp/cta2_bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	aspect-ratio: 700 / 1046;
}
.cta02_inner div button img {
	width:88%;
	height:auto;
	position:absolute;
	top:59%;
	left:6%;
}
.cta02_inner p {
	width:100%;
	position:absolute;
	top:76%;
	text-align:center;
	font-size:34px;
	line-height:1.64em;
}
.cta02_inner p a span {
	font-weight:bold;
	color:#22ac38;
	position:relative;
}
.cta02_inner p a span::after {
	content:"";
	width:100%;
	height:2px;
	background:#22ac38;
	position:absolute;
	left:0;
	bottom:-3px;
}
@media (max-width: 749px) {
	.cta02_inner p {
		font-size:4.5vw;
	}
}


/*--------------------------------------------------
**************************************************
  cta03
**************************************************
--------------------------------------------------*/
.cta03_box {
	width:93.33%;
	margin:80px auto;
}
.cta03_inner {
	width:100%;
	margin:0 auto;
}
.cta03_inner div {
	position:relative;
	width: 100%;
	background-image: url('https://d2w53g1q050m78.cloudfront.net/nikuqhonestjp/uploads/imgs/lp/cta3_bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	aspect-ratio: 700 / 632;
}
.cta03_inner div button img {
	width:55.7%;
	height:auto;
	position:absolute;
	bottom:7%;
	right:8%;
}

@media (max-width: 749px) {
	.cta03_box {
		margin:40px auto 0;
	}
}


/*--------------------------------------------------
**************************************************
  返金保証
**************************************************
--------------------------------------------------*/
.mb_box {
	width:86.66%;
	margin: 80px auto;
}
.mb_box h3 {
	text-align:center;
	font-size:24px;
	padding:10px 0;
	color:#161e29;
	background:#e8ecef;
}
.mb_box p {
	margin-top:10px;
	font-size:24px;
	color:#161e29;
	line-height:1.6;
}
@media (max-width: 749px) {
	.mb_box {
		margin: 30px auto;
	}
	.mb_box h3 {
		text-align:center;
		font-size:3.3vw;
		padding:10px 0;
		color:#161e29;
		background:#e8ecef;
	}
	.mb_box p {
		margin-top:10px;
		font-size:3.1vw;
		color:#161e29;
		line-height:1.6;
	}
}


/*--------------------------------------------------
**************************************************
  ページ内リンク / その他調整
**************************************************
--------------------------------------------------*/
.cart_link_sp {
	display:none;
}

@media (min-width: 1200px) {
	#product-name2 {
		display:none;
	}
}
.c-product_img {
	position:relative;
	z-index:1 !important;
}
.c-product_info__form__submit.c-product_info__form__submit {
	margin-top:50px !important;
}
#price-group2 {
	margin-top:20px;
}
p.notes {
	margin:10px 0 30px;
	font-weight:bold;
}

.cart_link_btn {
	margin:0;
}
.cart_link_btn button {
	text-align: center !important;
	padding: 10px 0 !important;
	font-size: 18px !important;
	text-decoration: none !important;
	color: #FFF !important;
	background-color: #c71585 !important;
	position: relative; /* 光用に必要 */
	overflow: hidden;   /* はみ出し隠し */
	display:block;
	width:100%;
}
.cart_link_btn button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: linear-gradient(120deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
	transform: skewX(-20deg);
	transition: all 0.7s;
	pointer-events: none; /* 光がクリック邪魔しないように */
}
.cart_link_btn button:hover {
	background-color: #ec612b !important;
	color: #FFF !important;
	text-decoration: none !important;
}
.cart_link_btn button:hover::before {
	animation: shine 0.7s forwards;
}

/* -- 商品ページの位置調整 -- */
header.global_header{
	padding: 5px 5%;
}
@media (min-width: 1200px) {
	#float_carts #quantity-group {
		margin-top:10px;
	}
	#float_carts #btn-add {
		margin-top:15px !important;
	}
	.c-product_img__slider--thumbnail {
		margin-top:10px !important;
	}
	#price-group {
		margin-top:15px;
	}
	.splide__list{
		justify-content:center;
	}
	.c-product_img__slider--thumbnail .c-product_img__item {
		width:60px !important;
		height:60px !important;
		margin:0 5px !important;
	}
}
