@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	color: #4c4947;
	font-size: 16px;
	background: #fff;
	-webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
	overflow: auto;
}
.hamopen {
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}
a {
	text-decoration: none;
	transition: .4s;
}
/*=====ウェブアクセシビリティ=====*/
a:focus-visible {
	outline: 4px solid blue !important;
	outline-offset: -1px;
	box-shadow: 0 0 0 4px white;
}
button:focus-visible {
	outline: 4px solid blue !important;
	outline-offset: -1px;
	box-shadow: 0 0 0 4px white;
}
ul, ol {
	list-style: none;
	padding: 0;
}
main {
	display: block;
	position: relative;
	overflow: hidden;
}
main section {
	padding: 100px 0 115px;
	position: relative;
}
main section.stb {
	padding: 120px 0;
}
@media (max-width: 550px) {
	main section {
		padding: 60px 0 70px;
	}
	main section.stb {
		padding: 65px 0;
	}
}
/* 画像 */
img {
	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
/* テキスト */
p {
	margin-bottom: 10px;
}
.marker {
	text-decoration: underline;
	text-decoration-thickness: 0.45em;
	text-decoration-color: rgba(255, 239, 135, 0.55);
	text-underline-offset: -0.05em;
	text-decoration-skip-ink: none;
}
/*見出し01*/
.maintitle {
	margin-bottom: 55px;
	display: block;
	text-align: center;
	line-height: 0.75;
	position: relative;
	font-size: clamp(2rem, 1.125rem + 2.8vw, 2.7rem);
	font-weight: 500;
}
.maintitle .mf {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	text-transform: capitalize;
	white-space: nowrap;
	letter-spacing: 0.025em;
	position: relative;
}
.maintitle .sf {
	font-size: 40%;
}
.maintitle.mtleft {
	text-align: left;
}
.txtmgb {
	margin-bottom: 37px !important;
}
.twhite, .twhite p, .twhite span {
	color: #fff !important;
}
@media (max-width: 550px) {
	.maintitle {
		margin-bottom: 35px;
	}
	.txtmgb {
		margin-bottom: 27px !important;
	}
}
/*見出し02*/
.stitle {
	font-weight: 500;
	position: relative;
	font-size: clamp(1.07rem, 0.845rem + 0.72vw, 1.25rem);
	padding-left: 2px;
	line-height: 1.75;
	padding-bottom: 9px;
	padding-top: 7px;
	margin-bottom: 17px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}
.stitle::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 95px;
	height: 1px;
	background: #4c4947;
}
.stitle .en {
	font-size: 107%;
	margin-right: 12px;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	text-transform: capitalize;
}
@media (max-width: 550px) {
	.stitle {
		margin-bottom: 12px;
	}
}
/*見出し03*/
.mtitle {
	font-weight: 500;
	position: relative;
	margin-bottom: 15px;
	letter-spacing: 0.1em;
	font-size: clamp(1.15rem, 0.9625rem + 0.6vw, 1.3rem);
	line-height: 1.7;
	background: #f7f4ed;
	padding: 6px 9px 9px;
	padding-right: 23px;
}
.bg_cream .mtitle {
	background: #fff;
}
.mtitle::after {
	content: '';
	width: 20px;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.17);
	pointer-events: none;
}
@media (max-width: 550px) {
	.mtitle {
		margin-bottom: 15px;
	}
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 19px;
	transition: .4s;
	display: inline-block;
	width: 265px;
	text-align: center;
	z-index: 1;
	overflow: hidden;
	border: 1px solid #4c4947;
	color: #4c4947;
	background: transparent;
}
section .mainbtn a::before {
	content: url(../img/deco.svg);
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	height: 30px;
	width: 40px;
	transition: .3s;
}
section .mainbtn a:hover::before {
	right: 7px;
	transition: .8s;
}
@media (max-width: 550px) {
	.mainbtn {
		margin: auto;
	}
	.mainbtn a {
		width: 220px;
		padding: 13px;
	}
	section .mainbtn a::before {
		right: 10px;
		height: 33px;
		width: 31px;
	}
}
/*flex要素*/
.flexbox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media (max-width: 750px) {
	.flexbox {
		display: block;
	}
	.flexbox img {
		width: 100%;
	}
	.flexbox div {
		width: 100%;
	}
}
.reverse {
	flex-direction: row-reverse;
}
/*幅*/
.inner {
	width: 91%;
	max-width: 1200px;
	margin: 0 auto;
}
@media (min-width: 2000px) {
	.inner02 {
		max-width: 1500px;
		width: 92%;
		margin: 0 auto;
	}
}
@media (max-width: 1999px) {
	.inner02 {
		max-width: 100%;
		width: 100%;
	}
	.mauto {
		margin-left: auto;
		margin-right: auto;
	}
	.mauto.w48 {
		width: 42%;
	}
	.mauto.w43 {
		width: 37%;
	}
}
@media (max-width: 750px) {
	.inner02 {
		width: 91%;
		margin: 0 auto;
	}
	.mauto.w48, .mauto.w43 {
		width: 100%;
	}
}
.w65 {
	width: 65%;
}
.w56 {
	width: 56%;
}
.w49 {
	width: 49%;
}
.w48 {
	width: 48%;
}
.w42 {
	width: 42%;
}
.w38 {
	width: 38%;
}
.w32 {
	width: 32%;
}
/*background*/
.bg_cream::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #f7f4ed;
	z-index: -100;
}
/*=== 共通部分ここまで ===*/
/* header */
.header_sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: transparent;
	border-bottom: 1px solid transparent;
	transition: .9s;
	padding: 17px 0 0;
}
.header {
	width: 100%;
	position: relative;
}
.header_inner {
	max-width: 1900px;
	width: 96%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_title h1 {
	line-height: 1;
}
.header_title {
	width: 315px;
	filter: brightness(0) invert(1);
	z-index: 100;
	transition: .6s;
	position: relative;
	top: 3px;
}
.change .header_title {
	filter: none
}
.header_title a {
	display: block;
}
.header_title a:hover {
	opacity: 0.6;
}
.header .inner {
	max-width: 1200px;
}
.header ul {
	display: flex;
	text-align: center;
	align-items: center;
}
.header ul li {
	margin: 0 3px;
	margin-right: 17px;
}
.header ul li:last-child {
	margin-right: 0;
}
.header ul li a {
	display: block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
	color: #fff;
	font-size: 0.95rem;
	line-height: 1.75;
}
.header ul li:last-child a {
	margin-right: 0;
}
.change .header ul li a {
	color: #4c4947;
}
/*tel*/
.header ul li.htel a {
	font-size: 0.93rem;
	padding: 0;
	padding-bottom: 1px;
	padding-left: 20px;
	border-left: 1px solid #fff;
}
.change .header ul li.htel a {
	border-left: 1px solid #4c4947;
}
.header ul li a:hover {
	opacity: 0.6;
}
/* dropdown ドロップダウンメニュー */
/* sub-menu */
.menu-item-has-children {
	position: relative;
}
.sub-menu {
	position: absolute;
	top: 35px;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	opacity: 0;
	visibility: hidden;
	transition: .1s;
	z-index: 4;
	flex-direction: column;
}
.sub-menu li {
	margin: 0 !important;
	margin-bottom: 3px !important;
	width: 100% !important;
	background: #f7f4ed;
	border: 1px solid #fff !important;
}
.sub-menu li:last-child {
	border-bottom: none;
}
.sub-menu a {
	color: #4c4947 !important;
	font-size: 0.8rem !important;
	padding: 5px 0 !important;
}
/* ホバー＆フォーカスで子メニュー表示 */
/* Display sub menu by hover & focus */
.menu-item-has-children:hover ul, .menu-item-has-children ul.focused {
	opacity: 1;
	visibility: visible;
}
.sub-menu a:hover {
	opacity: 0.2;
}
/**/
.header_nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_nav .f_link_btns {
	margin-top: 3px;
	margin-left: 10px;
}
.header_item {
	display: flex;
	justify-content: flex-end;
}
.header_item .mainbtn a {
	padding: 5px;
	width: 190px;
	font-size: 90%;
	border: 1px solid #a6a09a !important;
	color: #fff !important;
	background: #a6a09a !important;
}
.header_item .mainbtn a:hover {
	color: #a6a09a !important;
	background: #fff !important;
}
.header_item .mainbtn::before, .header_item .mainbtn::after {
	content: none;
}
.header_item > div {
	margin: 0 5px;
}
/* hamburger */
.header__inner {
	display: none;
}
.hamburger {
	position: fixed;
	display: block;
	height: 60px;
	top: 15px;
	right: 30px;
	z-index: 9999;
	width: 60px;
	border: none;
	background-color: transparent;
}
.hamburger.-active {
	filter: none;
}
.hamburger.-active .hamburger__line {
	background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
	top: 0;
	transform: rotate(45deg);
	background: #4c4947;
}
.hamburger.-active .hamburger__line::after {
	top: 0;
	transform: rotate(-45deg);
	background: #4c4947;
}
/*
.hamburger.-active .hamburger__text::before {
	content: 'close';
}
*/
.hamburger__line {
	display: block;
	height: 1px;
	position: absolute;
	top: 23px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	transition: 0.4s;
	width: 50px;
}
.hamburger__line:before, .hamburger__line:after {
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	width: 100%;
	background-color: #fff;
	transition: inherit;
}
.change .hamburger__line, .change .hamburger__line:before, .change .hamburger__line:after {
	background: #4c4947;
}
.hamburger__line:before {
	top: -9px;
}
.hamburger__line:after {
	top: 9px;
}
.hamburger__text {
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
/*
.hamburger__text::before {
	content: "menu";
	text-align: center;
	color: #333;
	font-size: 19px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: capitalize;
}
*/
.header {
	width: 100%;
}
.header__nav-area {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	height: 100vh;
	width: 100%;
	visibility: hidden;
	background: #f7f4ed;
	opacity: 0;
	transition: 0.4s;
	overflow-y: scroll;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}
.header__nav-area a {
	color: #4c4947;
}
.header__nav-area.-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.global-navigation {
	margin: auto;
	height: fit-content;
	width: 85%;
	padding: 30px 0 70px;
}
.global-navigation__list > li {
	margin: 3px 0;
	font-weight: 500;
	font-size: 1.2rem;
	transition: .35s;
	display: block;
	padding: 10px 5px;
	border-bottom: 1px solid #c2bbb6;
	line-height: 2;
}
.global-navigation__list > li a {
	display: inline-block;
	width: 100%;
}
.global-navigation__link.-active::after {
	transform: translateY(-50%) rotate(-90deg);
}
.global-navigation__list > li span {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	text-transform: capitalize;
	font-size: 60%;
	display: block;
	padding-left: 3px;
}
/*accordion menu*/
.accordionmenu {
	padding-top: 0 !important;
}
_:lang(x)::-moz-placeholder, .accordionmenu {
	padding-top: 10px !important;
}
.accordion__list li {
	font-size: 1rem;
}
.accordion__list li + li {
	margin-top: 11px;
}
.accordion__list li a::before {
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 7px;
	font-size: 0.6rem;
	transform: translateY(-2px);
	color: #7a7572;
}
.accordion__link {
	opacity: 0.85;
}
.accordion {
	height: 0;
	overflow: hidden;
	visibility: hidden;
	transition: 0.4s;
}
.accordion.-active {
	height: auto;
	padding-top: 17px;
	visibility: visible;
}
.global-navigation__link.-accordion {
	position: relative;
	background: none;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	padding: 0;
	text-align: left;
	color: #4c4947;
	letter-spacing: 0.1em;
}
/*＋マーク*/
.global-navigation__link.-accordion::after {
	content: '';
	display: block;
	height: 12px;
	position: absolute;
	top: 50%;
	right: 5px;
	width: 2px;
	background-color: #7a7572;
	transform: translateY(-50%);
	transition: transform 0.4s;
}
.global-navigation__link.-accordion::before {
	content: '';
	display: block;
	height: 2px;
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	background-color: #7a7572;
	transform: translateY(-50%);
}
.global-navigation__link.-active::after {
	transform: translateY(-50%) rotate(-90deg);
}
/*btn*/
.hambtn {
	margin-top: 20px;
}
.hambtn .btn a {
	position: relative;
	overflow: hidden;
	vertical-align: middle;
	margin: 0 auto;
	padding: 10px 8px;
	transition: .4s;
	display: inline-block;
	width: 100%;
	color: #333;
	border-bottom: 1px solid #dfe2eb;
	font-size: 1.1rem;
	text-align: left;
}
.hambtn .btn a::after {
	position: absolute;
	top: 50%;
	right: 8px;
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	line-height: 1;
	font-size: 80%;
	transform: translate(0, -50%) scale(1, 0.65);
	transition: .6s;
}
.hambtn .btn a:hover {
	opacity: 0.6;
}
.hambtn .btn a:hover::after {
	right: 2px;
}
@media (max-width: 1020px) {
	.header__inner {
		display: block;
	}
	.header_inner {
		margin: 0 auto;
		padding: 0;
		width: 95%;
	}
	.header_nav {
		display: none;
	}
	.header .inner {
		display: none;
	}
	.header_title {
		width: 295px;
		top: -3px;
	}
	.hamburger {
		top: 2px;
		right: 11px;
	}
}
@media (max-width: 550px) {
	.header_sticky {
		padding-top: 13px;
	}
	.header_inner {
		width: 93%;
	}
	.global-navigation__list > li {
		font-size: 1.05rem;
	}
	.accordion__list li {
		font-size: 0.9rem;
	}
	.header_title {
		width: 245px;
		top: 0;
	}
	.hamburger__line {
		width: 45px;
	}
	.hamburger__line:before {
		top: -7px;
	}
	.hamburger__line:after {
		top: 7px;
	}
	.hamburger {
		top: -1px;
		right: 6px;
	}
}
/* footer =======================================*/
/*map*/
.footermap iframe {
	width: 100%;
	height: 400px;
	vertical-align: bottom;
}
/**/
.footer {
	position: relative;
}
.footer::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #f7f4ed;
	z-index: -100;
}
/**/
.footer_contact {
	padding: 50px 0;
	position: relative;
	z-index: 1;
}
/*logo*/
.flogo {
	width: 85%;
	max-width: 350px;
	margin: auto;
	margin-bottom: 20px;
}
/*btn*/
.footer_contact .fbtnflex {
	display: flex;
	justify-content: space-between;
	max-width: 325px;
	margin: auto;
}
.footer_contact .btn {
	text-align: center;
	width: 49%;
}
.footer_contact .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	height: 100%;
	width: 100%;
	color: #4c4947;
	line-height: 1;
	padding-bottom: 2px;
}
.footer_contact .btn:first-child a {
	border-right: 1px solid #7a7572;
}
.footer_contact .btn a i {
	margin-right: 5px;
}
.footer_contact .btn a:hover {
	opacity: 0.6;
}
.fax {
	pointer-events: none;
}
@media (max-width: 550px) {
	.footermap iframe {
		height: 250px;
	}
	.footer_contact {
		padding: 35px 0;
	}
	.footer_contact p, .footer_contact .btn a {
		font-size: 80%;
	}
}
/*copyright*/
.copyright {
	text-align: center;
	padding: 10px 0;
	font-size: 0.9rem;
	background: rgba(0, 0, 0, 0.15);
}
@media (max-width: 550px) {
	.copyright {
		padding: 7px 0;
		font-size: 0.7rem;
	}
}
/*ページ上に戻るボタン*/
.go_top {
	display: block;
	width: 61px;
	height: 61px;
	box-sizing: border-box;
	background: #4c4947;
	padding-top: 30px;
	text-align: center;
	letter-spacing: -1px;
	font-size: 85%;
	text-decoration: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 999;
	border-radius: 50px;
}
.go_top::before {
	font-family: "Font Awesome 6 Free";
	content: "\f124";
	font-weight: bold;
	color: #fff;
	font-size: 0.9rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}
.go_top:hover {
	opacity: 0.6;
}
.tfade {
	position: relative;
	z-index: 9;
}
@media(max-width:550px) {
	.go_top {
		width: 52px;
		height: 52px;
		right: 12px;
	}
	.go_top::before {
		font-size: 0.75rem;
	}
}
/*============*/
.pdb {
	padding-bottom: 55px !important;
}
.pdb0 {
	padding-bottom: 1px !important;
}
@media (max-width: 550px) {
	.pdb {
		padding-bottom: 20px !important;
	}
}
.center {
	text-align: center;
}
@media (max-width:750px) {
	.spcenter {
		text-align: center !important;
	}
}
.fitc {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.tbtn {
	margin-top: 45px;
}
@media (max-width: 550px) {
	.tbtn {
		margin-top: 33px;
	}
}
.aic {
	align-items: center;
}
/* スライド =====================*/
.topslide {
	overflow: hidden;
	position: relative;
}
.topslide::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #010101;
	z-index: 1;
	opacity: 0.13;
}
/**/
.slide_items {
	position: relative;
	width: 100%;
}
.slide_items img {
	width: 100%;
	height: 100vh;
	min-height: 650px;
	object-fit: cover;
}
/*スライドアニメーション*/
@keyframes fadezoom {
	0% {
		transform: scale(1.15);
	}
	100% {
		transform: scale(1);
	}
}
.slick-animation {
	animation: fadezoom 14s linear 0s normal both;
}
/* 商品の切り取り */
.slide_product {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.slide_product img {
	object-fit: contain;
	width: 100% !important;
	height: 100% !important;
	min-height: auto !important;
}
.p01.slide_product {
	height: 60% !important;
	max-height: 550px;
}
.p02.slide_product {
	height: 50% !important;
	max-height: 480px;
}
.p03.slide_product {
	width: 73% !important;
	max-width: 530px;
}
.p01.slide_product img {
	transform: rotate(-5deg);
}
.p02.slide_product img {
	transform: rotate(5deg);
}
/* text */
.slide_text {
	position: absolute;
	bottom: 20%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: #fff;
	text-shadow: 0px 2.5px 3px rgb(0 0 0 / 10%), 0px -2.5px 3px rgb(0 0 0 / 5%);
}
.slide_text p {
	margin-bottom: 0;
	white-space: nowrap;
	font-size: 2.3rem;
	letter-spacing: 0.08em;
}
.slide_text p br {
	display: none;
}
@media (max-width: 1170px) {
	.slide_text p {
		font-size: 1.8rem;
	}
}
@media (max-width: 750px) {
	.slide_text p {
		font-size: 1.3rem;
	}
}
@media (max-width: 550px) {
	.slide_items img {
		height: calc(100vh - 55px);
		min-height: auto;
	}
	.slide_text {
		bottom: 13%;
	}
	.slide_text p {
		line-height: 1.65;
		text-align: center;
	}
	.slide_text p br {
		display: block;
	}
	.p01.slide_product {
		max-height: 280px;
	}
	.p02.slide_product {
		max-height: 220px;
	}
}
/* について ============*/
.tpabtext {
	margin: auto;
	margin-bottom: 95px;
	max-width: 792px;
}
.topaboutimg {
	display: flex;
	flex-direction: row-reverse;
}
.topaboutimg div {
	position: relative;
}
.topaboutimg div:first-child {
	top: -25px;
	margin-left: 4%;
}
.topaboutimg div:last-child {
	top: 25px;
}
.autext {
	max-width: 1116px;
	margin-top: 40px;
}
@media (max-width: 550px) {
	.topaboutimg div:first-child {
		top: -15px;
		margin-left: 5%;
	}
	.topaboutimg div:last-child {
		top: 15px;
	}
	.tpabtext {
		margin-bottom: 45px;
	}
}
/* 商品紹介 GSAP スクロールエフェクト ========================*/
.container {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
}
.section {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	padding: 0;
}
.image {
	width: 100%;
	height: 100%;
	clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
	background-size: cover;
	background-position: center;
	z-index: 6;
	position: fixed;
}
.section:first-child .image {
	clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}
/*中身*/
.section__pin .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/*背景色*/
.one {
	background: #a7bcc2;
}
.two {
	background: #e0c0b6;
}
.three {
	background: #a4bfa4;
}
/* 750px以下（スクロールエフェクト無効）のとき */
@media (max-width: 750px) {
	.container {
		height: auto;
	}
	.section {
		height: auto;
	}
	.image, .section {
		position: initial;
	}
	/*中身*/
	.section__pin {
		padding: 50px 0;
	}
	.section__pin .inner {
		position: initial;
		transform: translate(0, 0);
	}
}
/* スクロールエフェクト欄より下にある要素にz-indexと背景色を指定 */
.zindex {
	background: #fff;
	z-index: 10;
	position: relative;
}
/* 商品紹介欄 共通 =======*/
.section__pin .inner {
	max-width: 1630px;
	color: #fff;
}
.section__pin img {
	width: 100%;
	height: 85vh;
	object-fit: cover;
}
/*btn*/
.container .mainbtn a {
	filter: brightness(0) invert(1);
}
/* ナンバリング */
.lnum {
	font-size: 90%;
	padding-left: 35px;
	position: relative;
}
.lnum span {
	font-size: 110%;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}
.lnum::after {
	background: #fff;
	position: absolute;
	content: "";
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 23px;
	height: 1px;
}
/* 見出し */
.lutitle {
	position: relative;
	font-weight: 500;
	font-size: clamp(1rem, 0.75rem + 0.8vw, 1.2rem);
	margin-bottom: 25px;
	line-height: 1.65;
}
.lutitle span {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	display: block;
	font-size: 130%;
}
/* キャッチコピー */
.catch {
	font-weight: 700;
	line-height: 1.65;
	font-size: clamp(1.03rem, 0.38rem + 2.08vw, 1.55rem);
	margin-bottom: 30px;
}
/* 商品の切り取り */
.luimg {
	position: relative;
}
.lu_product {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.lu_product img {
	object-fit: contain;
	width: 100% !important;
	height: 100% !important;
	animation: horizontalAnim 2.5s ease-in-out infinite alternate;
}
.section:nth-child(1) .lu_product {
	transform: translate(-50%, -50%) rotate(-10deg);
	height: 90% !important;
	max-height: 550px;
}
.section:nth-child(2) .lu_product {
	transform: translate(-50%, -50%) rotate(10deg);
	height: 90% !important;
	max-height: 480px;
}
.section:nth-child(3) .lu_product {
	transform: translate(-50%, -50%) rotate(0);
	height: auto !important;
	width: 80% !important;
	max-width: 530px;
}
/* アニメーション -----------------------------------------------
/* Author : Sho KUWABARA
/* MIT license: http://opensource.org/licenses/MIT
/* CodePen : https://codepen.io/skwbr/pen/JdJWqV
/* ----------------------------------------------- */
@keyframes horizontalAnim {
	0% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0px);
	}
}
@media (max-width: 1250px) {
	.section__pin img {
		height: 77vh;
	}
}
@media (max-width: 750px) {
	.section__pin img {
		height: auto;
		margin-bottom: 20px;
	}
	.section:nth-child(1) .lu_product {
		transform: translate(-50%, -55%) rotate(-10deg);
		height: 76% !important;
	}
	.section:nth-child(2) .lu_product {
		transform: translate(-50%, -55%) rotate(10deg);
		height: 70% !important;
	}
	.section:nth-child(3) .lu_product {
		width: 70% !important;
	}
}
@media (max-width: 550px) {
	.lnum {
		padding-left: 32px;
		font-size: 80%;
	}
	.lutitle {
		margin-bottom: 15px;
	}
	.catch {
		margin-bottom: 15px;
	}
}
/* 人とミネラル =============*/
.mineral .inner {
	max-width: 1247px;
}
@media (max-width: 750px) {
	.mineral .flexbox img {
		margin-bottom: 20px;
	}
}
/* links =============*/
.linkswrap {
	padding: 0;
}
.links {
	display: flex;
	justify-content: space-between;
}
.links .link {
	width: 50%;
}
.link {
	overflow: hidden;
	position: relative;
}
.link::before {
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	right: 5%;
	font-family: "Font Awesome 6 Free";
	content: "\f124";
	font-weight: bold;
	line-height: 1;
	font-size: 0.6rem;
	color: #fff;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .6s;
	z-index: 2;
	pointer-events: none;
}
.link:hover::before {
	color: #fff;
	border: 1px solid transparent;
	background: rgba(255, 255, 255, 0.2);
	transition: 1.4s;
}
.link::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #000;
	z-index: 1;
	opacity: 0.4;
	pointer-events: none;
}
.link a:hover img {
	transform: scale(1.05);
	transition: 1.1s;
}
.link img {
	margin-bottom: 0 !important;
	transition: .8s;
}
.link img {
	object-fit: cover;
	width: 100%;
	height: 350px;
}
.link h2 {
	color: #fff;
	position: absolute;
	top: 48%;
	left: 5%;
	transform: translateY(-50%);
	z-index: 2;
	font-size: 1.5rem;
	line-height: 1.55;
	white-space: nowrap;
	font-weight: 500;
}
.link h2 span {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 80%;
	display: block;
	text-transform: capitalize;
}
@media(max-width:1300px) {
	.link img {
		height: 25vw;
	}
}
@media(max-width:1100px) {
	.link h2 {
		font-size: 1.25rem;
	}
}
@media(max-width:750px) {
	.links {
		display: block;
	}
	.links .link {
		width: 100%;
	}
	.links .link:last-child {
		margin-bottom: 0 !important;
	}
	.link img {
		height: 37vw;
	}
}
@media(max-width:600px) {
	.link h2 {
		font-size: 1.05rem;
	}
	.link::before {
		font-size: 0.4rem;
		width: 35px;
		height: 35px;
	}
}
/* 下層ページトップ ===========================================================================================================*/
.fv {
	padding: 110px 0 70px;
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}
.fv::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/fv.jpg);
	background-repeat: repeat;
	background-size: cover;
	background-position: 50% 90%;
	z-index: -1;
}
.fv::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #000;
	opacity: 0.6;
	z-index: 1;
}
.fv h2 {
	text-align: center;
	margin-bottom: 20px !important;
	font-size: clamp(1.45rem, 0.2625rem + 3.8vw, 2.4rem);
	font-weight: 500;
	line-height: 1;
	z-index: 1;
	position: relative;
	color: #fff;
	text-transform: capitalize;
}
@media(max-width:1020px) {
	.fv {
		padding: 90px 0 70px;
	}
}
@media(max-width:770px) {
	.fv {
		padding: 83px 0 40px;
	}
}
@media(max-width:550px) {
	.fv {
		padding: 63px 0 30px;
	}
	.fv h2 {
		margin-bottom: 15px !important;
	}
}
/* breadcrumb */
.binner {
	line-height: 1.6;
	width: 97%;
	font-size: 1.05rem;
	font-weight: 500;
	position: relative;
	color: #fff;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: relative;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	position: relative;
	top: -0.1em;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #fff;
}
.breadcrumb li:first-child a::before {
	font-family: "Font Awesome 6 Free";
	content: '\f015';
	font-weight: bold;
	font-size: 90%;
	position: relative;
	top: -0.05em;
}
@media(max-width:850px) {
	.binner {
		font-size: 0.9rem;
	}
}
@media(max-width:650px) {
	.binner {
		font-size: 0.75rem;
	}
}
/* ミネラルの働きページ ===========================================================================================================*/
@media(max-width:750px) {
	.spmgb {
		margin-bottom: 33px;
	}
}
/* ミネラルに含まれる栄養素の種類 */
.nutrients {
	margin-top: 40px;
}
.nutrients div {
	padding: 20px 30px 35px;
	background: #fff;
	margin-bottom: 20px;
}
.nutrients div:last-child {
	margin-bottom: 0 !important;
}
.nutrients .stitle {
	margin-bottom: 10px;
}
.nutrients .acheck {
	margin-top: 25px;
}
.acflex {
	display: flex;
	flex-wrap: wrap;
}
.acflex li {
	width: 18.8%;
	margin-right: 0.6%;
	margin-left: 0.6%;
}
.seven li {
	padding-bottom: 12px !important;
	margin-bottom: 10px !important;
}
.acflex.fee li {
	width: 48% !important;
	margin-right: 1%;
	margin-left: 1%;
}
.nutrients .fee .row::before {
	content: none;
}
.acheck.fee .block {
	position: relative;
}
.acheck.fee .block::before {
	content: none;
}
/*
.acheck.fee .block::after {
	content: '…';
	opacity: 0.6;
	position: relative;
	top: -0.35em;
	margin-left: 3px;
}
*/
.nutrients .fee .row {
	display: block;
}
@media(max-width:850px) {
	.acflex.fee {
		display: block;
	}
	.acflex li {
		width: 47%;
		margin-right: 1.5%;
		margin-left: 1.5%;
	}
	.acflex.fee li {
		width: 100% !important;
		margin-right: 0;
		margin-left: 0;
	}
	.nd {
		display: block;
		margin-left: auto;
	}
}
@media(max-width:550px) {
	.nutrients .acheck {
		margin-top: 17px;
	}
	.nutrients {
		margin-top: 30px;
	}
	.nutrients div {
		padding: 13px 17px 20px;
	}
}
/* 「真の健康」のためにミネラルを */
.wellness .maintitle {
	margin-bottom: 40px;
}
.welltext {
	margin: auto;
	max-width: 879px;
	margin-bottom: 40px;
}
.wellness .link h2, .wellness .link h2 span {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
}
@media(max-width:550px) {
	.welltext {
		margin-bottom: 35px;
	}
}
/* 植物ミネラル商品ページ ===========================================================================================================*/
.dcatch {
	font-weight: 700;
	line-height: 1.65;
	font-size: clamp(1.07rem, 0.6575rem + 1.32vw, 1.4rem);
	margin-bottom: 30px;
}
@media(max-width:750px) {
	.limg img {
		margin-bottom: 33px;
		height: auto;
	}
	.dcatch {
		margin-bottom: 20px;
	}
}
/**/
.flexitem .flexbox {
	margin-bottom: 45px;
}
.flexitem .flexbox:last-child {
	margin-bottom: 0;
}
@media(max-width:750px) {
	.flexitem .flexbox img {
		margin-bottom: 20px;
	}
}
/* ピュアミネラル ==================*/
/*背景*/
.bg_blue {
	background: #a7bcc2;
}
.bg_blue .maintitle, .bg_blue p {
	color: #fff;
}
.bg_blue .info_table, .bg_blue .mainbtn {
	filter: brightness(0) invert(1);
}
/*色*/
.pure .stitle .en {
	color: #8daab3;
}
.pure .stitle::after {
	background: #8daab3;
}
.pure .acheck li::before {
	color: #8daab3;
}
.pure .mtitle {
	color: #fff;
	background: #8daab3;
}
/* PURE MINERAL80で良質なミネラル補給を */
.remtext {
	max-width: 930px;
}
/* 使用方法 */
.howto {
	padding: 50px 50px 20px;
	background: #fff;
	margin-top: 45px;
}
.howto .nd {
	margin-left: auto;
	width: fit-content;
}
.howto .flexbox {
	margin-top: 40px;
}
.howto .flexbox div {
	margin-bottom: 35px;
}
.howto .flexbox .stitle {
	margin-bottom: 8px;
}
.howto .acheck {
	margin-top: 17px;
}
.howto .acflex li {
	width: 48%;
	margin-right: 1%;
	margin-left: 1%;
}
@media(max-width:1160px) {
	.howto .acflex {
		display: block;
	}
	.howto .acflex li {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
	}
}
@media(max-width:750px) {
	.howto {
		padding: 35px 20px 20px;
	}
	.howto .flexbox div:last-child {
		margin-bottom: 0;
	}
}
/* エクセルスキンクリーム ==================*/
/*背景*/
.bg_pink {
	background: #e0c0b6;
}
.bg_pink .maintitle, .bg_pink p {
	color: #fff;
}
.bg_pink .info_table, .bg_pink .mainbtn {
	filter: brightness(0) invert(1);
}
/*色*/
.skin .stitle .en {
	color: #e8b7a7;
}
.skin .stitle::after {
	background: #e8b7a7;
}
.skin .acheck li::before {
	color: #e8b7a7;
}
.skin .mtitle {
	color: #fff;
	background: #e8b7a7;
}
/* お顔も身体も、これ一本でしっかりケア */
.ingredient {
	width: 100%;
	max-width: 650px;
	margin: auto;
}
/* 樹液シートページ ===========================================================================================================*/
/*色*/
.sapsheet .stitle .en {
	color: #8aa88a;
}
.sapsheet .stitle::after {
	background: #8aa88a;
}
.sapsheet .acheck li::before {
	color: #8aa88a;
}
/*
.sapsheet .mtitle{
	color: #fff;
	background: #8aa88a;
}
*/
span.block::before {
	color: #8aa88a !important;
}
/* 2タイプの選べる接着面 */
.note {
	font-size: 90%;
	margin-top: 10px;
}
/* 点線 */
.fee .row {
	display: flex;
	align-items: center;
}
.fee .row::before {
	background: radial-gradient(#c7c1c1 20%, rgba(0, 0, 0, 0) 0%) center center/6px 6px;
	content: '';
	display: inline-block;
	flex: 1;
	height: 4px;
	margin: 0 1em;
}
.fee .row span {
	width: fit-content;
}
.fee .row span.name {
	order: -1;
}
/**/
span.block {
	line-height: 1.8;
	display: block;
	width: fit-content;
	margin-left: auto;
}
span.block::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: lighter;
	display: inline-block;
	color: #4c4947;
	margin-right: 4px;
}
.long_fee_title {
	width: 100% !important;
}
.long_fee_title span.block {
	margin-left: 0;
}
.long_fee_title .row::before {
	margin-left: 0;
}
@media(max-width:420px) {
	.fee .row::before {
		content: none;
	}
}
/* 使用前・使用後 */
.beforeafter {
	max-width: 880px;
	margin: auto;
	margin-bottom: 33px;
}
.beforeafter div img {
	width: 100%;
}
@media(max-width:750px) {
	.beforeafter {
		margin-bottom: 23px;
	}
}
/* ラインナップ */
.lineup .inner {
	max-width: 1000px;
}
.lineup .mtitle {
	margin-bottom: 10px;
}
.lineup img {
	width: 100%;
}
.lineup p {
	margin-bottom: 27px;
}
.lineup p:last-child {
	margin-bottom: 0;
}
.lutext span {
	font-size: 105%;
	padding: 3px 10px 5px;
	margin-bottom: 5px;
	margin-right: 5px;
	color: #fff;
	display: inline-block;
}
.sara {
	background: #509cb4;
}
.juk {
	background: #d85454;
}
@media(max-width:750px) {
	.lineup .w38 {
		width: 80% !important;
		margin: auto;
		margin-bottom: 13px;
	}
	.lutext span {
		font-size: 95%;
	}
}
/* 使用方法*/
.use .stitle {
	font-size: 1.2rem;
	margin-bottom: 7px;
}
.use p {
	margin-bottom: 15px;
}
.use p:last-child {
	margin-bottom: 0 !important;
}
.use img {
	width: 100%;
}
.use .w38 img:last-child {
	margin-top: 10px;
}
@media(max-width:750px) {
	.use .stitle {
		font-size: 1.1rem;
	}
	.use .w38 {
		margin-bottom: 3px;
	}
}
/* なぜ足裏なの？ */
.bg_green {
	background: #a4bfa4;
}
.bg_green .maintitle, .bg_green p {
	color: #fff;
}
.bg_green .info_table, .bg_green .mainbtn {
	filter: brightness(0) invert(1);
}
@media(max-width:750px) {
	.type {
		width: 80% !important;
		margin: auto;
		margin-bottom: 30px;
	}
}
/* 使用上の注意 */
.notice .inner {
	max-width: 1020px;
}
/*list*/
.acheck li {
	padding-left: 19px;
	margin-bottom: 7px;
	padding-bottom: 7px;
	position: relative;
	border-bottom: 1px dotted #8aa88a;
}
.acheck li::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: lighter;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
	display: inline-block;
}
/**/
.contents_slider .slick-prev:before, .contents_slider .slick-next:before {
	color: #fff;
	text-shadow: 0px 2.5px 3px rgb(0 0 0 / 20%), 0px -2.5px 3px rgb(0 0 0 / 15%);
	opacity: 1;
}
.contents_slider .slick-prev {
	left: 7px;
	z-index: 3 !important;
}
.contents_slider .slick-next {
	right: 7px;
	z-index: 3 !important;
}
@media (max-width:365px) {
	.contents_slider .slick-prev:before, .contents_slider .slick-next:before {
		font-size: 0.95rem;
	}
}
/* 会社案内ページ ===========================================================================================================*/
/* 企業理念 */
.phtext p {
	font-size: 103%;
	line-height: 2.2;
	text-align: center;
	margin-bottom: 17px;
}
.phtext p:last-child {
	margin-bottom: 0 !important;
}
@media(max-width:600px) {
	.phtext p {
		font-size: 100%;
		line-height: 1.9;
		text-align: left;
		margin-bottom: 15px;
	}
	.phtext p br {
		display: none;
	}
}
/*img*/
.wideimg {
	max-width: 1150px;
	margin: auto;
	margin-bottom: 50px;
}
.wideimg img {
	object-fit: cover;
	width: 100%;
	height: 380px;
}
@media(max-width:750px) {
	.wideimg img {
		height: auto;
	}
}
@media(max-width:550px) {
	.wideimg {
		margin-bottom: 35px;
	}
}
/* 会社概要 */
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table tr {
	border-bottom: 1px solid rgba(168, 168, 160, 0.45);
}
.info_table tr:first-child {
	border-top: 1px solid rgba(168, 168, 160, 0.45);
}
.info_table th {
	background: transparent;
	width: 35%;
}
.info_table th, .info_table td {
	font-weight: 500;
	padding: 15px 0;
}
.info_table td {
	padding-left: 10px;
	padding-right: 10px;
	width: 65%;
	background: transparent;
}
.ib {
	display: inline-block;
}
/*map*/
.mapbox {
	margin-top: 20px;
}
@media(max-width: 550px) {
	.info_table {
		border-collapse: collapse;
	}
	.info_table tr {
		border-bottom: none;
	}
	.info_table td {
		border-bottom: 1px solid rgba(168, 168, 160, 0.45);
		margin-bottom: 0;
	}
	.info_table td, .info_table th {
		width: 100%;
		padding: 8px 8px 13px;
		display: block;
	}
	.info_table th {
		text-align: left;
		padding-bottom: 0;
	}
	.mapbox iframe {
		height: 220px;
	}
}
/* 代理店紹介 */
.introduction .flexbox {
	margin-bottom: 50px;
}
.introduction .flexbox:last-child {
	margin-bottom: 0 !important;
}
.introduction .flexbox div {
	margin-bottom: 40px;
	/*background:#faf8f5;*/
}
.introduction h3 {
	position: relative;
	font-size: clamp(1.15rem, 0.8375rem + 1vw, 1.4rem);
	border-top: 1px solid rgba(0, 0, 0, 0.25);
	padding-top: 20px;
	margin-bottom: 35px;
	/*
	font-weight: 500;
	border-left: 5px solid #918c87;
	padding-left: 11px;
	line-height: 1.8;
	*/
}
.introduction h3::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	width: 125px;
	height: 1px;
	background: #4c4947;
}
.introduction .flexbox .mtitle {
	font-size: clamp(1rem, 0.8125rem + 0.6vw, 1.15rem);
	margin-bottom: 10px;
}
/**/
.introduction table th, .introduction table td {
	padding: 2px 0;
}
.introduction table th {
	padding: 0 20px;
	font-weight: 500;
	white-space: nowrap;
}
@media(max-width: 750px) {
	.introduction .flexbox .mtitle {
		margin-bottom: 0;
	}
	.introduction table {
		border-collapse: collapse;
	}
	.introduction table tr {
		border-bottom: none;
	}
	.introduction table td, .introduction table th {
		width: 100%;
		padding: 9px 8px 0;
		display: block;
	}
	.introduction table td {
		padding-top: 3px;
	}
	.introduction table th {
		font-size: 95%;
		font-weight: 700;
		text-align: left;
	}
	.introduction .flexbox div:last-child {
		margin-bottom: 0;
	}
}
@media (max-width: 550px) {
	.introduction h3 {
		margin-bottom: 25px;
	}
	.introduction .maintitle {
		margin-bottom: 45px;
	}
}
/* お問い合わせページ ===========================================================================================================*/
.pdb0 {
	padding-bottom: 0 !important;
}
.contactpage .inner {
	max-width: 1050px;
}
/*本ホームページに関する質問につきましては*/
.contop {
	margin-bottom: 50px;
}
@media (max-width: 550px) {
	.contop {
		font-size: 90%;
		margin-top: 20px;
		margin-bottom: 30px;
	}
}
/* 番号 */
.telbox a {
	font-size: 2rem;
	color: #4c4947;
}
.telbox a:hover {
	opacity: 0.6;
}
.telbox a i {
	color: #4c4947;
}
@media (max-width:550px) {
	.longtelwrap .stitle {
		margin-bottom: 7px;
	}
	.telbox a {
		font-size: 1.7rem;
	}
}
/*tel 文言付き*/
.longtelwrap .telbox a {
	margin-right: 40px;
	width: fit-content;
	white-space: nowrap;
}
.longtelwrap .telbox {
	display: flex;
	align-items: center;
}
.fcheck {
	display: flex;
}
.fcheck li {
	padding-left: 21px;
	margin-right: 20px;
	position: relative;
}
.fcheck li:last-child {
	margin-right: 0;
}
.fcheck li::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #4c4947;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
.telbox div {
	width: 100%;
}
.longtelwrap .telbox p {
	margin-bottom: 0;
	width: 100%;
}
.longtelwrap .telbox p span::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: lighter;
	margin-right: 5px;
	color: #4c4947;
}
.longtelwrap .telbox p span::after {
	content: "／";
}
@media (max-width: 825px) {
	.longtelwrap .telbox {
		display: block;
	}
	.telbox div {
		margin-top: 10px;
	}
	.longtelwrap .telbox a {
		margin-right: 0;
	}
	/*
	.longtelwrap .telbox p:first-child {
		margin-top: 12px;
	}
	*/
}
@media (max-width:550px) {
	.longtelwrap .telbox p, .fcheck li {
		font-size: 93%;
	}
	.longtelwrap .telbox p {
		padding-bottom: 0;
	}
	/*
	.longtelwrap .telbox p {
		padding-bottom: 7px;
	}
	.longtelwrap .telbox p {
		margin-top: 7px;
	}
	.longtelwrap .telbox p span {
		display: block;
		margin-bottom: 1px;
	}
	.longtelwrap .telbox p span::after {
		content: none;
	}
	*/
}
@media (max-width: 500px) {
	.longtelwrap .telbox {
		display: block;
	}
	.fcheck {
		display: block;
	}
	.fcheck li {
		margin-right: 0;
	}
}
/* メール */
.mnote {
	max-width: 868px;
	margin: auto;
	margin-top: 55px;
	font-size: 90%;
}
@media(max-width:550px) {
	.mnote {
		margin-top: 45px;
	}
}
.formsel p:last-child {
	margin-bottom: 0;
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.9px dotted #333;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-weight: 500;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #4c4947;
	padding: 5px;
	margin-right: 5px;
	font-size: 12px;
	font-weight: 500;
}
.mailform .row span.mailsp {
	color: #4c4947;
	background: #fff;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #4c4947;
	font-weight: 500;
}
.mailform input, .mailform select {
	max-width: 100%;
}
.mailform .box, .mailform textarea {
	border: 1px solid #ddd;
	padding: 5px;
	width: 100% !important;
	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform button {
	display: block;
	text-align: center;
	margin: 0 auto;
	white-space: nowrap;
	padding: 22px 0;
	width: 270px;
	transition: .4s;
	color: #fff;
	background: #4c4947;
	border: 1px solid #4c4947;
}
.mailform button:hover {
	background: #fff;
	color: #4c4947;
}
.mailform button::before {
	font-family: "Font Awesome 6 Free";
	content: "\f0e0";
	font-weight: bold;
	margin-right: 10px;
}
@media (max-width: 450px) {
	.mailform button {
		padding: 15px 0;
		width: 210px;
	}
	.formsel label {
		font-size: 0.95rem;
	}
}
@media (max-width: 800px) {
	.mailform .row:first-child {
		padding-top: 5px;
	}
	.mailform .row {
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1) {
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2) {
		width: 100%;
	}
}
/*プライバシーポリシー*/
.cotitle {
	font-size: clamp(1.07rem, 0.845rem + 0.72vw, 1.25rem);
	font-weight: 500;
	margin-bottom: 12px;
}
.cotitle i {
	color: #4c4947;
}
.privacy {
	margin-top: 70px;
}
.scroll_flame {
	border: 1px solid #ddd;
	background: #fff;
	padding: 20px 15px;
}
.scroll_flame_in {
	height: 250px;
	overflow-y: scroll;
	padding: 0 5px;
}
.scroll_flame p {
	font-size: 93%;
}
.scroll_flame p span {
	font-weight: 700;
}
@media(max-width:550px) {
	.cotitle {
		font-size: 1.1rem;
	}
	.privacy {
		margin-top: 35px;
	}
	.scroll_flame {
		padding: 10px;
	}
	.scroll_flame p {
		font-size: 90%;
	}
}
/*スクロールバー*/
.scroll_flame_in::-webkit-scrollbar {
	overflow: hidden;
	width: 1px;
	background: #fafafa;
}
.scroll_flame_in::-webkit-scrollbar-button {
	display: none;
}
.scroll_flame_in::-webkit-scrollbar-thumb, .scroll_flame_in::-webkit-scrollbar-corner {
	background: #333;
}
.scroll_flame_in::-webkit-scrollbar-thumb, .scroll_flame_in::-webkit-scrollbar-corner {
	background: #333;
}
/* 注文フォーム ===========================================================================================================*/
.red {
	color: #ed6051;
}
form#mailformpro label {
	white-space: normal !important;
	line-height: 1.9;
}
/*まとめ買い特典*/
.pbox {
	padding: 10px;
	background: #fff;
	margin-top: 10px;
	border: 2px solid #a7bcc2;
}
.pbox h3 {
	font-weight: 700;
	font-size: 1.05rem;
	border-bottom: 1px dotted #333;
	margin-bottom: 3px;
	padding-bottom: 3px;
}
.pbox span {
	color: #ed6051;
	border-bottom: 1px solid #ed6051;
}
.pbox.pink {
	border: 2px solid #e0c0b6;
}
.pbox.green {
	border: 2px solid #a4bfa4;
}
/*商品欄のレイアウト*/
.order .mtitle {
	background: rgba(0, 0, 0, 0.05);
}
.order .box {
	margin-bottom: 45px;
}
.order .box:last-child {
	margin-bottom: 0;
}
.order .box .info_table tr:first-child {
	border-top: none !important;
}
.order .info_table tr:first-child th, .order .info_table tr:first-child td {
	padding-top: 5px !important;
}
.order .box:nth-child(2n) {
	flex-direction: row-reverse;
}
/**/
.order .box .count:first-child {
	margin-top: 7px;
}
.order .box .count {
	display: flex;
	justify-content: center;
	width: 100% !important;
}
.order .box .count .cell {
	position: relative;
	width: 100% !important;
	max-width: 320px;
	margin-right: auto;
}
.order .box .count .cell select {
	padding: 0 5px;
	cursor: pointer;
	width: 100% !important;
	background: #fff;
	border: 1px solid #c2c2c2;
	border-radius: 3px;
	max-width: 320px;
}
.order .box .count .cell::after {
	font-family: "Font Awesome 6 Free";
	content: "\f107";
	display: block;
	font-weight: bold;
	font-size: 12px;
	line-height: 1;
	position: absolute;
	top: 48%;
	right: 10px;
	transform: translateY(-50%);
	z-index: 1;
	pointer-events: none;
	color: #4c4947;
}
@media (max-width: 1130px) {
	.order .box .count .cell::after {
		content: none;
	}
}
.count p {
	white-space: nowrap;
	margin-right: 13px;
}
@media (max-width: 750px) {
	.order .box .count .cell::after {
		content: "\f107";
	}
	.order .box .image {
		margin-bottom: 12px;
	}
}
@media (max-width: 550px) {
	.orderboxwrap .box {
		margin-bottom: 55px;
	}
	.orderboxwrap {
		margin-bottom: 65px;
	}
}
/*合計金額とリセットボタン*/
.order .total {
	text-align: center;
	margin: 85px 0 35px;
	padding: 20px 0;
	background: #fff;
}
.total_sub {
	font-size: 107%;
}
.total p {
	font-size: 90%;
	margin-top: 5px;
}
.order .total .mfp {
	display: inline-block;
}
.order .total .total_main {
	font-weight: 700;
	font-size: 1.2rem;
	margin-bottom: 5px;
}
.order .button_wrap button::before {
	display: none;
}
.order .button_wrap .reset {
	font-size: 0.8rem;
	border: 1px solid #4c4947;
	color: #4c4947;
	background: #fff;
	margin-top: 13px;
	width: 185px !important;
	padding: 16px 0;
}
.order .button_wrap .reset:hover {
	color: #fff;
	background: #4c4947;
}
@media (max-width: 550px) {
	.order .total {
		margin: 55px 0 20px;
	}
	.order .total .total_main {
		font-size: 1.13rem;
		margin-bottom: 3px;
	}
	.total_sub {
		font-size: 1rem;
	}
}
/* 送料の一例 */
.s_example {
	padding: 15px 20px 20px;
	background: #fff;
	margin-bottom: 95px;
}
.bdb {
	color: #4c4947;
	border-bottom: 1px solid #d1d1d1;
}
a.bdb:hover {
	opacity: 0.6;
}
@media (max-width: 550px) {
	.s_example {
		margin-bottom: 45px;
	}
}
/**/
.mailform .mtitle {
	font-size: clamp(1.07rem, 0.845rem + 0.72vw, 1.25rem);
	margin-top: 45px;
	margin-bottom: 0;
}
.mailform .box {
	margin-bottom: 3px !important;
}
.mfp_err {
	width: 100% !important;
}
.button_wrap {
	margin-top: 30px;
}
/* チェックボックス */
.check_req {
	font-size: 100% !important;
}
.check_req input {
	float: left;
}
.check_req label {
	display: block !important;
	overflow: hidden;
	padding-left: 5px;
}
.check_req input[type=checkbox] {
	position: relative;
	top: 0.7em;
	left: 0;
	cursor: pointer;
}
.mailform input[type=checkbox] + label {
	cursor: pointer;
}
/* select */
.mailform .cell {
	position: relative;
}
.mailform .cell select {
	cursor: pointer;
}
.mailform .cell::after {
	font-family: "Font Awesome 6 Free";
	content: "\f107";
	display: block;
	font-weight: bold;
	font-size: 12px;
	line-height: 1;
	position: absolute;
	top: 48%;
	right: 10px;
	transform: translateY(-50%);
	z-index: 1;
	pointer-events: none;
	color: #4c4947;
}
/* 合計金額を確認画面に出すため */
#mfp_price_element {
	display: none;
}
/* 代引手数料について */
#cod {
	position: relative;
	top: -130px;
}
@media (max-width: 750px) {
	#cod {
		margin-top: 20px;
	}
}
/* 樹液不思議シート タイプの内訳 */
.breakdown .count p {
	white-space: normal !important;
}
.breakdown .count p.ko {
	margin: 0;
	margin-left: 7px;
}
.breakdown .count {
	flex-wrap: wrap;
	justify-content: flex-start !important;
}
.bdflex {
	display: flex;
}
.bdflex .cell {
	margin-right: 0;
	margin-left: auto;
}
@media (max-width: 750px) {
	.bdflex {
		margin-left: auto;
		width: fit-content !important;
	}
}