@charset "UTF-8";
/* CSS Document */

/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)){
	all: unset;
	display: revert;
}
*,*::before,*::after{
	box-sizing: border-box;
}
a, button{
	cursor: revert;
}
ol, ul, menu{
	list-style: none;
}
img{
	max-width: 100%;
	vertical-align: top;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
input, textarea{
	-webkit-user-select: auto;
	user-select: auto;
}
textarea{
	white-space: revert;
}
meter{
	-webkit-appearance: revert;
	appearance: revert;
}
::placeholder{
	color: unset;
}
:where([hidden]){
	display: none;
}
:where([contenteditable]:not([contenteditable="false"])){
	-moz-user-modify: read-write;
	-webkit-user-modify: read-write;
	overflow-wrap: break-word;
	-webkit-line-break: after-white-space;
	line-break: after-white-space;
	-webkit-user-select: auto;
	user-select: auto;
}
:where([draggable="true"]){
	-webkit-user-drag: element;
}


/*
	Setting CSS
-----------------------------------------------------------------------------------------------*/
html{
	font-size: 62.5%;
}
body{
	color:#333;
	font-size: 1.4em;
	font-family: 'Zen Kaku Gothic New', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-weight: 400;
	letter-spacing: 0.1rem;
	font-feature-settings: "palt";
	overflow-wrap: break-word;
}
p{
	line-height: 170%;
}
a{
	color:#000;
	text-decoration:none;
	transition: all 0.3s;
}
a:link{
	color:#000;
}
a:visited{
	color:#000;
}
a:hover{
	text-decoration:none;
}
@media print, screen and (min-width:813px){
	/* iPad背景切れ対策 */
	body{
		min-width: 1200px;
	}
	
	/* tel pcのみ無効 */
	a[href^="tel:"]{
		pointer-events: none;
	}
}

/* 表示切替 */
.switch{
	visibility: hidden;
}
.sp{
	display: none;
}


/*
	common
-----------------------------------------------------------------------------------------------*/
:root{
	/* width */
	--wL: 1200px;
	--wM: 1140px;
	--wS: 840px;

	/* color */
	--clrBrown: #64461e;
	--clrLBrown :#b0826e;
	
	/* font */
	--fJp: font-family: 'Zen Kaku Gothic New', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	--fMincho: 'Shippori Mincho', YuMincho, 'Hiragino Mincho Pro', 'MS PMincho', serif;
	--fEn: 'Playfair', YuMincho, 'Hiragino Mincho Pro', 'MS PMincho', serif;
}

/* box
============================== */
/* wrapper */
#wrapper{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/* ctsWrapper */
#ctsWrapper{
	padding-bottom: 100px;
	overflow: hidden;
}

/* ctsArea */
.ctsArea{
	width: var(--wL);
	padding: 0 80px 120px 80px;
	margin: 0 auto;
}
.ctsArea.wM{
	width: var(--wM);
}
.ctsArea.wS{
	width: var(--wS);
}

/* font / txt
============================== */
.fwB{
	font-weight: 700;
}
.sup{
	font-size: 50%;
	line-height: 100%;
	vertical-align: super;
}
.txtNote{
	display: inline-block;
	margin-top: 15px;
	color:#666666;
	font-size: 1.2rem;
	line-height: 100%;
}
.indent01 {
	display: inline-block;
	text-indent: -2rem;
}
.indent02 {
	text-indent: 2rem;
	display: inline-block;
}

/* tit
============================== */
/* titBase (en + jp) */
[class ^= titBase]{
	margin-bottom: 55px;
	color: var(--clrBrown);
	text-align: center;
	font-size: 4.2rem;
	font-family: var(--fMincho);
}
[class ^= titBase] .en{
	display: block;
	color: var(--clrLBrown);
	font-size: 4.2rem;
	font-family: var(--fEn);
	font-weight: 300;
	line-height: 70%;
	letter-spacing: 0.3rem;
}
[class ^= titBase] .jp{
	color: var(--clrLBrown);
	font-size: 1.3rem;
	line-height: 100%;
}
.titBaseGrd .line {
	margin-bottom: 15px;
}
.titBaseGrd .line,
.titBaseGrd .hukidashi {
	display: block;
	position: relative;
}
.titBaseGrd .line::before{
	content: '';
	position: absolute;
	top: 37px;
	left: 50%;
	transform: translateX(-50%);
	height: 1px;
	width: 980px;
	background: #be9e54;
	z-index: 0;
}
.titBaseGrd .hukidashi {
	margin-bottom: 20px;
}
.titBaseGrd .hukidashi::before{
	content: '';
	position: absolute;
	bottom: -9px;
	left: 50%;
	transform: translateX(-50%);
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: rgba(190,157,84,1) transparent transparent transparent;
}
.titBaseGrd .grd{
	display: inline-block;
	padding: 8px 50px;
	border-radius: 30px;
	font-size: 2.8rem;
	color: #fff;
	background: #be9e54;
	background: linear-gradient(-70deg, rgba(239,219,168,1) 0%, rgba(190,157,84,1) 50%, rgba(239,219,168,1) 100%);
	position: relative;
	z-index: 1;
}


/* btn
============================== */
[class ^= btnArea]{
	display: flex;
	gap: 0 50px;
	margin-top: 50px;
}
.btnAreaCenter{
	justify-content: center;
}
.btnAreaRight{
	justify-content: flex-end;
}

/* btnBase */
[class ^= btnBase]{
	min-width: 240px;
	background-color: #fff;
	text-align: center;
	font-size: 1.5rem;
	font-family: var(--fEn);
	font-weight: 400;
	letter-spacing: 0.15rem;
	padding: 25px;
	position: relative;
}
.btnBaseArrow::after {
	display: block;
	content: '';
	width: 10px;
	height: 10px;
	border: 1px solid;
	border-color: #b0826e #b0826e transparent transparent;
	position: absolute;
	right: 25px;
	top: 45%;
	transform: translateY(-50%) rotate(135deg);
	transition: all .5s ease;
}
.btnBaseArrow:hover {
	letter-spacing: 0.3rem;
}
.btnBaseArrow:hover::after {
	top: 50%;
}

/*btnBaseGrad*/
a.btnBaseGrad,
button.btnBaseGrad{
	color: var(--clrBrown);
	font-family: var(--fJp);
	font-size: 1.4rem;
	font-weight: bold;
	transition: all 0.3s;
	cursor: pointer;
}
a.btnBaseGrad,
button.btnBaseGrad{
	overflow: hidden;
	position: relative;
}
a.btnBaseGrad span,
button.btnBaseGrad span{
	position: relative;
	z-index: 1;
}
a.btnBaseGrad::before,
button.btnBaseGrad::before{
	content: "";
	display: block;
	width: 200%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgb(206,187,186);
	background: linear-gradient(60deg, rgba(206,187,186,1) 0%, rgba(232,225,223,1) 50%, rgba(232,225,223,1) 60%, rgba(206,187,186,1) 100%);
	transition: all 0.4s;
}
a.btnBaseGrad:hover::before,
button.btnBaseGrad:hover::before{
	left: -100%;
}

/* txtLink */
a.txtLink{
	display: inline-block;
	text-decoration: underline;
	word-wrap:break-word;
	color: var(--clrLBrown);
	word-break: break-all;
}
a.txtLink:hover{
	text-decoration: none;
	opacity: .7;
}

/* clmAnm（横並びのアニメーション）
============================== */
@media print, screen and (min-width:813px){
	.clmAnmFadeIn2 li.jsAnmStart:nth-of-type(2n+1),
	.clmAnmFadeIn3 li.jsAnmStart:nth-of-type(3n+1),
	.clmAnmFadeIn4 li.jsAnmStart:nth-of-type(4n+1){
		animation: anmFadeIn 1s ease 0.5s forwards;
	}
	.clmAnmFadeIn2 li.jsAnmStart:nth-of-type(2n+2),
	.clmAnmFadeIn3 li.jsAnmStart:nth-of-type(3n+2),
	.clmAnmFadeIn4 li.jsAnmStart:nth-of-type(4n+2){
		animation: anmFadeIn 1s ease 0.8s forwards;
	}
	.clmAnmFadeIn3 li.jsAnmStart:nth-of-type(3n+3),
	.clmAnmFadeIn4 li.jsAnmStart:nth-of-type(4n+3){
		animation: anmFadeIn 1s ease 1.1s forwards;
	}
	.clmAnmFadeIn4 li.jsAnmStart:nth-of-type(4n+4){
		animation: anmFadeIn 1s ease 1.3s forwards;
	}
}


/*
	kvWrapper
-----------------------------------------------------------------------------------------------*/
#kvWrapper {
	position: relative;
	width: 100%;
}
#kvWrapper img{
	width: 100%;
	height: 100%;
}
#kvWrapper .txtLink{
	position: absolute;
	top: 30px;
	left: 50px;
	z-index: 1000;
}
#kvWrapper .ctsArea{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
}
#kvWrapper .titArea{
	width: fit-content;
	margin: 0 0 0 auto;
}
#kvWrapper .logo{
	width: 285px;
	height: auto;
	margin: 0 auto;
}
#kvWrapper .tit{
	width: 562px;
	height: auto;
	margin: 60px auto 0;
}


/*
	introWrapper
-----------------------------------------------------------------------------------------------*/
#introWrapper {
	position: relative;
	margin-top: -50px;
	width: 100%;
}
#introWrapper .bgImg{
	width: 100%;
	height: 100%;
	max-height: 480px;
}
#introWrapper .ctsArea{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
#introWrapper .tit{
	width: 700px;
	height: auto;
	margin: 0 auto;
}
#introWrapper .txt{
	width: 517px;
	height: auto;
	margin: 30px auto 0;
}

/* itemImg
============================== */
#introWrapper .itemImg01{
	width: 360px;
	bottom: 300px;
	right: -80px;
}
#introWrapper .itemImg02{
	bottom: -30px;
	left: -90px;
}


/*
	pointWrapper
-----------------------------------------------------------------------------------------------*/
#pointWrapper {
	overflow: hidden;
}
#pointWrapper .ctsArea{
	padding-top: 80px;
	padding-bottom: 210px;
	position: relative;
}
#pointWrapper .ctsArea > .tit{
	width: 569px;
	height: auto;
	margin: 0 auto;
}
.pointArea {
	position: relative;
}
.pointArea .txtArea {
	padding: 50px 0px 80px;
} 
.pointArea .boxL,
.pointArea .boxR {
	width: fit-content;
}
.pointArea .boxL {
	margin: 0px auto 0 0;
	padding-right: 100px;
	min-width: 550px;
	width: fit-content;
}
.pointArea .boxR {
	margin: 0 0 0 auto;
	padding-left: 100px;
}
[class *= grdBox] {
	position: relative;
}
[class *= grdBox]::before{
	content: "";
	background: #d2e6e6;
	background: linear-gradient(45deg, rgba(210,230,230,1) 0%, rgba(225,240,240,1) 100%);
	width: 100vw;
	height: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}
[class *= grdBox].boxL::before{
	right: 0px;
}
[class *= grdBox].boxR::before{
	left: 0px;
}
.grdBox02::before{
	background: linear-gradient(-135deg, rgba(210,230,230,1) 0%, rgba(225,240,240,1) 100%);
}
.pointImg {
	position: absolute;
	top: -44px;
	left: 0;
}
.boxR .pointImg {
	left: 100px;
}
.pointArea .tit {
	font-family: var(--fMincho);
	font-size: 2.6rem;
}
.pointArea .tit span {
	font-size: 4rem;
}
.pointArea .txt {
	max-width: 400px;
	padding-top: 30px;
	line-height: 260%;
	font-size: 1.5rem;
}

/* point01
============================== */
.point01 {
	margin-top: 80px;
}
.point01 .imgArea {
	bottom: -100px;
	right: 0;
}	
/* item */
.point01 .imgArea .item01 {
	top: -120px;
	right: -110px;
}	

/* point02
============================== */
.point02 {
	margin-top: 250px;
}
.point02 .imgArea {
	top: -100px;
	left: 0;
}
/* item */
.point02 .imgArea .item01 {
	bottom: -90px;
	left: -71px;
}
.point02 .imgArea .item02 {
	bottom: -85px;
	left: -85px;
	z-index: -1;
}

/* point03
============================== */
.point03 .boxL {
	margin-top: -20px;
}
.point03 .imgArea {
	bottom: -100px;
	right: -20px;
}
/* item */
.point03 .imgArea .item01 {
	top: -360px;
	left: -50px;
}
.point03 .imgArea .item02 {
	bottom: -40px;
	right: -105px;
}
.point03 .imgArea .item03 {
	top: -150px;
	right: 50px;
}

/* point04
============================== */
.point04 {
	margin-top: 300px;
}
.point04 .imgArea {
	bottom: 50px;
	left: 0;
}
.point04 .txtNote {
	letter-spacing: -0.05rem;
}
/* item */
.point04 .imgArea .item01 {
	top: 340px;
	left: -45px;
}

/* point05
============================== */
.point05 {
	margin-top: 80px;
}
.point05 .imgArea {
	bottom: -80px;
	right: -20px;
}
/* item */
.point05 .imgArea .item01 {
	top: -210px;
	left: -30px;
	transform: rotate(70deg);
}

/* itemImg
============================== */
.pointArea .imgArea {
	position: absolute;
}
[class *= item] {
	position: absolute;
	z-index: 1;
}
#pointWrapper .itemImg01{
	top: 490px;
	left: -50px;
}
#pointWrapper .itemImg02{
	top: 1330px;
	right: -60px;
	transform: rotate(90deg);
}
#pointWrapper .itemImg03{
	top: 1650px;
	left: -100px;
	transform: rotate(90deg);
}
#pointWrapper .itemImg04{
	top: 2290px;
	right: -90px;
	transform: rotate(90deg);
}
#pointWrapper .itemImg05{
	top: 20px;
	right: -200px;
	z-index: -1;
}
#pointWrapper .itemImg06{
	top: 820px;
	left: -100px;
	z-index: 0;
}
#pointWrapper .itemImg07{
	top: 1500px;
	right: -50px;
}
#pointWrapper .itemImg08{
	top: 1920px;
	left: 0px;
}
#pointWrapper .itemImg09{
	top: 2100px;
	left: 50px;
	z-index: -1;
}
#pointWrapper .itemImg10{
	bottom: 130px;
	right: -200px;
	z-index: -1;
}
#pointWrapper .itemImg11{
	bottom: 480px;
	right: 110px;
	z-index: -1;
}

/*
	bgBlue
-----------------------------------------------------------------------------------------------*/
.bgBlue {
	background: #d2e6e6;
}


/*
	materialsWrapper
-----------------------------------------------------------------------------------------------*/
#materialsWrapper {
	padding-top: 100px;
	position: relative;
}
#materialsWrapper.ctsArea > .tit {
	margin: 0 auto;
	width: 505px;
	height: auto;
}
.materialArea {
	padding-top: 70px;
	position: relative;
	z-index: 2;
}

/* natureArea
============================== */
.natureArea {
	display: flex;
	align-items: center;
	gap: 0 55px;
}
/* imgArea */
.nature .imgArea{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 200px;
}
.nature .imgArea::before{
	position: absolute;
	content: '';
	width: 170px;
	height: 200px;
	border-radius: 50%;
	background: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 0;
}
.nature .imgArea img{
	z-index: 1;
	position: relative;
}
.nature .imgArea .name{
	position: absolute;
}
.nature.funori .imgArea .name{
	bottom: 28px;
	right: 30px;
}
.nature.sakura .imgArea .name{
	top: -3px;
	left: 5px;
	}
.nature.germanium .imgArea .name{
	top: 41px;
	left: -42px;
}
/* txtArea */
.nature .txtArea .tit {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding-top: 30px;
	font-size: 2.2rem;
	font-family: var(--fMincho);
	line-height: 100%;
	min-height: 75px;
}
.nature .txtArea .tit span {
	font-size: 1.2rem;
	font-family: var(--fJp);
	color: var(--clrLBrown);
}
.nature .txtArea .txt {
	padding-top: 50px;
	text-align: justify;
	letter-spacing: 0rem;
	position: relative;
}
.nature .txtArea .txt::before {
	position: absolute;
	content: '';
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 1px;
	background: var(--clrLBrown);
}

/* cycleArea
============================== */
.cycleArea {
	padding-top: 80px;
	position: relative;
}
/* item */
.cycleArea .item01{
	top: 50px;
	right: -100px;
	z-index: 2;
}
.cycleArea .item02{
	top: -40px;
	right: -170px;
	transform: rotate(90deg);
	z-index: 1;
}
.cycleArea .item03{
	top: 130px;
	left: -100px;
}
.cycleArea .item04{
	bottom: -40px;
	right: -100px;
	transform: rotate(170deg);
}


/* itemImg
============================== */
#materialsWrapper .itemImg01{
	top: 510px;
	left: -100px;
	transform: rotate(90deg);
}
#materialsWrapper .itemImg02{
	top: 1750px;
	right: -100px;
	transform: rotate(90deg);
}
#materialsWrapper .itemImg03{
	top: 1300px;
	left: -100px;
	transform: rotate(90deg);
}
#materialsWrapper .itemImg04{
	top: 2200px;
	left: 90px;
	transform: rotate(90deg);
}
#materialsWrapper .itemImg05{
	top: 170px;
	right: -165px;
	z-index: 0;
}
#materialsWrapper .itemImg06{
	top: 700px;
	left: -300px;
	z-index: 0;
}
#materialsWrapper .itemImg07{
	top: 740px;
	right: 10px;
}
#materialsWrapper .itemImg08{
	top: 1850px;
	right: -300px;
}
#materialsWrapper .itemImg09{
	top: 2180px;
	left: -10px;
}

/*
	efficacyWrapper
-----------------------------------------------------------------------------------------------*/
.efficacyBox {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}
.efficacy {
	background: #fff;
	width: 308px;
}
.efficacy .txtArea {
	padding: 25px 30px 30px 30px;
}
.efficacy .num{
	font-size: 1.6rem;
	font-family: var(--fMincho);
	line-height: 100%;
	color: var(--clrLBrown);
}
.efficacy .num span{
	position: relative;
	padding-right: 30px;
	font-family: var(--fEn);
	font-size: 2.4rem;
}
.efficacy .num span::before{
	position: absolute;
	left: -30px;
	top: 15px;
	content: '';
	width: 20px;
	height: 1px;
	background: var(--clrLBrown);
}
.efficacy .num span::after{
	position: absolute;
	right: 15px;
	top: 53%;
	transform: translateY(-50%);
	content: '';
	width: 1px;
	height: 15px;
	background: var(--clrLBrown);
}
.efficacy .tit{
	margin-top: 25px;
	font-family: var(--fMincho);
	font-size: 1.8rem;
	line-height: 160%;
	letter-spacing: -0.03rem;
	color: var(--clrBrown);
}
.efficacy .txt{
	margin-top: 10px;
	text-align: justify;
	line-height: 200%;
}


/*
	biomassWrapper
-----------------------------------------------------------------------------------------------*/
#biomassWrapper .ctsArea {
	position: relative;
}
.biomassArea {
	padding: 0 50px 50px 50px;
	background: linear-gradient(transparent 0%,transparent 8%,#fff 8%,#fff 100%);
}
#biomassWrapper .txtArea {
	display: flex;
	justify-content: space-between;
	z-index: 1;
}
#biomassWrapper .txt {
	max-width: 450px;
	line-height: 200%;
	text-align: justify;
}
#biomassWrapper [class ^= titBase] {
	margin-bottom: 20px;
}

/* itemImg
============================== */
#biomassWrapper .itemImg01{
	top: 0px;
	left: -110px;
}
#biomassWrapper .itemImg02{
	top: 340px;
	left: -30px;
}
#biomassWrapper .itemImg03{
	top: -40px;
	left: -200px;
}
#biomassWrapper .itemImg04{
	top: -400px;
	right: -290px;
	z-index: 0;
}

/*
	disuseWrapper
-----------------------------------------------------------------------------------------------*/
#disuseWrapper {
	margin: 15px;
	background: url(../images/bg_disuse_pc.png) no-repeat center center/cover;
}
#disuseWrapper .ctsArea{
	padding-top: 100px;
}
#disuseWrapper .disuseArea {
	padding: 90px 80px 80px 80px;
	background: #fff;
	position: relative;
}
#disuseWrapper .titSub {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 138px;
	height: 138px;
	font-size: 3.6rem;
	font-family: var(--fMincho);
	color: #fff;
	background: #5a96be;
	border-radius: 50%;
	position: absolute;
	top: -69px;
	left: 50%;
	transform: translatex(-50%);
}
#disuseWrapper .titSub::after {
	content: '';
	position: absolute;
	bottom: -9px;
	left: 50%;
	transform: translateX(-50%);
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #5a96be transparent transparent transparent;
}
#disuseWrapper .ctsArea .tit{
	width: 809px;
	height: auto;
	margin: 0 auto;
}
#disuseWrapper .txtArea {
	margin-top: 50px;
}
#disuseWrapper .txt {
	text-align: center;
	line-height: 300%;
	font-size: 1.5rem;
}
#disuseWrapper .txt:not(:first-of-type) {
	margin-top: 20px;
}


/*
	useWrapper
-----------------------------------------------------------------------------------------------*/
#useWrapper .ctsArea {
	padding-top: 100px;
	position: relative;
}
#useWrapper [class^="titBase"] {
	margin-bottom: 30px;
}
#useWrapper .useArea {
	padding: 50px;
	background: #fff;
	position: relative;
	z-index: 1;
}
#useWrapper .use {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
#useWrapper .use:not(:first-of-type) {
	padding-top: 50px;
}
#useWrapper .use:not(:last-of-type) {
	padding-bottom: 50px;
	border-bottom:solid 1px #eeeeee;
}
#useWrapper .boxL{
	max-width: 330px;
}
#useWrapper .boxL .imgArea{
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}
#useWrapper .boxL .imgArea img{
	margin: 0 auto;
}
#useWrapper .boxL .tit{
	position: absolute;
	font-family: var(--fEn);
	font-size: 2.4rem;
	color: #333333;
}
#useWrapper .boxL .line{
	position: relative;
	border-bottom:solid 1px #333333;
}
#useWrapper .boxL .line::before{
	position: absolute;
	content: '';
	height: 1px;
	width: 25px;
	background: #333333;
	transform-origin:left top;
}
#useWrapper .boxL .txt{
	margin-top: 20px;
	text-align: justify;
	line-height: 190%;
	letter-spacing: 0.03rem;
}
#useWrapper .movie{
	aspect-ratio: 16 / 9;
}
#useWrapper .boxR{
	width: 500px;
}
video,iframe {
	width: 100%;
	height: 100%;
	border: 0px;
	cursor: pointer;
	transition: opacity .3s;
}
video:hover,
iframe:hover {
	opacity: .8;
}
/* body */
#useWrapper .body .tit{
	top: 13px;
	right: 50px;
}
#useWrapper .body .line::before{
	bottom: -19px;
	left: -18px;
	transform: rotate(-45deg);
}
/* face */
#useWrapper .face .tit{
	top: -5px;
	left: 75px;
}
#useWrapper .face .line::before{
	width: 15px;
	bottom: -1px;
	right: -15px;
	transform: rotate(45deg);
}
/* head */
#useWrapper .head .tit{
	top: 20px;
	left: 35px;
}
#useWrapper .head .line::before{
	width: 35px;
	bottom: -1px;
	right: -35px;
	transform: rotate(-45deg);
}
/* otherUses */
#useWrapper .otherUses .tit{
	top: -25px;
	left: 0px;
	letter-spacing: 0.01rem;
}
#useWrapper .otherUses .line::before{
	width: 15px;
	bottom: -1px;
	right: -15px;
	transform: rotate(45deg);
}

/* itemImg
============================== */
#useWrapper .itemImg01{
	top: 980px;
	left: -40px;
	transform: rotate(90deg);
}
#useWrapper .itemImg02{
	bottom: 430px;
	right: -100px;
	transform: rotate(90deg);
}
#useWrapper .itemImg03{
	top: 130px;
	left: -30px;
}
#useWrapper .itemImg04{
	top: 110px;
	left: 60px;
}
#useWrapper .itemImg05{
	top: 720px;
	right: -10px;
	transform: rotate(320deg);
}
#useWrapper .itemImg06{
	top: 50px;
	right: -30px;
}
#useWrapper .itemImg07{
	top: 350px;
	left: -330px;
	z-index: 0;
}
#useWrapper .itemImg08{
	bottom: 180px;
	right: -90px;
	z-index: 0;
}
#useWrapper .itemImg09{
	bottom: -60px;
	left: -30px;
	transform: rotate(60deg);
}


/*
	producerWrapper
-----------------------------------------------------------------------------------------------*/
#producerWrapper .ctsArea {
	padding-top: 120px;
	padding-bottom: 120px;
	position: relative;
}
.titUnder{
	margin-bottom: 50px;
	color: var(--clrLBrown);
	text-align: center;
	letter-spacing: 0.3rem;
}
.titUnder .en {
	display: block;
	line-height: 54%;
	font-size: 4.2rem;
	font-family: var(--fEn);
	font-weight: 300;
	border-bottom: 1px solid var(--clrLBrown);
}
.titUnder .jp {
	display: block;
	margin-top: 10px;
	color: #333333;
	font-size: 1.2rem;
	font-family: var(--fMincho);
}
.producerArea {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.producerArea .boxR {
	max-width: 500px;
}
.producerArea .boxR .tit {
	font-family: var(--fMincho);
	font-size: 2.2rem;
}
.producerArea .boxR .tit span {
	font-size: 1.2rem;
	letter-spacing: -0.1rem;
}
.producerArea .boxR .txt {
	margin-top: 30px;
	line-height: 260%;
	letter-spacing: 0rem;
	text-align: justify;
}
.producerArea  .indent01 {
	text-indent: -0.5rem;
}

/* itemImg
============================== */
#producerWrapper .itemImg01{
	width: 20px;
	height: auto;
	top: -40px;
	right: 20px;
	transform: rotate(90deg);
}
#producerWrapper .itemImg02{
	top: 15px;
	right: 80px;
}
#producerWrapper .itemImg03{
	top: 460px;
	left: 380px;
	transform: rotate(90deg);
}
#producerWrapper .itemImg04{
	bottom: -80px;
	left: 30px;
	z-index: 2;
}


/*
	voiceWrapper
-----------------------------------------------------------------------------------------------*/
.bgPink {
	background: #f3e4e0;
}
#voiceWrapper .ctsArea {
	padding-top: 120px;
	padding-bottom: 120px;
	position: relative;
	z-index: 1;
}
#voiceWrapper .voiceArea {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 26px;
	position: relative;
	z-index: 1;
}
#voiceWrapper .voice {
	width: 477px;
	background: #fff;
	position: relative;
	letter-spacing: 0rem;
}
#voiceWrapper .voice::before {
	position: absolute;
	top: -5px;
	left: -5px;
	content: '';
	background: url(../images/pic_voice_pc.png) no-repeat center center/contain;
	width: 30px;
	height: 21px;
}
#voiceWrapper .people {
	padding: 15px 20px;
	font-size: 1.3rem;
	font-family: var(--fMincho);
	text-align: right;
	line-height: 100%;
	border-bottom: 1px  solid #f3e4e0;
}
#voiceWrapper .txt {
	padding: 20px;
	text-align: justify;
}

/* itemImg
============================== */
#voiceWrapper .itemImg01{
	top: -60px;
	left: -220px;
	z-index: -1;
}
#voiceWrapper .itemImg02{
	bottom: -90px;
	right: -240px;
	z-index: 0;
}
#voiceWrapper .itemImg03{
	top: 10px;
	right: -50px;
	transform: rotate(90deg);
}
#voiceWrapper .itemImg04{
	bottom: 0px;
	left: -50px;
}
#voiceWrapper .itemImg05{
	bottom: -60px;
	right: -20px;
	transform: rotate(340deg);
}


/*
	buyWrapper
-----------------------------------------------------------------------------------------------*/
#buyWrapper .ctsArea {
	padding-top: 100px;
	padding-bottom: 0;
	position: relative;
}
#buyWrapper .buyArea {
	display: flex;
	justify-content: space-between;
	gap: 0 48px;
}
#buyWrapper .product {
	width: 466px;
	text-align: center;
	position: relative;
}
#buyWrapper .productImg {
	margin-bottom: 20px;
}
#buyWrapper .name {
	margin-bottom: 10px;
	font-family: var(--fMincho);
	font-size: 1.8rem;
	line-height: 120%;
}
#buyWrapper .price {
	font-size: 1.4rem;
}
#buyWrapper [class ^= btnArea] {
	margin-top: 30px;
}
#buyWrapper [class ^= btnBase] {
	min-width: 180px;
	padding: 15px;
}
#buyWrapper .txtSub {
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
	padding: 4px 20px;
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 0.1rem;
	border-radius: 20px;
	color: #fff;
	background: var(--clrBrown);
}

/* itemImg
============================== */
#buyWrapper .itemImg01{
	bottom: 100px;
	left: 23px;
	transform: rotate(13deg);
}
#buyWrapper .itemImg02{
	bottom: 60px;
	left: 60px;
	transform: rotate(337deg);
}

/*
	fixBtnWrapper
-----------------------------------------------------------------------------------------------*/
#fixBtnWrapper{
	display: block;
	position: fixed;
	width: 220px;
	height: 130px;
	right: 0;
	top: 100px;
	z-index: 1000;
}
a.fixBtn {
	display: flex;
	align-items: center;
	gap: 0 20px;
	padding: 30px 25px;
	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	letter-spacing: 0rem;
	color: #fff;
	background: rgba(51, 51, 51, .9);
}
a.fixBtn .txt{
	font-family: var(--fMincho);
}
a.fixBtn .arrow {
	display: inline-block;
	margin-top: 13px;
	padding-right: 40px;
	line-height: 100%;
	position: relative;
}
a.fixBtn .arrow::before,
a.fixBtn .arrow::after{
	content: " ";
	display: block;
	position: absolute;
	transition: all 0.3s;
}
a.fixBtn .arrow::before {
	width: 28px;
	height: 1px;
	background-color: #fff;
	top: auto;
	right: 0;
	bottom: 1px;
}
a.fixBtn .arrow::after {
	right: 1px;
	bottom: -3px;
	transform: rotate(45deg);
	border: 5px solid transparent;
	border-top: 5px solid var(--clrLBrown);
}
@media print, screen and (min-width: 813px){
	a.fixBtn:hover .arrow::before {
		right: -5px;
	}
	a.fixBtn:hover .arrow::after {
		right: -4px;
	}
	a.fixBtn:hover{
		opacity: .7;
	}
}

/*
	footer
-----------------------------------------------------------------------------------------------*/
#footerWrapper{
	border-top: 1px solid rgba(51, 51, 51, .1);
	margin-top: auto;
}

/* copyrightArea
============================== */
#footerWrapper .copyrightArea{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 70px;
}
#footerWrapper .copyrightArea .boxR{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 30px;
}

/* copyright */
#footerWrapper .copyright{
	width: 100%;
	text-align: center;
	font-size: 1.1rem;
	font-family: var(--fEn);
	font-weight: 400;
}

/* pageTop
============================== */
#pageTop{
	display: block;
	width: 70px;
	height: 70px;
	background-color: #333;
	position: relative;
}
#pageTop::before,
#pageTop::after{
	content: " ";
	display: block;
	position: absolute;
	transition: all 0.3s;
}
#pageTop::before{
	width: 1px;
	height: 18px;
	background-color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#pageTop::after{
	border: 5px solid transparent;
	border-top: 5px solid #fff;
	top: calc(50% - 2px);
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}
@media print, screen and (min-width:813px){
	#pageTop:hover{
		background-color: #000;
	}
	#pageTop:hover::before{
		top: calc(50% - 5px);
	}
	#pageTop:hover::after{
		top: calc(50% - 7px);
	}
}


@media screen and (max-width:812px){
	body{
		-webkit-text-size-adjust:100%;
		font-size: 1.4rem;
	}
	img{
		width:100%;
	}
	p{
		line-height: 150%;
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	br.sp{
		display:inline-block;
	}


	/*
		common
	-----------------------------------------------------------------------------------------------*/
	:root{
		/* width */
		--wL: 100%;
		--wM: 100%;
		--wS: 100%;
	}

	/* box
	============================== */
	/* ctsWrapper */
	#ctsWrapper{
		padding-bottom: 60px;
	}

	/* ctsArea */
	.ctsArea{
		max-width: 500px;
		padding: 0 20px 80px 20px;
	}
	.cmnSubPage .ctsArea{
		padding: 0px 35px 80px 35px;
	}
	.cmnSubPage .ctsArea:last-of-type{
		padding-bottom: 0px;
	}

	/* font / txt
	============================== */
	/* txtBoxLH (line-height) */
	.txtBoxLH{
		gap: 20px 0;
	}
	.txtBoxLH p{
		line-height: 200%;
	}
	.mgL {
		margin-left: -15px;
	}
	.indent01 {
		text-indent: -1.1rem;
	}
	.indent02 {
		text-indent: 1rem;
	}

	/* tit
	============================== */
	/* titBase (en + jp) */
	[class ^= titBase]{
		margin-bottom: 20px;
		font-size: 2.6rem;
	}
	[class ^= titBase] .en{
		font-size: 3rem;
		line-height: 70%;
	}
	.titBaseGrd .line {
		margin-bottom: 10px;
	}
	.titBaseGrd .line::before{
		top: 22px;
		width: 90vw;
		max-width: 500px;
	}
	.titBaseGrd .hukidashi {
		line-height: 90%;
	}
	.titBaseGrd .hukidashi::before {
		bottom: -7px;
		border-width: 8px 8px 0 8px;
	}
	.titBaseGrd .grd{
		padding: 5px 30px;
		border-radius: 20px;
		font-size: 2rem;
	}


	/* btn
	============================== */
	[class ^= btnArea]{
		gap: 0 15px;
		margin-top: 20px;
	}

	/* btnBase */
	[class ^= btnBase]{
		min-width: 220px;
		padding: 20px;
	}
	.btnBaseArrow::after {
		display: block;
		content: '';
		width: 8px;
		height: 8px;
	}
	/* txtLink */
	a.txtLink{
		font-size: 1.2rem;
	}

	/*
	kvWrapper
	-----------------------------------------------------------------------------------------------*/
	#kvWrapper .ctsArea{
		top: 210px;
	}
	#kvWrapper .txtLink{
		position: absolute;
		top: 10px;
		left: 15px;
	}
	#kvWrapper .titArea{
		margin: 0 auto;
	}
	#kvWrapper .logo{
		width: 170px;
		margin: 0 auto;
	}
	#kvWrapper .tit{
		width: 100%;
		max-width: 390px;
		margin: 30px auto 0;
	}


	/*
		introWrapper
	-----------------------------------------------------------------------------------------------*/
	#introWrapper {
		margin-top: -60px;
	}
	#introWrapper .bgImg{
		max-height: none;
	}
	#introWrapper .ctsArea {
	padding-bottom: 60px;
	}
	#introWrapper .ctsArea{
		top: auto;
		bottom: 0;
		transform: translate(-50%,0);
	}
	#introWrapper .tit{
		width: 100%;
		max-width: 350px;
	}
	#introWrapper .txt{
		width: 260px;
		margin: 20px auto 0;
	}

	/* itemImg
	============================== */
	#introWrapper .itemImg01{
		width: 130px;
		bottom: 130px;
		right: -60px;
	}
	#introWrapper .itemImg02{
		width: 190px;
		bottom: 40px;
		left: -120px;
	}


	/*
		pointWrapper
	-----------------------------------------------------------------------------------------------*/
	#pointWrapper .ctsArea{
		padding-top: 60px;
		padding-bottom: 80px;
	}
	#pointWrapper .ctsArea > .tit{
		width: 100%;
		max-width: 350px;
	}
	[class *= grdBox].boxL::before {
		right: auto;
	}
	[class *= grdBox].boxR::before {
		left: 50%;
	}
	[class *= grdBox]::before {
		transform: translate(-50%,-50%);
		left: 50%;
	}
	.pointArea .txtArea {
		padding: 30px 0px 40px;
	} 
	.pointArea .boxL {
		min-width: auto;
	}
	.pointImg {
		width: 120px;
		height: auto;
		top: -25px;
	}
	.boxR .pointImg {
		left: 0;
	}
	.pointArea .tit {
		font-size: 1.9rem;
	}
	.pointArea .tit span {
		font-size: 2.9rem;
	}
	.pointArea .txt {
		max-width: none;
		padding-top: 15px;
		line-height: 200%;
		font-size: 1.4rem;
	}
	.pointArea .imgArea {
		position: static;
		width: calc(100% + 40px);
		transform: translateX(-20px);
	}

	/* point01
	============================== */
	.point01 {
		margin-top: 60px;
	}	
	/* item */
	.point01 .imgArea .item01 {
		width: 125px;
		height: auto;
		top: -60px;
		right: 10px;
	}	

	/* point02
	============================== */
	.point02 {
		display: flex;
		flex-direction: column-reverse;
		margin-top: 60px;
	}
	/* item */
	.point02 .imgArea .item01 {
		width: 15px;
		bottom: 50px;
		left: 20px;
	}
	.point02 .imgArea .item02 {
		width: 90px;
		bottom: -35px;
		left: -15px;
		z-index: 0;
	}

	/* point03
	============================== */
	.point03 {
		margin-top: 60px;
	}
	.point03 .boxL {
		margin-top: 0;
	}
	/* item */
	.point03 .imgArea .item01 {
		width: 120px;
		top: -410px;
		left: 270px;
	}
	.point03 .imgArea .item02 {
		width: 135px;
		bottom: -40px;
		right: 0px;
	}
	.point03 .imgArea .item03 {
		width: 33px;
		top: -40px;
		right: 20px;
	}

	/* point04
	============================== */
	.point04 {
		display: flex;
		flex-direction: column-reverse;
		margin-top: 60px;
	}
	.point04 .txtNote {
		margin-top: 10px;
		line-height: 120%;
	}
	/* item */
	.point04 .imgArea .item01 {
		width: 110px;
		top: 150px;
		left: 5px;
	}

	/* point05
	============================== */
	.point05 {
		margin-top: 60px;
	}
	/* item */
	.point05 .imgArea .item01 {
		width: 90px;
		top: -310px;
		left: auto;
		right: -10px;
	}

	/* itemImg
	============================== */
	[class *= item] {
		height: auto;
	}
	#pointWrapper .itemImg01{
		width: 60px;
		top: 500px;
		left: -10px;
	}
	#pointWrapper .itemImg02{
		width: 60px;
		top: 1430px;
		left: auto;
		right: 30px;
	}
	#pointWrapper .itemImg03{
		width: 60px;
		left: -26px;
	}
	#pointWrapper .itemImg04,
	#pointWrapper .itemImg05,
	#pointWrapper .itemImg07,
	#pointWrapper .itemImg08,
	#pointWrapper .itemImg09,
	#pointWrapper .itemImg10,
	#pointWrapper .itemImg11{
		display: none;
	}
	#pointWrapper .itemImg06{
		width: 135px;
		top: 150px;
		left: auto;
		right: -10px;
	}


	/*
		materialsWrapper
	-----------------------------------------------------------------------------------------------*/
	#materialsWrapper {
		padding-top: 60px;
	}
	#materialsWrapper.ctsArea > .tit {
		width: 100%;
		max-width: 310px;
	}
	.materialArea {
		padding-top: 40px;
	}
	.materialArea [class ^= titBase] {
		letter-spacing: -0.1rem;
		font-size: 2.6rem;
	}

	/* natureArea
	============================== */
	.natureArea {
		flex-direction: column;
		gap: 50px 0;
	}
	/* imgArea */
	.nature .imgArea{
		margin: 0 auto;
		width: fit-content;
		min-height: 160px;
	}
	.nature .imgArea::before{
		width: 140px;
		height: 160px;
	}
	.nature .imgArea img{
		height: auto;
	}
	.funori .imgArea img{
		width: 180px;
	}
	.sakura .imgArea img{
		width: 150px;
	}
	.germanium .imgArea img{
		width: 205px;
	}
	.nature.funori .imgArea .name{
		width: 90px;
		bottom: 20px;
		right: -20px;
	}
	.nature.sakura .imgArea .name{
		width: 89px;
		top: -6px;
		left: -43px;
	}
	.nature.germanium .imgArea .name{
		width: 120px;
		top: 35px;
		left: -41px;
	}
	/* txtArea */
	.nature .txtArea .tit {
		padding-top: 15px;
		font-size: 2rem;
		min-height: auto;
	}
	.nature .txtArea .tit span {
		letter-spacing: 0rem;
	}
	.nature .txtArea .txt {
		padding-top: 30px;
	}
	.nature .txtArea .txt::before {
		top: 13px;
		width: 15px;
	}

	/* cycleArea
	============================== */
	.cycleArea {
		padding-top: 40px;
	}
	/* item */
	.cycleArea .item01{
		width: 70px;
		top: -20px;
		right: -10px;
	}
	.cycleArea .item02{
		width: 95px;
		top: 130px;
		right: -50px;
	}
	.cycleArea .item03{
		width: 32px;
		top: 90px;
		left: 0px;
	}
	.cycleArea .item04{
		width: 110px;
		bottom: -60px;
		right: -10px;
		transform: rotate(170deg);
	}


	/* itemImg
	============================== */
	#materialsWrapper .itemImg01,
	#materialsWrapper .itemImg06,
	#materialsWrapper .itemImg08{
		display: none;
	}
	#materialsWrapper .itemImg02{
		width: 60px;
		top: 280px;
		right: 0px;
	}
	#materialsWrapper .itemImg03{
		width: 60px;
		top: 1120px;
		right: 0px;
		left: auto;
	}
	#materialsWrapper .itemImg04{
		width: 60px;
		top: 740px;
		left: 0px;
	}
	#materialsWrapper .itemImg05{
		width: 220px;
		top: 340px;
		left: -120px;
		right: auto;
	}
	#materialsWrapper .itemImg07{
		width: 85px;
		top: 160px;
		right: -10px;
	}

	#materialsWrapper .itemImg09{
		width: 250px;
		top: 1790px;
		left: 190px;
	}


	/*
		efficacyWrapper
	-----------------------------------------------------------------------------------------------*/
	#efficacyWrapper .ctsArea {
		padding-bottom: 50px;
	}
	.efficacyBox {
		flex-direction: column;
		gap: 20px 0;
	}
	.efficacy {
		width: 100%;
	}
	.efficacy .txtArea {
		padding: 15px 20px 20px 20px;
	}
	.efficacy .num{
		padding-left: 10px;
		font-size: 1.5rem;
	}
	.efficacy .num span{
		padding-right: 25px;
		font-size: 2rem;
	}
	.efficacy .num span::before{
		top: 13px;
	}
	.efficacy .num span::after{
		right: 13px;
	}
	.efficacy .tit{
		margin-top: 15px;
		font-size: 1.8rem;
	}
	.efficacy .txt{
		max-width: none;
		text-align: justify;
		line-height: 160%;
	}


	/*
		biomassWrapper
	-----------------------------------------------------------------------------------------------*/
	.biomassArea {
		padding: 0 20px 20px 20px;
		background: linear-gradient(transparent 0%,transparent 7%,#fff 7%,#fff 100%);
	}
	.biomassArea .titBaseGrd .grd {
		padding: 8px 40px;
		border-radius: 35px;
	}
	#biomassWrapper .txtArea {
		flex-direction: column;
		gap: 15px 0;
	}
	#biomassWrapper .txt {
		max-width: none;
		line-height: 160%;
	}
	#biomassWrapper [class ^= titBase] {
		margin-bottom: 15px;
	}

	/* itemImg
	============================== */
	#biomassWrapper .itemImg01,
	#biomassWrapper .itemImg03{
		display: none;
	}
	#biomassWrapper .itemImg02{
		width: 85px;
		top: 440px;
		left: -25px;
	}
	#biomassWrapper .itemImg04{
		width: 200px;
		top: -170px;
		right: -90px;
	}


/*
	disuseWrapper
-----------------------------------------------------------------------------------------------*/
	#disuseWrapper {
		margin: 10px;
		background: url(../images/bg_disuse_sp.png) no-repeat center center/cover;
	}
	#disuseWrapper .ctsArea{
		padding-top: 80px;
		padding-left: 10px;
		padding-right: 10px;
	}
	#disuseWrapper .disuseArea > .tit {
		width: 100%;
		max-width: 280px;
		margin: 0 auto;
	}
	#disuseWrapper .disuseArea {
		padding: 60px 20px 40px 20px;
	}
	#disuseWrapper .titSub {
		width: 80px;
		height: 80px;
		font-size: 2rem;
		top: -40px;
	}
	#disuseWrapper .titSub::after {
		bottom: -6px;
		border-width: 7px 7px 0 7px;
	}
	#disuseWrapper .ctsArea > .tit{
		width: 100%;
	}
	#disuseWrapper .txtArea {
		margin-top: 30px;
	}
	#disuseWrapper .txt {
		text-align: justify;
		line-height: 200%;
		letter-spacing: 0.01rem;
	}
	#disuseWrapper .txt:not(:first-of-type) {
		margin-top: 15px;
	}


	/*
		useWrapper
	-----------------------------------------------------------------------------------------------*/
	#useWrapper .ctsArea {
		padding-top: 60px;
	}
	#useWrapper [class^="titBase"] {
		margin-bottom: 20px;
	}
	#useWrapper .useArea {
		padding: 20px;
	}
	#useWrapper .use {
		flex-direction: column;
	}
	#useWrapper .use:not(:first-of-type) {
		padding-top: 30px;
	}
	#useWrapper .use:not(:last-of-type) {
		padding-bottom: 30px;
	}
	#useWrapper .boxL{
		max-width: none;
	}
	#useWrapper .boxL .imgArea {
		width: fit-content;
		margin: 0 auto;
	}
	#useWrapper .boxL .imgArea img{
		width: 160px;
		height: auto;
	}
	#useWrapper .boxL .tit{
		font-size: 2rem;
	}
	#useWrapper .boxL .txt{
		margin-top: 10px;
		line-height: 170%;
		letter-spacing: 0rem;
	}
	#useWrapper .boxR{
		width: 100%;
	}
	#useWrapper .movie{
		margin-top: 10px;
	}
	/* body */
	#useWrapper .body .tit{
		top: 10px;
		right: 0px;
	}
	/* face */
	#useWrapper .face .tit{
		left: 0px;
	}
	/* head */
	#useWrapper .head .tit{
		left: -35px;
	}
	/* otherUses */
	#useWrapper .otherUses .tit{
		top: -15px;
		left: -65px;
		font-size: 1.8rem;
	}

	/* itemImg
	============================== */
	#useWrapper .itemImg01,
	#useWrapper .itemImg02,
	#useWrapper .itemImg05,
	#useWrapper .itemImg07{
		display: none;
	}
	#useWrapper .itemImg03{
		width: 95px;
		top: 70px;
	}
	#useWrapper .itemImg04{
		width: 15px;
		top: 60px;
		left: 20px;
	}
	#useWrapper .itemImg06{
		width: 90px;
		top: 70px;
		right: 0px;
	}
	#useWrapper .itemImg08{
		width: 135px;
		bottom: 0px;
		right: -20px;
	}
	#useWrapper .itemImg09{
		width: 80px;
		bottom: -20px;
		left: 0px;
	}


	/*
		producerWrapper
	-----------------------------------------------------------------------------------------------*/
	#producerWrapper .ctsArea {
		padding-top: 70px;
		padding-bottom: 80px;
	}
	.titUnder{
		margin-bottom: 30px;
	}
	.titUnder .en {
		font-size: 4rem;
	}
	.titUnder .jp {
		margin-top: 7px;
		letter-spacing: 0rem;
	}
	.producerArea {
		flex-direction: column;
		gap: 20px 0;
	}
	.producerArea .boxL img {
		width: 200px;
		height: auto;
	}
	.producerArea .boxR {
		max-width: auto;
	}
	.producerArea .boxR .tit {
		font-size: 2rem;
		text-align: center;
		line-height: 110%;
	}
	.producerArea .boxR .txt {
		margin-top: 10px;
		line-height: 200%;
	}

	/* itemImg
	============================== */
	#producerWrapper .itemImg01{
		width: 20px;
		height: auto;
		top: -30px;
		right: 20px;
	}
	#producerWrapper .itemImg02{
		width: 15px;
		right: 50px;
	}
	#producerWrapper .itemImg03{
		width: 95px;
		top: 260px;
		left: auto;
		right: 30px;
	}
	#producerWrapper .itemImg04{
		width: 122px;
		bottom: -47px;
		left: 0px;
	}


	/*
		voiceWrapper
	-----------------------------------------------------------------------------------------------*/
	#voiceWrapper .ctsArea {
		padding-top: 70px;
		padding-bottom: 80px;
	}
	#voiceWrapper .voiceArea {
		flex-direction: column;
		gap: 25px;
	}
	#voiceWrapper .voice {
		width: 100%;
	}
	#voiceWrapper .voice::before {
		top: -8px;
		background: url(../images/pic_voice_sp.png) no-repeat center center/contain;
		width: 30px;
		height: 21px;
	}
	#voiceWrapper .people {
		padding: 10px 15px;
		font-size: 1.2rem;
	}
	#voiceWrapper .txt {
		padding: 15px;
		font-size: 1.3rem;
		line-height: 160%;
	}

	/* itemImg
	============================== */
	#voiceWrapper .itemImg01{
		width: 350px;
		top: 0px;
		left: -180px;
	}
	#voiceWrapper .itemImg02{
		width: 350px;
		right: -200px;
	}
	#voiceWrapper .itemImg03{
		width: 60px;
		top: 30px;
		right: -10px;
	}
	#voiceWrapper .itemImg04{
		display: none;
	}
	#voiceWrapper .itemImg05{
		width: 135px;
		bottom: -20px;
	}


	/*
		buyWrapper
	-----------------------------------------------------------------------------------------------*/
	#buyWrapper .ctsArea {
		padding-top: 60px;
	}
	#buyWrapper .buyArea {
		flex-direction: column;
		gap: 60px 0;
	}
	#buyWrapper .product {
		width: 100%;
	}
	#buyWrapper .productImg {
		margin-bottom: 15px;
	}
	#buyWrapper [class ^= btnArea] {
		margin-top: 15px;
	}
	#buyWrapper [class ^= btnBase] {
		min-width: 200px;
		padding: 15px;
	}
	#buyWrapper .txtSub {
		top: -12px;
		padding: 3px 15px;
		font-size: 1.4rem;
		font-weight: normal;
		white-space: nowrap;
	}

	/* itemImg
	============================== */
	#buyWrapper .itemImg01{
			width: 15px;
	}
	#buyWrapper .itemImg02{
		width: 15px;
		bottom: 76px;
		left: 40px;
	}

	/*
		footer
	-----------------------------------------------------------------------------------------------*/
	/* copyrightArea
	============================== */
	#footerWrapper .copyrightArea{
		padding-left: 50px;
	}
	#footerWrapper .copyrightArea .boxR{
		display: block;
	}

	/* listPageSub */
	#footerWrapper .copyrightArea .listPageSub{
		display: none;
	}


	/* pageTop
	============================== */
	#pageTop{
		width: 50px;
		height: 50px;
	}
	#pageTop::before{
		height: 13px;
	}
	#pageTop::after{
		border: 3px solid transparent;
		border-top: 3px solid #fff;
		top: calc(50% - 3px);
	}

	/*
	fixBtnWrapper
	-----------------------------------------------------------------------------------------------*/
	#fixBtnWrapper{
		width: 150px;
		height: 80px;
		top: 40px;
	}
	a.fixBtn {
		gap: 0 10px;
		padding: 7px 12px;
		font-family: var(--fMincho);
		font-size: 1.2rem;
	}
	a.fixBtn img{
		width: 19px;
		height: auto;
	}
	a.fixBtn .arrow {
		margin-top: 9px;
	}
}

/* 画面幅狭い時　kv調整 */
@media screen and (min-width:813px) and (max-width:1400px){
	#kvWrapper .ctsArea {
		padding-top: 50px;
	}
}

/* ipad mini */
@media screen and (min-width:768px) and (max-width:769px){
	/* kvWrapper */
	#kvWrapper .ctsArea {
		max-width: 600px;
		padding-right: 50px;
	}
	#kvWrapper .tit {
		max-width: 300px;
	}
	#kvWrapper .titArea {
		margin: 0 0 0 auto;
	}
	/* pointWrapper */
	.pointArea .imgArea {
		width: 100%;
		margin: -15px auto 0;
	}
	.point03 .imgArea .item01 {
		top: -340px;
		left: 350px;
	}
	.point05 .imgArea .item01 {
		top: -270px;
		right: -50px;
	}
}

/* ipad mini横向き */
@media (orientation: landscape) and (min-width:768px) and (max-width:1024px) {
	#kvWrapper img.kvImg {
		width: 110%;
		max-width: none;
		margin-left: -10%;
	}
	#kvWrapper .ctsArea {
		left: 43%;
	}
}

/* デバイスが横向き場合の記述 */
@media (orientation: landscape) and (min-width: 390px) and (max-width: 844px){
	#introWrapper {
		margin-top: -30px;
	}
	#introWrapper .ctsArea {
		padding-bottom: 100px;
	}
	.pointArea .imgArea {
		margin-top: -15px;
	}
}

/* デバイスが横向き(X.SE) 場合の記述 */
@media (orientation: landscape) and (min-width: 375px) and (max-width: 812px){
	/* kvWrapper */
	#kvWrapper .ctsArea {
		max-width: 600px;
		left: 43%;
	}
	#kvWrapper .tit {
		max-width: 300px;
	}
	#kvWrapper .titArea {
		margin: 0 0 0 auto;
	}
	#introWrapper .ctsArea {
		padding-bottom: 60px;
	}
}