@charset "UTF-8";
/* CSS Document */
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
a {
  display: inline-block;
  cursor: pointer;
	text-decoration: none;
}
html {
	padding: 0;
	margin: 0;
}
body {
	color: #FFF;
	background-color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-style: normal;
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 0.016em;
	padding: 0;
	margin: 0;
}
img {
  vertical-align: bottom;
	width:100%;
	max-width:100%;
	padding:0;
	margin:0;
}
a img {
	display: block;
}
ol,
ul {
  list-style: none;
}

@media (min-width:769px) {
.pc {display:block;}
.sp {display:none;}
}
@media (max-width:768px) {
.pc {display:none;}
.sp {display:block;}
}

/*Google Fonts*/
.noto-serif-jp-semibold {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.noto-serif-jp-bold {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.noto-sans-jp-regular {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.noto-sans-jp-medium {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.noto-sans-jp-bold {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.noto-sans-jp-black {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}


#macaMaxWrap {
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0;
	letter-spacing: 0.1em;
}
	#macaMaxWrap a img{
}
@media (min-width:769px) {
	#macaMaxWrap a img{
		transition: transform 0.3s ease;
	}

	#macaMaxWrap a:hover img {
		transform: translateY(-5px);
	}
	header a:hover img {
		transform: translateY(0)!important;
	}
	.product__btnboxA a:hover img,
	.interview__btn a:hover img {
		transform: translateY(0)!important;
		transform: translateX(3px)!important;
	}
}
h2 {
	font-size: 48px;
	line-height: 130%;
	color: #FFF;
	width: 90%;
	max-width: 1280px;
	margin: 3% auto;
	text-align: center;
}
h2 span {
	font-size: 72px;
	/* グラデーション */
	background: linear-gradient(
		90deg,
		#b1894c,
		#9a6027,
		#f9f5aa,
		#a76228
	);
	/* 文字にグラデを適用 */
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
h3 {
	font-size: 48px;
	line-height: 130%;
	color: #FFF;
	width: 90%;
	max-width: 1280px;
	margin: 5% auto;
	text-align: center;
}
h3 span {
	display:inline-block;
	border-bottom: solid 2px #b48d5c;
}
@media (max-width:768px){
	h2 {
		font-size: 18px;
		margin: 10% auto 7%;
	}
	h2 span {
		font-size: 24px;
	}
	h3 {
		margin: 10% auto 7%;
		font-size: 24px;
	}
	h3 span {
		display:inline-block;
	}
}


/*フェードイン*/
.anim,.anim_slow,.anim_fadein,.anim_more_slow {
  opacity: 0;
	-webkit-transition: all 1.2s;
  transition: all 1.2s;
}
.anim_slow {
	transition-delay: 0.3s;
}
.anim_more_slow {
	transition-delay: 0.6s;
}
.anim_slow.active,
.anim_more_slow.active,
.anim_fadein.active {
  opacity: 1;
}

/* header */
.header{
	position:sticky;
	top:0;
	z-index:999;
	transition:0.3s;
	background-color: #000;
}

.header.scrolled{
	box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

/* layout */
.logo {
	width: 100%;
	max-width: 302px;
	position: absolute;
	left: 0;
	top: 0;
}
.logo a {
	width: 100%;
	display: inline-block;
}
.logo a img{
	width: 100%;
	display: block;
}
.header-inner{
	height: 60px;
	max-width:1200px;
	margin:auto;
	display:flex;
	justify-content:center;
	align-items:center;
}

/* nav */
.nav-list{
	display:flex;
	list-style:none;
	gap:40px;
}
.nav-list li {
	flex: 0 0 1;
}
.nav-list a {
	text-decoration:none;
	color:#FFF;
	font-weight:600;
	letter-spacing: 0.2em;
	position:relative;
	padding-bottom:4px;
	transition: 0.3s;
}

/* 太いアンダーライン */
.nav-list a::after{
	content:"";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	background: #AD864B;
	transition: 0.3s;
}
.nav-list a:hover {
	color:#AD864B;
}
.nav-list a:hover::after{
	transform:scaleX(100%);
}

/* hamburger */
.hamburger{
	display:none;
	width:30px;
	height:24px;
	border:none;
	background-color:#000;
	cursor:pointer;
	flex-direction:column;
	justify-content:space-between;
}

.hamburger span{
	display:block;
	height:3px;
	width:100%;
	background:#FFF;
	transition:0.3s;
}

/* × アニメーション */
.hamburger.active span:nth-child(1){
	transform:rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2){
	opacity:0;
}
.hamburger.active span:nth-child(3){
	transform:rotate(-45deg) translate(9px,-9px);
}


@media (max-width:1280px){
	.logo {
		width: auto;
		height: 50px;
		max-width: 302px;
		position: absolute;
		left: 0;
	}
	.logo img{
		width: auto;
		height: 50px;
	}
	.header-inner{
		height: 50px;
		padding-left: 250px;
		font-size: 14px;
	}
	.nav-list{
		gap:20px;
	}
}
/* mobile */
@media (max-width:768px){
	.header-inner{
		justify-content:flex-end;
		padding-right: 20px;
	}
	.hamburger{
		display:flex;
	}
	.nav{
		position:fixed;
		top:0;
		right:-100%;
		width:100%;
		height:100vh;
		background:#AD864B;
		padding-top:50px;
		transition:0.4s;
		box-shadow:-3px 0 10px rgba(0,0,0,0.1);
		text-align: center;
	}
	.nav.active{
		right:0;
	}
	.nav-list{
		flex-direction:column;
		gap:0;
	}
	.nav-list li{
		border-bottom:1px solid #FFF;
	}

	.nav-list a{
		display:block;
		padding:18px 25px;
	}
	.nav-list a:hover {
		color:#FFF;
	}
	.nav-list a:hover::after{
		transform:scaleX(0);
	}
}




/*KV*/
.kv {
	width: 100%;
	position: relative;
}
.kv__back {
	width: 100%;
}
.kv .kv__bnr {
	position: absolute;
	top: 3%;
	left: 2%;
	width: 22%;
}
.kv .kv__macamax_logo {
	position: absolute;
	top: 3%;
	right: 2%;
	width: 7%;
}
.kv .kv__copy {
	position: absolute;
	top: 35%;
	left: 10%;
	width: 48%;
}

/*スクロールダウン*/
.kv .scrolldown{
	position:absolute;
	bottom: 70px;
	left: 50%;
	transform:translateX(-50%);
}

.scrolldown {
	display:block;
	font-size:12px;
	letter-spacing:0.2em;
	animation:scrollAnime 2s ease-in-out infinite;
}

/* 上下アニメーション */
@keyframes scrollAnime{
	0%{
		transform:translateY(0);
		opacity:0.4;
	}
	50%{
		transform:translateY(10px);
		opacity:1;
	}
	100%{
		transform:translateY(0);
		opacity:0.4;
	}
}
/*Scrollテキストの描写*/
.scrolldown span{
    /*描画位置*/
  position: absolute;
  left: -25px;
  bottom: 30px;
    /*テキストの形状*/
  color: #FFF;
  font-size: 14px;
}
/* 矢印の描写 */
.scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -3px;
    /*矢印の形状*/
    width: 1px;
    height: 10px;
    background: #FFF;
    transform: skewX(-31deg);
}

.scrolldown:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  right:0;
    /*矢印の形状*/
  width: 1px;
  height: 30px;
  background:#FFF;
}

.kv__bottom {
	width: 100%;
	background:#AD864B;
	text-align: center;
	color: #fff;
	font-size: 14px;
	padding: 10px 0 8px;
}

/*.kv__copy,*/
.kv__macamax_logo,
.kv__bnr{
	opacity:0;
}
@keyframes fadeUp{
	from{
		opacity:0;
	}
	to{
		opacity:1;
	}
}

/* ② logo */
.kv__macamax_logo{
	animation: fadeUp 0.8s ease forwards;
	animation-delay: 0.3s;
}

/* ③ bnr */
.kv__bnr{
	animation: fadeUp 0.8s ease forwards;
	animation-delay: 0.5s;
}



.kv__copy img {
  object-fit: cover;
  filter: blur(10px); /* 初期状態で画像がぼやけている */
  opacity: 0;
  animation: blurFadeIn 1.5s ease forwards;
	animation-delay: 1.5s;
}

@keyframes blurFadeIn {
  0% {
    filter: blur(10px);
    opacity: 0;
	  transform: translateY(10%);
  }
  100% {
    filter: blur(0px); /* 徐々に鮮明に */
    opacity: 1; /* 画像を完全に表示 */
	  transform: translateY(0);
  }
}

@media (max-width:768px){
	.kv .kv__bnr {
		top: 3%;
		left: 3%;
		width: 35%;
	}
	.kv .kv__macamax_logo {
		position: absolute;
		top: 2%;
		right: 3%;
		width: 15%;
	}
	.kv .kv__copy {
		top: auto;
		bottom: 22%;
		left: 50%;
		width: 75%;
		transform: translateX(-50%);
	}
	.scrolldown:before {
		width: 1px;
		height: 10px;
		transform: skewX(-31deg);
	}
	.scrolldown:after{
	  width: 1px;
	  height: 25px;
	}
	.scrolldown span{
		left: -20px;
		bottom: 20px;
		font-size: 10px;
	}
}


/*-------product---------------------------------*/
.product {
	width: 100%;
	margin: auto;
	overflow-x: hidden;
}
.product__boxA {
	width: 90%;
	max-width: 1280px;
	margin: -5% auto 2%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap:2%;
}
.product__boxB {
	width: 90%;
	max-width: 1280px;
	margin: -5% auto 2%;
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: flex-start;
	gap:2%;
}
.product__boxA:first-of-type {
	margin: 5% auto;
}
.product__boxB:last-of-type {
	margin: -5% auto 0;
}
.product__boxA .product__item:first-of-type {
	flex: 0 0 45%;
	margin-left: -15%;
}
.product__boxA .product__item:last-of-type {
	flex: 0 0 55%;
	margin-left: -10%;
}
.product__boxB .product__item:first-of-type {
	flex: 0 0 45%;
	margin-right: -15%;
}
.product__boxB .product__item:last-of-type {
	flex: 0 0 55%;
	margin-right: -10%;
}
.product__name {
	width: 100%;
	font-size: 48px;
	line-height: 120%;
	color: #b48d5c;
	border-bottom: solid 2px;
	border-image: linear-gradient(
		90deg,
		#b1894c,
		#9a6027,
		#f9f5aa,
		#a76228
	) 1;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.product__copy {
	font-size: 24px;
	line-height: 130%;
	color: #b48d5c;
	margin-bottom: 20px;
}
.product__copy span {
	font-size: 12px;
}
.product__ingredient dt {
	font-size: 20px;
}
.product__ingredient dd {
	font-size: 16px;
}


.product__btnboxA {
	width: 100%;
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	gap: 4%;
	margin: 20px 0;
}
.product__btnboxA .product__btn {
	flex: 0 0 48%;
	width: 48%;
}
.product__btnboxA .product__btn a {
	width: 100%;
	display: inline-block;
}
.product__btnboxA .product__btn a img {
	width: 100%;
	display: block;
}
.product__btnboxB {
	width: 100%;
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	margin: 20px 0;
	gap: 5%;
}
.product__btnboxB .product__btn {
	flex: 0 0 30%;
}
.product__drugstoretext {
	margin: 0 auto 5%;
	text-align: center;
}
.product__drugstoretext span {
	display:inline-block;
	font-size: 24px;
	line-height: 130%;
	border-bottom: solid 2px #FFF;
}
@media (max-width:1280px){
	.product__boxA {
		margin: -2% auto 2%;
	}
	.product__boxB {
		margin: -2% auto 2%;
	}
	.product__name {
		font-size: 36px;
	}
	.product__copy {
		font-size: 20px;
	}
	.product__ingredient dt {
		font-size: 12px;
	}
	.product__ingredient dd {
		font-size: 10px;
	}
}
@media (max-width:768px){
	.product__boxA {
		width: 100%;
		margin: 5% auto 2%;
	}
	.product__boxB {
		width: 100%;
		margin: 5% auto 2%;
	}
	.product__btnboxA {
		gap: 4%;
		margin: 5% 0;
	}
	.product__btnboxA .product__btn {
		flex: 0 0 48%;
		text-align: center;
	}
	.product__btnboxB {
		gap: 4%;
		margin: 5% 0;
	}
	.product__btnboxB .product__btn {
		flex: 0 0 48%;
		margin-bottom: 2%;
	}
	.product__name {
		font-size: 20px;
		padding-bottom: 1%;
		margin-bottom: 2%;
	}
	.product__copy {
		font-size: 14px;
		line-height: 120%;
		margin-bottom: 3%;
	}
	.product__copy span {
		font-size: 10px;
	}
	.product__ingredient dt {
		font-size: 12px;
		line-height: 120%;
	}
	.product__ingredient dd {
		font-size: 12px;
		line-height: 120%;
	}
	.product__drugstoretext span {
		font-size: 14px;
	}
}


/*-------materials---------------------------------*/
.materials {
	width: 100%;
	margin: auto;
	background: url("../images/bg_material.jpg") center top repeat;
	background-size: cover;
}
.diagonally {
	width: 100%;
	display: block;
}
.materials__inner {
	width: 90%;
	max-width: 1000px;
	margin: auto;
}
.materials__Area {
	width: 100%;
	max-width: 1000px;
	margin: 5% auto;
	position: relative;
}
.materials__macamax_logo {
	width: 27.6%;
	position: absolute;
	left: 50%;
	top: 10%;
	margin-left: -13.8%;
}
.materials__boxA {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.materials__boxA .materials__item {
	flex: 0 0 32%;
	font-size: 14px;
	line-height: 1.5em;
}
.materials__boxA .materials__item img {
	display: block;
	width: 80%;
	margin: 2% auto;
}
.materials__boxB {
	width: 88%;
	margin: 5% auto;
	display: flex;
	justify-content: space-between;
}
.materials__boxB .materials__item {
	flex: 0 0 23%;
}
.materials__boxB .materials__item:nth-last-of-type(2),
.materials__boxB .materials__item:nth-last-of-type(3) {
	padding-top: 15%;
}
.materials__text {
	width: 100%;
	margin: 3% auto;
	text-align: center;
	font-size: 38px;
}
.materials__boxC {
	width: 59%;
	margin: 3% auto;
}
.materials__chui {
	font-size: 10px;
	text-align: right;
	line-height: 1.5em;
	margin-bottom: 5%;
}

@media (max-width:768px){
	.materials {
		background: url("../images/bg_material_sp.jpg") center top repeat;
	}
	.materials__inner {
		width: 85%;
	}
	.materials__macamax_logo {
		width: 20%;
		top: 60%;
		margin-left: -10%;
}
	.materials__boxA .materials__item {
		flex: 0 0 48%;
		font-size: 12px;
	}
	.materials__boxB {
		width: 100%;
		margin: 10% auto 5%;
	}
	.materials__boxB .materials__item {
		flex: 0 0 25%;
	}
	.materials__boxB .materials__item:nth-last-of-type(2) {
		margin-right: -20%;
		padding-top: 30%;
	}
	.materials__boxB .materials__item:nth-last-of-type(3) {
		margin-left: -20%;
		padding-top: 30%;
	}
	.materials__text {
		font-size: 16px;
	}
	.materials__boxC {
		width: 80%;
	}
}


/*-------reason---------------------------------*/
.reason {
	width: 100%;
	margin: auto;
}
.reason__inner {
	width: 90%;
	max-width: 1000px;
	margin: auto;
}
.moments__box {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: center;
	gap: 5%;
}
.moments__box p {
	flex: 0 0 30%;
	font-size: 20px;
	padding: 2% 1%;
	margin-bottom: 3%;
	text-align: center;
	line-height: 1.5em;
	background-color: #b48d5c;
	border-radius: 20px;
}
.reviews__Area {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: center;
	gap: 4%;
}
.reviews__Area li {
	flex: 0 0 48%;
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: center;
	padding: 2%;
	margin-bottom: 3%;
	background-color: #000;
	border: solid 2px #AD864B;
	border-radius: 20px;
}
.reviews__Area li div {
	flex: 0 0 28.5%;
}
.reviews__Area li p {
	flex: 0 0 68%;
	font-size: 16px;
}
.reviews__Area li p span {
	display: block;
	text-align: right;
	font-size: 14px;
}
.satisfaction__img {
	width: 69.5%;
	margin: 3% auto;
}
.satisfaction__img p {
	margin-top: 5%;
	font-size: 10px;
	line-height: 1.5em;
}
.why__box {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: center;
	gap: 5%;
	margin-bottom: 3%;
}
.why__text1 {
	width: 62%;
	margin: 3% auto;
	text-align: center;
	font-size: 36px;
	background-color: #AD864B;
	padding: 2%;
	border-radius: 20px;
}
.why__box div {
	flex: 0 0 30%;
}
.why__text2 {
	width: 100%;
	text-align: center;
	font-size: 16px;
}
.movie__inner {
	width: 100%;
	padding: 0 5%;
	background: radial-gradient(circle, #ddd, #000, transparent 120%);
}
.movie__box {
	width: 60%;
	margin: 3% auto 0;
}
.movie__inner .youtube{
	position:relative;
	width:100%;
	margin: 3% auto;
	padding-top:56.25%; /* 16:9 */
}

.movie__inner .youtube iframe{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
.movie__inner p {
	text-align: center;
	margin-bottom: 10%;
}
.movie__inner p span {
	display: inline-block;
	color: #AD864B;
	font-size: 18px;
	background-color: rgba(0,0,0,0.80);
	padding: 1% 2%;
	border-radius: 20px;
}
.interview__boxA {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	gap: 5%;
	margin: 5% auto;
}
.interview__boxA .interview__item:first-of-type {
	flex: 0 0 50%;
}
.interview__boxA .interview__item:last-of-type {
	flex: 0 0 45%;
}
.interview__text01 {
	font-size: 42px;
	line-height: 1.3em;
}
.interview__text01 span {
	font-size: 18px;
}
.interview__boxB {
	display: flex;
	flex-wrap:wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	gap: 5%;
	margin: 5% auto;
}
.interview__boxB .interview__item:first-of-type {
	flex: 0 0 60%;
}
.interview__boxB .interview__item:last-of-type {
	flex: 0 0 35%;
}
.interview__text02 {
	font-size: 16px;
	line-height: 1.5em;
}
.interview__text02 span {
	color: #AD864B;
}
.interview__btn {
	margin: 5% auto;
	width: 35%;
}
.interview__btn a {
	width: 100%;
	display: inline-block;
}
.interview__btn a img {
	width: 100%;
	display: block;
}

@media (max-width:768px){
	.moments__box {
		gap: 4%;
	}
	.moments__box p {
		flex: 0 0 48%;
		font-size: 14px;
		padding: 2% 0.5%;
		letter-spacing: 0;
	}
	.reviews__Area li {
		flex: 0 0 100%;
	}
	.reviews__Area li p {
		font-size: 14px;
		line-height: 1.2em;
	}
	.reviews__Area li p span {
		font-size: 12px;
	}
	.satisfaction__img {
		width: 100%;
	}
	.why__box {
		justify-content: center;
		gap: 4%;
	}
	.why__box div {
		flex: 0 0 48%;
		margin-bottom: 5%;
	}
	.why__text1 {
		width: 90%;
		font-size: 20px;
		margin-bottom: 5%;
	}
	.why__text2 {
		font-size: 12px;
		line-height: 1.2em;
	}
	.movie__box {
		width: 80%;
	}
	.reason__inner {
		width: 85%;
	}
	.interview__boxA .interview__item:first-of-type {
		flex: 0 0 100%;
		text-align: center;
		margin-bottom: 3%;
	}
	.interview__boxA .interview__item:last-of-type {
		flex: 0 0 100%;
	}
	.interview__boxB .interview__item:first-of-type {
		flex: 0 0 100%;
		margin-bottom: 3%;
	}
	.interview__boxB .interview__item:last-of-type {
		flex: 0 0 100%;
	}
	.interview__text01 {
		font-size: 20px;
	}
	.interview__text01 span {
		font-size: 14px;
	}
	.interview__text02 {
		font-size: 14px;
	}
	.interview__btn {
		text-align: center;
		margin: 5% auto;
		width: 80%;
	}
}

/*-------QandA---------------------------------*/
.QandA {
	width: 100%;
	margin: auto;
	background-color: #FFF;
	color: #000;
	padding-bottom: 5%;
}
.QandA h2 {
	color: #000;
}
.QandA h2 span {
	color: #AD864B;
}
.QandA__box {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	border-bottom: solid 1px #AD864B;
	font-size: 16px;
}
.QandA__box:first-of-type {
	border-top: solid 1px #AD864B;
}
.QandA__box:last-of-type {
	margin-bottom: 5%;
}
.QandA__box dt {
	width: 90%;
	display: flex;
	flex-wrap:wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 2%;
	margin: 5% auto 2%;
}
.QandA__box dd {
	width: 90%;
	display: flex;
	flex-wrap:wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 2%;
	margin: 2% auto 5%;
	padding-left: 10%;
	color: #AD864B;
}
.QandA__box div {
	flex: 0 0 10%;
}
.QandA__box p {
	flex: 0 0 88%;
}
.QandA__box p span {
	font-size: 10px;
}
@media (max-width:768px){
	.QandA__box dt {
		font-size: 12px;
	}
	.QandA__box dd {
		padding-left: 0;
		font-size: 12px;
	}
	.QandA__box p {
		line-height: 1.3em;
	}
}


/*-------BuyNow---------------------------------*/
.BuyNow {
	width: 100%;
	margin: auto;
}
.BuyNow__Area {
	width: 90%;
	max-width: 1000px;
	margin: 5% auto 2%;
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: center;
	gap:4%;
}
.BuyNow__box {
	flex: 0 0 48%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap:4%;
	margin-bottom: 3%;
}
.BuyNow__item:first-of-type {
	flex: 0 0 20%;
}
.BuyNow__item:last-of-type {
	flex: 0 0 76%;
}
.BuyNow__name {
	font-size: 24px;
	line-height: 1.2em;
	color: #b48d5c;
	border-bottom: solid 2px;
	border-image: linear-gradient(
		90deg,
		#b1894c,
		#9a6027,
		#f9f5aa,
		#a76228
	) 1;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.BuyNow__copy {
	font-size: 16px;
	line-height: 1.3em;
	color: #b48d5c;
	margin-bottom: 20px;
}
.BuyNow__copy span {
	font-size: 12px;
}
.BuyNow__btnboxA,.BuyNow__btnboxB {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap:4%;
}
.BuyNow__btn {
	flex: 0 0 48%;
	text-align: center;
	margin-bottom: 3%;
}
.BuyNow__btnboxA .BuyNow__btn a {
	width: 100%;
	display: inline-block;
}
.BuyNow__btnboxA .BuyNow__btn a img {
	width: 100%;
	display: block;
}

@media (max-width:768px){
	.BuyNow__Area {
		width: 80%;
		max-width: 1000px;
		margin: 5% auto 2%;
		display: block;
	}
	.BuyNow__box {
		flex: 0 0 none;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap:4%;
		margin-bottom: 5%;
	}
}
footer {
	margin-top: 5%;
	background-color: #FFF;
	width: 100%;
	padding:10px;
	text-align: center;
}
footer img {
	width: 60%;
	max-width: 302px;
	margin: 0 auto;
}
@media (max-width:768px){
	footer {
		margin-top: 30%;
	}
}