@charset "utf-8";

:root {
/* ブランドカラー */
--color-primary:#4bba8f;
--color-secondary:#22b8c6;
--color-accent: #d06363;

/* テキストカラー */
--text-primary: #222;
--text-secondary: #4bba8f;
--text-tertiary: #c49958;

/* 境界・背景カラー */
--border-color: #d5d4d4;
--bg-grey:#f7f7f7;
--bg-beige: #ede4d6;
--bg-green:#eef8f6;
--bg-yellow:#ffdc2e;
--bg-brown:#c49958;

/* フォントファミリー */
--font-primary:"Noto Sans JP", sans-serif;
--font-secondary:"Abel", sans-serif;

/* フォントサイズ */
--font-size-body: clamp(1.5rem, 1.5vw + 0.5rem, 1.6rem);
--font-size-accent: clamp(1.7rem, 1.5vw + 0.5rem, 2rem);
--font-size-heading: clamp(2.2rem, 2vw + 0.8rem, 3.2rem);
--font-size-subheading: clamp(1.8rem, 2vw + 0.6rem, 2.2rem);
--font-size-caption: clamp(1.2rem, 1vw + 0.4rem, 1.4rem);

/* 行間 */
--line-height-base: 1.6;
--line-height-heading: 1.3;
--line-height-caption: 1.4;

/* 半径 */
--border-radius:15px;

/* 装飾 */
--box-shadow:2.12px 2.12px 7px rgba(0, 0, 0, 0.1);
--shadow-light:drop-shadow(0 0 1px #fff);
}

/* Body
========================================== */
html, body{
	width: 100%;
	font-size:62.5%;/*10px*/
}
body {
	color:var(--txt-color);
	letter-spacing: 1px;
	background-color: #fff;
	color:var(--text-primary);
	line-height: var(--line-height-base);
	font-family: var(--font-primary);
	font-size: var(--font-size-body);
	font-weight: 400;
}

@media screen and (max-width: 599px) {
	body{word-wrap:break-word;}
}
/*pc*/
@media screen and (min-width: 600px) {
	.sp {display:none!important;}
}

/*sp*/
@media screen and (max-width: 599px) {
	.pc {display:none!important;}
}

/* header
========================================== */
.header{
	z-index: 1000;
	position: fixed;
	left: 0;
	width: 100%;
	background-color:#fff;
	filter: drop-shadow(var(--box-shadow));
}
.header .inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
	margin: 0 auto;
	padding: 10px 20px;
}
.headerLogo{width: 140px;}
.headerLogo a{
	display: block;
	text-decoration: none;}
.headerLogo img{max-width: 100%;height: auto;}
.headerLogo a:hover img{opacity: 0.7; transition: 0.3s;}
.headerMenu{
	display: flex;
	align-items: center;
	justify-content:flex-end;
	gap: 30px;
	width: calc(100% - 140px - 30px);}
.headerNavi ul{
	line-height: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap:0 2em;
	margin:0 auto;
	list-style: none;}
.headerNavi ul li a{
	display: block;
	color: var(--text-primary);
	text-align: center;
	font-weight: 500;
	transition: 0.3s;
}
.headerNavi ul li a:hover{color: var(--color-primary);}
.headerNavi ul li.externalLink{
	position: relative;
	padding-right: 25px;
}
.headerNavi ul li.externalLink::after{
	content: "";
	right: 0;
	top:0;
	position: absolute;
	background: url(images/icn_link.svg) left top/contain no-repeat;
	width:15px;
	height: 15px;
}
.headerPurchase a{
	letter-spacing: 0;
	line-height: 1;
	display: inline-block;
	padding: 1.5em 60px 1.5em 50px;
	background-color: var(--color-accent);
	border-radius:9999px;
	box-shadow: var(--box-shadow);
	color: #fff;
	text-align: center;
	font-weight: 500;
	white-space:nowrap;
	transition: 0.3s;
}
.headerPurchase a span{position: relative;}
.headerPurchase a span::after{
	content: "";
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	background: url(images/icn_link_white.svg)left top/contain no-repeat;
	width: 15px;
	height: 15px;
}
.headerPurchase a:hover{
	background-color: var(--color-secondary);
}

.gnavSp,
.spBtn,
.headerInfoSp{display: none;}
.drawerMenu{
	opacity: 0;
	visibility: hidden;
}

@media screen and (max-width:1200px){
	.header .inner{width: 100%;padding: 0 20px;}
	.headerLogo{width: 120px;}

}
@media screen and (max-width:840px){
	.header{
		display: block;
		width: 100%;
		height: 70px;
	}
	.header .inner{
		display: block;
		padding: 0 10px;
		height: auto;}
	.headerMenu{display: none;}
	.headerLogo{width:auto;margin-top: 10px;}
	.headerLogo img{
		max-width:auto;
		width: auto;
		height: 50px;}
	/*ドロワーメニュー*/
	.drawerMenu {
		z-index: 1001;
		overflow-y: scroll;
		position: fixed;
		top: 0;
		left: 0;
		padding: 90px 20px 90px;
		width: 100%;
		height: 100vh;
		background-color: #fff;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
	}
	.drawerMenu.open {
		opacity: 1;
		visibility: visible;
	}
	.drawerMenu::-webkit-scrollbar{width: 0;}
	.drawerMenu::-webkit-scrollbar-track{background:transparent;}
	.drawerMenu::-webkit-scrollbar-thumb {background:transparent;}

	.gnavSp{display: block;}
	.gnavSp ul{
		display: flex;
		flex-direction: column;
		border-top: 1px solid var(--border-color);
	}
	.gnavSp ul li{width: 100%;}
	.gnavSp ul li a{
		display: block;
		padding:1.5em 1em;
		border-bottom: 1px solid var(--border-color);
		text-decoration: none;
		text-align: center;
		font-family: var(--font-primary);
		font-weight: 500;
	}
	.gnavSp ul li.externalLink span{
		position: relative;
	}
	.gnavSp ul li.externalLink span::after{
		content: "";
		right: -25px;
		top:4px;
		position: absolute;
		background: url(images/icn_link.svg) left top/contain no-repeat;
		width:15px;
		height: 15px;
	}

	.headerInfoSp{
		display: block;
		margin-top: 50px;
		text-align: center;
	}

	.headerInfoSp .logo{
		width: 160px;
		margin: 0 auto 20px;
	}
	.headerInfoSp .logo a{
		display: block;
	}
	.headerInfoSp .logo img{
		max-width: 100%;
		height: auto;
	}

	.headerInfoSp .tel a{
		width: fit-content;
		color: var(--color-accent);
		font-family: var(--font-secondary);
		font-weight: 400;
		font-size: 3rem;
	}
	.headerInfoSp .hours{
		text-align: center;
	}
	.headerInfoSp .hours span{
		margin-left: .5em;
		font-family: var(--font-secondary);
	}

	.spBtn {
		z-index: 2000;
		position: absolute;
        top: 20px;
        right: 20px;
		display: inline-block;
		width: 50px;
		height:50px;
		cursor: pointer;
	}
	.spBtn div {
		position: relative;
	}
	.spBtn span {
		display: block;
		position: absolute;
		height: 2px;
		width: 100%;
		background:#707070;
		left: 0;
		-webkit-transition: .1s;
		-moz-transition: .1s;
		transition: .1s;
	}
	.spBtn span:nth-child(1) {top: 0;}
	.spBtn span:nth-child(2) {top: 15px;}
	.spBtn span:nth-child(3) {top: 30px;}
	.spBtn.open span:nth-child(1) {
		top: 15px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.spBtn.open span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.spBtn.open span:nth-child(3) {
		top: 15px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
}
@media screen and (max-width:599px){
	.header{height: 60px;}
	.headerLogo{width:auto;margin-top: 8px;}
	.headerLogo img{height: 45px;}
	.spBtn {
		top: 16px;
		width: 36px;
		height:46px;
	}
	.spBtn span:nth-child(1) {top: 0;}
	.spBtn span:nth-child(2) {top: 13px;}
	.spBtn span:nth-child(3) {top: 26px;}
    .headerLogoSp {margin-top: 5px;}
	.headerInfoSp .tel a{font-size:3rem;}
}

/* common
========================================== */
.contents{overflow: hidden;}
/* tel */
a[href^="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}
@media screen and (max-width: 599px) {
	a[href^="tel:"] {
		pointer-events: auto;
		cursor: pointer;
	}
}
.titleMain{
	line-height: var(--line-height-heading);
	margin: 0 auto 2em;
	padding: 0 0.2em;
	width: fit-content;
	font-size: var(--font-size-heading);
	color: var(--text-secondary);
	text-align: center;
}
.titleMain .marker{
	background: linear-gradient(transparent 76%, var(--bg-yellow) 30%);
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
.titleMain.white{color: #fff;}

.anchor {
	margin-top:-80px;
	padding-top:80px;
}
@media screen and (max-width:1024px){
	.anchor {
		margin-top:-60px;
		padding-top:60px;
	}
}
@media screen and (max-width:599px){
	.catchText{font-size: 1.6rem;line-height: 2.5;}
	.catchText.left{display: inline;}
}

/* mv
========================================== */
.mvArea{
	padding-top: 100px;
	width: 100%;
	background: url(images/mv_pic.jpg) left top/cover no-repeat;
}
.mvWrap{
	display: flex;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
.mvWrap .imageBlock{width: 40%;padding:30px;}
.mvWrap .imageBlock img{
	padding-right: 30px;
	max-width: 100%;
	height: auto;
}

.mvWrap .imageBlock p{
	line-height: var(--line-height-heading);
	margin:20px auto 0;
	padding: .5em 2em;
	width: fit-content;
	background-color: var(--color-primary);
	border-radius: 5px;
	color: #fff;
	font-weight: 500;
	font-size:min(1.667vw,2rem);
	text-align: center;
}
.mvWrap .textBlock{
	position: relative;
	display: flex;
	flex: 1;
	justify-content: space-between;
	flex-direction: column;
	padding:30px 40px;
	width: 60%;
	background-color: rgba(255,255,255,0.6);
}
.mvWrap .textBlock::before{
	content: "";
	position: absolute;
	top:20px;
	left: 0;
	background: url(images/new_product.png) left top / contain no-repeat;
	width: 20%;
	height: 15%;
}

.mvWrap .textBlock .name{
	margin-bottom: 20px;
	line-height: var(--line-height-heading);
	color: var(--color-primary);
	text-align: center;
	font-weight: 700;
}
.mvWrap .textBlock .name span{
	display: block;
}
.mvWrap .textBlock .name span:nth-child(1){font-size:min(4.167vw,5rem);}
.mvWrap .textBlock .name span:nth-child(2){font-size:min(6.667vw,8rem);}

.mvWrap .textBlock .pointWrap{
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}
.mvWrap .textBlock .pointWrap dl{
	line-height: 1.3;
	padding: 10px;
	width: calc((100% - 10px * 2)/3);
	text-align: center;
	background-color: var(--bg-brown);
	border-radius: 10px;
}
.mvWrap .textBlock .pointWrap dt{
	margin-bottom: 5px;
	padding:0;
	background-color: #fff;
	border-radius: 9999px;
	font-weight: 400;
	font-size:min(1.333vw,1.6rem);
}
.mvWrap .textBlock .pointWrap dd{
	color: #fff;
	font-weight: 700;
	font-size:min(1.667vw,2rem);
}

.mvWrap .textBlock .price{text-align: center;margin-bottom: 20px;}
.mvWrap .textBlock .price img{max-width: 100%;height: auto;}

.campaignPeriod{
	display: table;
	margin-bottom: 20px;
	border-radius: 9999px;
	border: 2px solid var(--color-secondary);
	background-color: #fff;
}
.campaignPeriod dt{
	display: table-cell;
	vertical-align: middle;
	width: 14em;
	padding: .5em 1em;
	background-color: var(--color-secondary);
	border-radius: 9999px;
	color: #fff;
	font-weight: 500;
	font-size:min(1.5vw,1.5rem);
	text-align: center;
}
.campaignPeriod dd{
	display: table-cell;
	width: calc(100% - 14em);
	padding: .5em 1em;
	text-align: center;
	font-weight: 600;
	font-size:min(1.833vw,2.2rem);
}
.campaignPeriod dd div{display: inline-block;}
.campaignPeriod dd span{font-size:min(1.167vw,1.4rem);}

.mvWrap .textBlock .btnPurchase a{padding: 1em 3em;}

@media screen and (max-width:1200px){
}
@media screen and (max-width:840px){
	.mvArea{padding-top: 60px;}
	.mvWrap .textBlock{padding: 30px clamp(20px, 5vw, 30px);}
	.mvWrap .textBlock .name span:nth-child(2){font-size:min(5vw,4.2rem);}


}
@media screen and (max-width:599px){
	.mvWrap{flex-direction: column;}
	.mvWrap .imageBlock{width: 100%;text-align: center;}
	.mvWrap .imageBlock img{max-width:50%;}
	.mvWrap .imageBlock p{font-size:min(3.339vw,2rem);}
	.mvWrap .textBlock{width: 100%;}
	.mvWrap .textBlock .name span:nth-child(1){font-size:min(6.01vw,3.6rem);}
	.mvWrap .textBlock .name span:nth-child(2){font-size:min(7.679vw,4.6rem);}
	.mvWrap .textBlock .pointWrap dt{font-size:min(2.337vw,1.4rem);}
	.mvWrap .textBlock .pointWrap dd{font-size:min(3.005vw,1.8rem);}
	.campaignPeriod dt{font-size:min(2.003vw,1.2rem);padding: 0 0.5em;width: 12em;}
	.campaignPeriod dd{font-size:min(3.339vw,2rem);width:calc(100% - 12em);}
	.campaignPeriod dd span{font-size:min(2.003vw,1.2rem);}

}
@media screen and (max-width:400px){
	.mvWrap .textBlock .pointWrap{flex-wrap: wrap;justify-content: center;}
	.mvWrap .textBlock .pointWrap dl{width: calc((100% - 10px)/2);}
	.mvWrap .textBlock .pointWrap dt{font-size:min(3.5vw,1.4rem);}
	.mvWrap .textBlock .pointWrap dd{font-size:min(4vw,1.6rem);}
	.campaignPeriod dt{font-size:min(3vw,1.2em);width:9em;line-height: 1.3;}
	.campaignPeriod dd{font-size:min(4vw,1.6rem);}
}

/* 申込特典
========================================== */
.benefitsArea{
	position: relative;
	margin: 60px auto;
	padding: 30px;
	max-width: 1200px;
	border-radius: 20px;
	background: url(images/benefits_bg.jpg) center top/cover no-repeat;
}
.benefitsArea::before{
	content: "";
	position: absolute;
	left: 10px;
	bottom:10px;
	background: url(images/icn_present.png) left top/contain no-repeat;
	width:150px;
	height:138px;
}
.benefitsTitle{
	line-height: var(--line-height-heading);
	margin: 10px auto;
	padding: 0.3em 2.5em;
	width: fit-content;
	border-radius: 9999px;
	background-color: var(--color-accent);
	color: #fff;
	font-weight: 300;
	font-size: var(--font-size-heading);
	text-align: center;
}
.benefitsList{
	z-index: 2;
	position: relative;
	display: flex;
	justify-content: center;
	padding: 0 80px;
	gap: 10px;
}
.benefitsList li{
	max-width:322px;
}
.benefitsList li img{
	width: 100%;
	height: auto;
}

@media screen and (max-width:1200px){
	.benefitsArea{
		margin-right:clamp(20px, 5vw, 30px);
		margin-left: clamp(20px, 5vw, 30px);
		padding: 20px;
	}
}
@media screen and (max-width:840px){
	.benefitsArea::before{display: none;}
	.benefitsList{padding: 0;}

}
@media screen and (max-width:599px){
	.benefitsArea{margin: 30px clamp(20px, 5vw, 30px);}
	.benefitsTitle{font-size:min(5vw,2rem);}

}

/* 特長
========================================== */
.featuresArea{
	padding: 80px 0;
}
.featuresWrap{
	position: relative;
	margin: 0 auto;
	max-width: 1200px;
}
.featuresWrap::before{
	z-index: -1;
	content:"";
	position: absolute;
	top: -25px;
	left: 0;
	background: url(images/merit_bg.jpg) left top /contain no-repeat;
	width:30%;
	height:30%;
}
.featuresCatchText{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom:3em;
	color:var(--text-tertiary);
	font-size: var(--font-size-subheading);
}
.featuresCatchText .break{
	flex-basis: 100%;
	height: 0;
}
.featuresBoxWrap{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.featuresBox{
	padding: 20px;
	width: calc((100% - 30px * 2)/3);
	background-color: #fff;
	box-shadow: 0 0 20px 1px rgba(8, 33, 82, 0.15);
	border-radius: 20px;
}
.featuresBox .imageBlock{margin-bottom: 20px;}
.featuresBox .imageBlock img{
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.featuresBox .title{
	line-height:var(--line-height-heading);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom:1em;
	color: var(--text-secondary);
	font-weight: 600;
	font-size: var(--font-size-subheading);
}
.featuresBox .text{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	word-break: break-word;
	overflow-wrap: anywhere;
}
.featuresBox .title .break,
.featuresBox .text .break{
	flex-basis: 100%;
	height: 0;
}


@media screen and (max-width:1200px){
	.featuresArea{
		padding-right:clamp(20px, 5vw, 30px);
		padding-left: clamp(20px, 5vw, 30px);}
}

@media screen and (max-width:840px){
	.featuresBoxWrap{gap: 20px;}
	.featuresWrap::before{top: 50px;}
	.featuresBox{width: calc((100% - 20px)/2);}

}

@media screen and (max-width:599px){
	.featuresBox{
		padding: 15px;
		width: calc((100% - 20px)/2);}
	.featuresWrap::before{display: none;}
	.featuresBox .title,
	.featuresBox .text {
		display: block;
		justify-content: unset;
		text-align: left;
		font-size: 0;
	}
	.featuresBox .title{margin-bottom: 15px;}
	.featuresBox .title span{font-size:var(--font-size-accent);}
	.featuresBox .text span{font-size:var(--font-size-body);}

	.featuresBox .title .break{display: none;}
	.featuresBox .text .break {display: none;}

	.featuresBox .title span{font-size: 1.6rem;}
    .featuresBox .text span {font-size: 1.4rem;}
}

/* キャンペーン
========================================== */
.campaignArea{
	padding: 80px 0;
	background: url(images/campaign_bg.jpg) center bottom/cover no-repeat;
}
.campaignWrap{
	margin: 0 auto;
	max-width: 1200px;
}

.campaignTitle{
	margin-bottom: 30px;
	text-align: center;
}
.campaignTitle img{
	max-width: 100%;
	height: auto;
}
.campaignList{
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}
.campaignList li{
	text-align: center;
}
.campaignList li img{
	max-width: 100%;
	height: auto;
}

.btnFaq{
	margin: 0 auto;
	width: fit-content;}
.btnFaq a{
	line-height: 1.3;
	position: relative;
	display: block;
	padding: 1.5em 4em calc(1.5em + 20px);
	background-color: var(--bg-brown);
	box-shadow: 8px 8px 10px rgba(39, 48, 45, 0.15);
	border-radius: 9999px;
	text-align: center;
	font-size: var(--font-size-subheading);
	color: #fff;
	transition: .3s;
}
.btnFaq a::after{
	content: "";
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateY(-50%);
	background: url(images/icn_arrow_white.svg)left top/contain no-repeat;
	width:15px;
	height:13px;
	transition: .3s;
}
.btnFaq a:hover{background-color: var(--color-secondary);}
.btnFaq a:hover::after{bottom: 10px}

@media screen and (max-width:1200px){
	.campaignArea{
		padding-right:clamp(20px, 5vw, 30px);
		padding-left: clamp(20px, 5vw, 30px);}
}
@media screen and (max-width:840px){
	.btnFaq a{padding: 1em 3em calc(1em + 25px);}

}
@media screen and (max-width:599px){
	.campaignArea{padding:40px clamp(20px, 5vw, 30px) 60px;}
	.btnFaq{width: 100%;}
	.btnFaq a{padding: 1em;}
	.btnFaq a::after{
		right: 30px;
		left: auto;
		bottom: auto;
	}
	.btnFaq a:hover::after{bottom:auto;}
}


/* 会社紹介
========================================== */
.companyArea{
	padding: 100px 0;
}
.companyWrap{
	margin: 0 auto;
	max-width: 1200px;
}
.companyTitle{
	line-height: var(--line-height-heading);
	margin-bottom:2em;
	font-size: var(--font-size-heading);
	color: var(--text-tertiary);
	text-align: center;
}
.companyImageText{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	margin-bottom: 60px;
}
.companyImageText .imageBlock{width: 50%;}
.companyImageText .imageBlock img{
	max-width: 100%;
	height: auto;
	border-radius:10px;
}
.companyImageText .textBlock p + p{
	margin-top: 1.5em;
}
.productWrap{
	display: flex;
	align-items: stretch;
	gap: 40px;
	margin-bottom: 60px;
}
.productWrap .productBox{
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	padding: 30px;
	background-color: var(--bg-beige);
	border-radius: 10px;
	width: calc((100% - 40px)/2);
}
.productWrap .productBox h3{
	margin-bottom: 1em;
	padding: .5em 1em;
	background-color: var(--color-primary);
	border-radius: 9999px;
	line-height: var(--line-height-heading);
	font-size: var(--font-size-subheading);
	font-weight: 600;
	color: #fff;
	text-align: center;
}
.productWrap .productBox h3.naturalwater{
	background-color: var(--color-secondary);
}
.productWrap .productBox .imageBlock{
	margin-bottom: 20px;
	text-align: center;
}
.productWrap .productBox .imageBlock img{
	max-width: 100%;
	height: auto;
}
.meritList,
.demeritList{
	display: flex;
	flex-direction: column;
	padding: 1.5em;
	background-color: #fff;
	border-radius:5px;
}
.meritList{margin-bottom: 15px;}
.meritList li,
.demeritList li{
	position: relative;
	padding-left: 30px;
}
.meritList li + li,
.demeritList li + li{margin-top:1em;}
.meritList li::before,
.demeritList li::before{
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
}
.meritList li::before{
	background: url(images/icn_good.svg)left top/contain no-repeat;
	width:16px;
	height:16px;
}
.demeritList li::before{
	background: url(images/icn_bad.svg)left top/contain no-repeat;
	width:15px;
	height:15px;
}

.companyLink{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}
.companyLink li{width: calc((100% - 40px)/2);}

.companyLink li.purchase a,
.companyLink li.naturalwater a{
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 1em 3em;
	border-radius: 9999px;
	background-color: var(--color-accent);
	box-shadow: 8px 8px 10px rgba(39, 48, 45, 0.15);
	color: #fff;
	text-align: center;
	font-weight: 600;
	font-size: var(--font-size-subheading);
	transition: 0.3s;
}
.companyLink li.naturalwater a{background-color: var(--color-secondary);}

.companyLink li a small{
	position: relative;
	display:block;
	margin:5px auto 0;
	padding-right: 25px;
	width: fit-content;
	font-weight: 400;
	font-size: var(--font-size-caption);
}
.companyLink li a small::after{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(images/icn_link_white.svg)left top/contain no-repeat;
	width: 15px;
	height: 15px;
}

.companyLink li.purchase a:hover,
.companyLink li.naturalwater a:hover{background-color: var(--color-primary);}

@media screen and (max-width:1200px){
	.companyArea{
		padding-right:clamp(20px, 5vw, 30px);
		padding-left: clamp(20px, 5vw, 30px);}
}

@media screen and (max-width:840px){
	.productWrap{gap: 20px;}
	.productWrap .productBox{width: calc((100% - 20px)/2);}
	.companyImageText{gap:30px;}
	.companyLink{
		flex-direction: column;
		gap: 20px;
	}
	.companyLink li{width:100%;}
}
@media screen and (max-width:599px){
	.companyTitle{font-size:min(5vw,2rem);}
	.companyImageText{
		flex-direction: column;
		gap: 20px;
		margin-bottom: 30px;
	}
	.companyImageText .imageBlock{width: 100%;}
	.productWrap{flex-direction: column;}
	.productWrap .productBox{width:100%;padding: 25px;}
}


/* よくあるご質問
========================================== */
.faqArea{
	padding: 80px 0;
	background-color: var(--bg-green);
}
.faqWrap{
	margin: 0 auto;
	max-width: 1200px;
}

.faqBox{
	background-color: #fff;
	border-radius: 10px;
	padding: 60px;
}
.faqBox:not(:last-of-type){margin-bottom: 30px;}

.faqBox h3{
	position: relative;
	padding: 0 0 1.5em 2em;
	margin-bottom: 1em;
	border-bottom:1px solid var(--border-color);
	line-height: var(--line-height-heading);
	color: var(--color-primary);
	font-weight: 600;
	font-size: var(--font-size-subheading);
}
.faqBox h3::before{
	line-height: 1;
	content: "Q.";
	position: absolute;
	top: -3px;
	left: 0;
	font-size: 3rem;
	padding-right: .5em;
}

.faqCampaign{padding-left: 30px;}
.faqCampaign:not(:last-of-type){margin-bottom: 40px;}
.faqCampaign h4{
	margin-bottom: 1em;
	margin-left: -30px;
	line-height: var(--line-height-heading);
	color: var(--color-primary);
	font-weight: 600;
	font-size: var(--font-size-subheading);
}

.faqCampaign dl{
	line-height: var(--line-height-heading);
	display: flex;
	align-items: self-start;
	gap: 1em;
}
.faqCampaign dl:not(:last-of-type){margin-bottom: 10px;}
.faqCampaign dt{
	width: 10em;
	padding: 0.3em 1em;
	border-radius: 9999px;
	background-color: var(--bg-brown);
	color: #fff;
	text-align: center;
	font-weight: 500;
}
.faqCampaign dd{
	padding: 0.3em 0 0;
	width: calc(100% - 11em);}

@media screen and (max-width:1200px){
	.faqArea{
		padding-right:clamp(20px, 5vw, 30px);
		padding-left: clamp(20px, 5vw, 30px);}
	.faqBox{padding: 30px;}
}

@media screen and (max-width:599px){
	.faqCampaign{padding-left: 0;}
	.faqCampaign h4{margin-left: 0;}
	.faqBox{padding: 1.5em;}
	.faqBox h3::before{
		top: 2px;
		font-size: 2rem;
	}
	.faqCampaign dl{flex-direction: column;gap: .5em;}
	.faqCampaign dl:not(:last-of-type){margin-bottom: 2em;}
	.faqCampaign dd{width: 100%;}



}

/* お申し込み
========================================== */
.contactArea{
	padding: 80px 0;
	background: url(images/contact_bg.jpg) left top/cover no-repeat;
}
.contactWrap{
	margin: 0 auto;
	max-width: 1200px;
}
.boxPurchase,
.boxTel,
.boxMail{
	margin: 0 auto;
	width: 50%;
	text-align: center;
}
.boxPurchase h3,
.boxTel h3,
.boxMail h3{
	line-height: var(--line-height-heading);
	margin: 0 auto 1em;
	padding: .3em 1.2em;
	width: fit-content;
	border-radius: 5px;
	background-color: var(--bg-yellow);
	font-weight: 600;
	font-size: var(--font-size-accent);
}
.contactWrap .flex{
	display:flex;
	justify-content: center;
	gap: 60px;
	margin-top: 60px;
}
.btnPurchase a,
.btnMail a{
	display: block;
	width: fit-content;
	line-height: 1.3;
	margin: 0 auto;
	padding: 1.5em 3em;
	border-radius: 9999px;
	background-color: var(--color-accent);
	box-shadow: 8px 8px 10px rgba(39, 48, 45, 0.15);
	color: #fff;
	text-align: center;
	font-weight: 600;
	font-size: var(--font-size-subheading);
	transition: 0.3s;
}
.btnMail a{
	color: var(--text-primary);
	background-color: #fff;}

.btnPurchase a small,
.btnMail a small{
	display: inline-block;
	font-size: var(--font-size-caption);}

.btnPurchase a .text,
.btnMail a .text{
	position: relative;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
}

.btnPurchase a .text::after,
.btnMail a .text::after{
	content: "";
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	background: url(images/icn_link_white.svg)left top/contain no-repeat;
	width: 15px;
	height: 15px;
	transition: 0.3s;
}
.btnMail a .text::after{background-image: url(images/icn_link.svg);}

.btnPurchase a:hover,
.btnMail a:hover{color: #fff;background-color: var(--color-secondary);}
.btnMail a:hover .text::after{background-image: url(images/icn_link_white.svg);}

.boxTel .tel{margin-bottom: 10px;}
.boxTel .tel a{
	line-height: 1;
	font-weight: 400;
	font-size: 4rem;
	font-family: var(--font-secondary);
	color:#fff;
}

.boxTel .hours{
	line-height: 1.2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1em;
	color: #fff;
}
.boxTel .hours dt{
	width: fit-content;
	padding: .2em .5em;
	background-color: #fff;
	color: var(--color-primary);
}
.boxTel .hours dd{color:#fff;}

@media screen and (max-width:1200px){
	.contactArea{
		padding-right:clamp(20px, 5vw, 30px);
		padding-left: clamp(20px, 5vw, 30px);}
}

@media screen and (max-width:840px){
	.contactArea{
		padding:40px clamp(20px, 5vw, 30px) 40px;
		background-image: none;
		background-color: var(--color-primary);
	}
	.btnPurchase a,
	.btnMail a{
		padding: 1em 3em;
	}
}
@media screen and (max-width:599px){
	.contactWrap .flex{
		flex-direction: column;
		gap: 40px;
	}
	.boxPurchase,
	.boxTel,
	.boxMail{width: 100%;}
}

/* フッター
========================================== */
footer{
	margin: 0 auto;
	padding: 60px 0 30px;
	width: 1200px;
}
.footerSpPurchase{display: none;}
.footerLogo{
	margin: 0 auto 20px;
	width:200px;
}
.footerLogo img{
	width: 100%;
	height: auto;
}
.footerInfo{
	margin: 0 auto 60px;
	width: fit-content;
}
.footerTel{
	width: fit-content;
	color: var(--color-accent);
	font-family: var(--font-secondary);
	font-weight: 400;
	font-size: 3rem;
}
.footerHours{
	text-align: center;
}
.footerHours span{
	margin-left: .5em;
	font-family: var(--font-secondary);
}

.footerNavi{
	width: fit-content;
	margin: 0 auto 60px;
}
.footerNavi ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1em 2em;
}
.footerNavi ul li.externalLink{
	position: relative;
	padding-right: 25px;
}
.footerNavi ul li.externalLink::after{
	content: "";
	right: 0;
	top:5px;
	position: absolute;
	background: url(images/icn_link.svg) left top/contain no-repeat;
	width:15px;
	height: 15px;
}

.footerNavi ul li a{
	font-size: var(--font-size-caption);
	font-weight: 500;}
.footerNavi ul li a:hover{text-decoration: underline;}
.copyright{
	letter-spacing: 1px;
	margin-top: 20px;
	font-size: 1.2rem;
	font-optical-sizing: auto;
	font-weight: 400;
	text-align: center;}

@media screen and (max-width:1200px){
	footer{
		margin: 0 auto;
		padding: 60px 5% 30px;
		width: 100%;
	}
}
@media screen and (max-width:840px){
	footer{padding: 60px 5% 75px;}
	.footerSpPurchase{
		z-index: 2000;
		display: block;
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
	}
	.footerSpPurchase a{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 60px;
		text-decoration: none;
		color: #fff;
		background-color: var(--color-accent);
		font-size: var(--font-size-sm);
		font-weight: 600;
	}
	.footerSpPurchase a span{position: relative;}
	.footerSpPurchase a span::after{
		content: "";
		position: absolute;
		right: -30px;
		top: 50%;
		transform: translateY(-50%);
		background: url(images/icn_link_white.svg)left top/contain no-repeat;
		width: 15px;
		height: 15px;
	}

	.footerWrap{
		flex-wrap: wrap;
		flex-direction: column;
		gap: 40px;
	}
	.footerInfo{text-align: center;}
	.footerLogo{margin: 0 auto 30px;}
	.footerTel{margin: 0 auto;}
	.footerLink{
		justify-content: center;
		flex-wrap: wrap;
		flex-direction:row;
	}
}
@media screen and (max-width:599px){
	.footerLink{gap: 20px;}
	.footerLink li{width: 100%;}
	.footerLink li a{
		width: 100%;
		padding: 1.5em;
		display: block;
	}
	.footerNavi{padding:0 1em;gap: 1em;width: 100%;justify-content: space-between;}
	.footerNavi ul{
	}
}
