/******************************************************************
Theme Name: CUBE GAMMA THEME
Theme URI: http://cube096.com
Description: CUBEが自信をもってお届けするレスポンシブウェブデザインテーマ
Author: CUBE CO.,LTD.
Author URI: http://cube096.com
Version: beta
Tags: fluid-layout, responsive-layout, accessibility-ready, translation-ready, microformats, rtl-language-support
*/
*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}
html,
body {
	height: 100%;
}
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}
input,
button,
textarea,
select {
	font: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}
#root,
#__next {
	isolation: isolate;
}
ol,
ul {
	list-style-type: none;
	margin: 0;
}
legend,
menu,
ol,
ul {
	padding: 0
}
a {
	text-decoration: none;
	color: var(--font-color);
	position: relative;
	z-index: 2;
}
p,
li,
dd {
	word-wrap: break-word;
	line-break: anywhere;
	text-align: justify;
}
body {
	/*--- ▼ゴシック ---*/
	font-family: "Zen Kaku Gothic Antique", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	/*--- ▼明朝 ---*/
	/*font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝";*/
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	color: var(--font-color);
	font-weight: 500;
	font-style: normal;
	font-size: var(--fontsize-17);
	background-color: var(--bg-color);
	letter-spacing: 0.1em;
}
body img {
	max-width: 100%;
	height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
	line-height: 1.3;
	font-style: normal;
}
table {
	border-collapse: collapse;
}
input,
textarea {
	outline: none;
}
:root {
	--main-color: #008041;
	--mainsub-color: #E2E8E2;
	--sub-color: #F5F8F5;
	--font-color: #008041;
	--bg-color: #FFFFFF;
	--padding-130: clamp(50px, 6.8vw, 130px);
	--padding-95: clamp(40px, 4.9vw, 95px);
	--padding-80: clamp(40px, 4.1vw, 80px);
	--padding-65: clamp(40px, 3.4vw, 65px);
	--fontsize-25: clamp(19px, 1.3vw, 25px);
	--fontsize-22: clamp(18px, 1.1vw, 22px);
	--fontsize-20: clamp(17px, 1vw, 20px);
	--fontsize-18: clamp(16px, 0.94vw, 18px);
	--fontsize-17: 17px;
	--fontsize-16: 16px;
	--fontsize-15: 15px;
}
/* recaptcha badge
----------------------------------------------------------- */
.grecaptcha-badge {
	z-index: 10000;
	bottom: 75px !important;
}
/* ページネーション
----------------------------------------------------------- */
/*アーカイブ用*/
.nav-links {
	display: -webkit-flex;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.nav-links .page-numbers {
	display: block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	background-color: #fff;
	transition: all ease 0.5s;
	border-radius: 3px;
	border: 1px solid #C0D9CD;
	margin: 0 5px;
	color: #333333;
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
	background-color: var(--sub-color);
}
.nav-below {
	display: -webkit-flex;
	display: flex;
	justify-content: center;
}
.next.page-numbers,
.prev.page-numbers {
	padding: 0 5px;
}
/*シングル用*/
.single .nav-below {
	display: inherit;
	margin-top: 45px;
}
.single .nav-below:after {
	content: "";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.single .nav-below a {
	background-color: var(--sub-color);
	border-radius: 3px;
	text-decoration: none;
	padding: 5px;
	font-size: 14px;
	line-height: 1.5;
	transition: all ease 0.5s;
	border: 1px solid #C0D9CD;
	color: #555555;
}
.single .nav-below a:hover {
	background-color: #C0D9CD;
}
.single .nav-below .prev {
	padding-left: 65px;
	position: relative;
}
.single .nav-below .next {
	padding-right: 65px;
	position: relative;
}
.single .nav-below .prev::before,
.single .nav-below .next::before {
	content: "";
	width: 40px;
	height: 40px;
	background-color: var(--main-color);
	border-radius: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.single .nav-below .prev::before {
	left: 10px;
}
.single .nav-below .next::before {
	right: 10px;
}
.single .nav-below .prev::after,
.single .nav-below .next::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.single .nav-below .prev::after {
	left: 25px;
	border-right: 7px solid #fff;
	border-left: 0;
}
.single .nav-below .next::after {
	right: 25px;
	border-left: 7px solid #fff;
	border-right: 0;
}
.prev {
	width: 48%;
	float: left;
}
.next {
	width: 48%;
	float: right;
	text-align: right;
}
.prev_title,
.next_title {
	font-size: 12px;
}
.next p {
	text-align: right;
}
.next p,
.prev p {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 5px;
}
.prev img {
	float: left;
	margin-right: 10px;
}
.next img {
	float: right;
	margin-left: 10px;
}
.prevAndNextLeft a:before {
	content: "\f053";
	margin-right: 5px;
	font-family: FontAwesome;
}
.prevAndNextRight a:after {
	content: "\f054";
	margin-left: 10px;
	font-family: FontAwesome;
}
.prevAndNextLeft {
	width: 50%;
	float: left;
}
.prevAndNextRight {
	width: 50%;
	float: left;
}
.prevAndNextLeft {
	text-align: left;
}
.prevAndNextRight {
	text-align: right;
}
/* 
 animation
----------------------------------------------------------- */
.fadein {
	opacity: 0.1;
	transition: all ease 1s;
	-webkit-transition: all ease 1s;
	-moz-transition: all ease 1s;
}
.on .fadein,
.on.fadein {
	opacity: 1;
}
.totop {
	opacity: 0;
	transform: translateY(30px);
	transition: all 1s;
}
.on .totop,
.on.totop {
	opacity: 1;
	transform: translateY(0);
}
.fadeinleft {
	opacity: 0.1;
	-webkit-transform: translateX(-50px);
	transform: translateX(-50px);
	transition: all ease 1s;
	-webkit-transition: all ease 1s;
	-moz-transition: all ease 1s;
}
.on .fadeinleft,
.on.fadeinleft {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.fadeinright {
	opacity: 0.1;
	-webkit-transform: translateX(50px);
	transform: translateX(50px);
	transition: all ease 1s;
	-webkit-transition: all ease 1s;
	-moz-transition: all ease 1s;
}
.on .fadeinright,
.on.fadeinright {
	opacity: 1;
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
}
.no2 {
	transition-delay: .3s;
}
.no3 {
	transition-delay: 0.6s;
}
.no4 {
	transition-delay: 0.9s;
}
.no5 {
	transition-delay: 1.2s;
}
/* 
 Head
----------------------------------------------------------- */
.header {
	width: 100%;
}
/* 
 gNavi
----------------------------------------------------------- */
.navwrap {
	width: 100%;
	position: fixed;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
	top: 0;
	left: 0;
	z-index: 998;
	transition: all ease 0.2s;
	padding: clamp(15px, 1.6vw, 30px) clamp(20px, 2vw, 40px) 0 clamp(20px, 2vw, 40px);
	height: 60px;
}
.navwrap .logo {
	transition: all ease 0.2s;
}
.home .navwrap .logo {
	opacity: 0;
}
.navwrap .logo.view {
	opacity: 1;
}
.navwrap p img {
	height: clamp(45px, 4.4vw, 85px);
	width: auto;
}
.navwrap > ul {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	align-items: center;
}
.navwrap > ul > li {
	margin-left: clamp(40px, 3.1vw, 60px);
	text-align: center;
	position: relative;
}
.navwrap > ul > li:last-child {
	margin-left: clamp(30px, 2.3vw, 45px);
}
.navwrap > ul > li a {
	display: inline-block;
	font-weight: 500;
	font-family: "Outfit", sans-serif;
	font-size: clamp(21px, 1.5vw, 28px);
	line-height: 1.25;
	transition: all ease 0.2s;
	letter-spacing: 0.1em;
}
.navwrap.top > ul > li a {
	color: #000;
}
.navwrap > ul > li a:hover {
	color: #000;
}
.navwrap.top > ul > li a:hover {
	color: #fff;
}
.navwrap > ul > li:last-child a {
	display: block;
}
.navwrap > ul > li svg {
	height: clamp(25px, 1.8vw, 35px);
	width: auto;
	overflow: visible;
}
.navwrap > ul > li svg path {
	transition: all ease 0.2s;
	fill: var(--main-color);
}
.navwrap.top > ul > li a svg path {
	fill: #000;
}
.navwrap > ul > li a:hover svg path {
	fill: #000;
}
.navwrap.top > ul > li a:hover svg path {
	fill: #fff;
}
.navwrap * {
	transition: all ease 0.2s;
}
.top_back {
	height: 45px;
	width: 45px;
	border-radius: 25px;
	background-color: var(--main-color);
	position: fixed;
	right: 15px;
	bottom: 15px;
	display: grid;
	place-content: center;
	z-index: 10000;
	opacity: 0;
	transition: all ease 0.5s;
}
.top_back.view {
	opacity: 1;
}
.top_back img {
	height: 13px;
	width: auto;
}
/* パンくずリスト
----------------------------------------------------------- */
.breadcrumb__list {
	display: flex;
	width: min(90%, 1200px);
	margin-inline: auto;
	flex-wrap: wrap;
	font-size: 14px;
}
.breadcrumb__item:not(:last-child)::after {
	content: '/';
	margin: 0 0.3rem;
}
.breadcrumb__item a {
	color: #9D9D9D;
}
.breadcrumb__item:last-child a {
	color: var(--font-color);
}
/* 
共通
----------------------------------------------------------- */
.pc {
	display: block;
}
br.pc {
	display: inherit;
}
.sp {
	display: none;
}
br.sp {
	display: none;
}
.pc1100 {
	display: block;
}
br.pc1100 {
	display: inherit;
}
.sp1100 {
	display: none;
}
br.sp1100 {
	display: none;
}
.pc640 {
	display: block;
}
br.pc640 {
	display: inherit;
}
.sp640 {
	display: none;
}
br.sp640 {
	display: none;
}
.inner {
	width: min(90%, 1200px);
	margin-inline: auto;
	padding: clamp(60px, 7.6vw, 145px) 0;
}
.flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex .img img {
	width: 100%;
	height: auto;
}
#main {
	overflow: hidden;
}
#container {
	position: relative;
}
.more_btn {
	display: block;
	width: min(100%, 260px);
	transition: all ease 0.5s;
	padding: 10px 40px;
	position: relative;
	z-index: 1;
	font-weight: 700;
	font-family: "Outfit", sans-serif;
	font-size: var(--fontsize-16);
	border: 2px dashed var(--main-color);
	border-radius: 40px;
	overflow: hidden;
}
.more_btn:hover {
	color: #fff;
}
.more_btn::before {
	content: "";
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	height: 10px;
	width: 10px;
	border-radius: 10px;
	background-color: var(--main-color);
	transition: all ease 0.5s;
}
.more_btn:hover::before {
	height: 12px;
	width: 12px;
	top: 52%;
	background-color: #fff;
	border-radius: 0% 100% 50% 50%/ 0% 50% 50% 100%;
	transform: translateY(-50%) rotate(45deg)
}
.more_btn::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	height: 0;
	width: 0;
	border-radius: 130px;
	z-index: -1;
	background-color: var(--main-color);
}
.more_btn:hover::after {
	width: 260px;
	height: 260px;
	transition: all ease 0.5s;
}
.anchor {
	padding-top: clamp(80px, 7.8vw, 150px);
	margin-top: calc(clamp(80px, 7.8vw, 150px) * -1);
}
.tac {
	text-align: center;
}
.tal {
	text-align: left;
}
.tar {
	text-align: right;
}
.taj {
	text-align: justify;
}
.linkbox {
	position: relative;
	z-index: 5;
}
.linkbox.tac a {
	margin: 0 auto;
}
.linkbox.tar a {
	margin: 0 0 0 auto;
}
.no_link {
	pointer-events: none !important;
}
.txt_only {
	width: 100% !important;
}
.txt_link {
	text-decoration: underline;
	transition: all ease 0.5s;
}
.txt_link:hover {
	opacity: 0.7;
}
.js-accordion > li {
	position: relative;
}
.js-accordion .ttl {
	padding-right: 30px;
	position: relative;
}
.js-accordion .ttl::before,
.js-accordion .ttl::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 16px;
	height: 2px;
	transition: all ease 0.5s;
	background-color: #A9BEB3;
}
.js-accordion .ttl::after {
	transform: rotate(-90deg);
}
.js-accordion .open .ttl::after {
	transform: rotate(0);
}
.js-accordion > li .btn {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	z-index: 1;
}
.js-accordion .box {
	display: none;
}
.hyo {
	overflow-x: auto;
}
.hyo dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	line-height: 1.5;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.hyo dl:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.hyo dl dt {
	width: 115px;
	padding: 14px clamp(10px, 0.73vw, 14px);
	position: relative;
}
.hyo dl dt::before {
	content: ":";
	position: absolute;
	right: 0;
	top: 12px;
}
.hyo dl dd {
	width: calc(100% - 115px);
	padding: 14px 20px;
}
/* 
 TOP
----------------------------------------------------------- */
.top_h2 {
	font-weight: 500;
	letter-spacing: 0.17em;
	font-family: "Outfit", sans-serif;
	font-size: clamp(40px, 3.1vw, 60px);
	margin-bottom: clamp(32px, 3.4vw, 65px);
}
.fv {
	width: 100%;
	height: 100vh;
	background-color: var(--main-color);
	display: grid;
	place-content: center;
	place-items: center start;
}
.fv h1 {
	margin-top: clamp(50px, 4.9vw, 95px);
	width: clamp(125px, 16.4vw, 315px);
}
.top_about {
	color: #fff;
}
.js-aboutbg {
	position: fixed !important;
	top: 0;
	left: 0;
	z-index: -10;
	width: 100%;
	height: 100vh;
	background-image: url('./library/images/top_about_bg01.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.top_about .inner {
	padding: clamp(110px, 13.8vw, 265px) 0 clamp(120px, 14.6vw, 280px);
	width: min(90%, 1570px);
}
.top_about h2 {
	font-size: clamp(23.5px, 3.4vw, 65px);
	margin-bottom: clamp(50px, 4.1vw, 80px);
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.22em;
}
.top_about p {
	line-height: 2.5;
	font-size: clamp(17px, 1.3vw, 25px);
	letter-spacing: 0.13em;
}
.top_product {
	background-color: var(--bg-color);
}
.top_product .inner {
	padding-bottom: clamp(80px, 12vw, 230px);
}
.swiper.sp640 {
	display: none !important;
}
.product_list > li {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
}
.product_list > li:not(:last-child) {
	margin-bottom: clamp(80px, 5.7vw, 110px);
}
.product_list > li .img {
	width: 43.5%;
	background-color: var(--mainsub-color);
}
.product_list > li .img img {
	width: 100%;
	height: 100%;
	aspect-ratio: 260 / 323;
}
.product_list > li .txt {
	width: 50%;
	display: flex;
	flex-direction: column-reverse;
}
.product_list > li .txt .swiper {
	width: 100%;
}
.product_list > li .txt h3 {
	font-size: 28px;
	font-weight: 500;
	font-family: "Outfit", sans-serif;
	margin-bottom: clamp(10px, 1.7vw, 33px);
	letter-spacing: 0.17em;
}
.product_list > li .txt h3 span {
	font-size: 18px;
	font-weight: 500;
	display: block;
	font-family: "Zen Kaku Gothic Antique", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.product_list > li .txt .price {
	font-size: clamp(21px, 1.5vw, 28px);
	margin-top: clamp(10px, 1.3vw, 25px);
}
.product_list > li .txt .price span {
	font-size: var(--fontsize-16);
}
.product_list > li .txt .capacity {
	margin: clamp(15px, 2vw, 40px) 0 clamp(20px, 6vw, 115px);
}
.product_list > li .txt .capacity span {
	padding: 0 10px;
}
.top_faq {
	background-color: #fff;
}
.top_faq .inner {
	padding-top: 0;
}
.faq_list li:not(:last-child) {
	margin-bottom: 8px;
}
.faq_list li {
	padding: 16px 20px;
	background-color: var(--sub-color);
	border: 1px solid rgba(0, 128, 65, 0.4);
	border-radius: 5px;
}
.faq_list li .ttl {
	font-size: var(--fontsize-18);
	color: var(--main-color);
	padding-left: 40px;
	line-height: 1.5;
}
.faq_list li .ttl span {
	font-family: "Outfit", sans-serif;
	padding-right: 1rem;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	left: 0;
	top: -7px;
}
.faq_list li .box {
	padding: 16px 0 4px;
	border-top: 1px solid #D8DEDB;
	margin-top: 16px;
	color: #555;
	font-size: var(--fontsize-16);
}
.faq_list li .box p {
	font-size: var(--fontsize-16);
}
.top_store {
	background-color: var(--bg-color);
}
.top_store .inner {
	padding: 0;
	width: min(90%, 1570px);
}
.top_store .top_h2 {
	margin-bottom: clamp(33px, 2vw, 40px);
}
.top_store .js-storeSlider {
	margin: 0 calc(50% - 50vw) 30px;
	width: 100vw;
	height: auto;
	max-width: none;
}
.top_store .address h3 {
	font-weight: 500;
	font-family: "Outfit", sans-serif;
	font-size: 28px;
	margin-bottom: 10px;
	letter-spacing: 0.17em;
}
.top_store .address p a {
	transition: all ease 0.5s;
	text-decoration: underline;
}
.top_store .address p a:hover {
	opacity: 0.7;
}
.top_news {
	background-color: var(--bg-color);
}
.top_news .inner {
	padding: clamp(95px, 10.4vw, 200px) 0 clamp(130px, 10.4vw, 200px);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.top_news .txt {
	width: 260px;
}
.top_news ul {
	width: min(calc(95% - 260px), 720px);
}
.top_news .top_h2 {
	margin-bottom: clamp(30px, 2.6vw, 50px);
}
.top_news ul li {
	border: 1px solid #C0D9CD;
	border-radius: 5px;
	background-color: var(--sub-color);
	transition: all ease 0.5s;
	position: relative;
}
.top_news ul li::before {
	content: "";
	position: absolute;
	right: 15px;
	height: 12px;
	width: 12px;
	top: 52%;
	background-color: var(--main-color);
	border-radius: 0% 100% 50% 50%/ 0% 50% 50% 100%;
	transform: translateY(-50%) rotate(45deg);
	opacity: 0;
	transition: all ease 0.5s;
}
.top_news ul li:hover::before {
	opacity: 1;
}
.top_news ul li:not(:last-child) {
	margin-bottom: 8px;
}
.top_news ul li a {
	padding: 20px 25px;
	display: block;
	width: 100%;
	height: 100%;
	transition: all ease 0.5s;
	line-height: 1.6;
}
.top_news ul li .news_info {
	margin-bottom: 7px;
	padding-right: 18px;
}
.top_news ul li h3 {
	line-height: 1.6;
	font-size: var(--fontsize-17);
	padding-right: 18px;
}
/* 
 subpage共通
----------------------------------------------------------- */
.sub_fv {
	padding-top: clamp(100px, 9.1vw, 175px);
}
.sub_fv h1 {
	font-size: clamp(30px, 3.4vw, 65px);
	font-weight: 500;
	width: min(90%, 1200px);
	margin-inline: auto;
	font-family: "Outfit", sans-serif;
	padding-bottom: clamp(30px, 2.6vw, 50px);
	border-bottom: 2px dotted var(--main-color);
	letter-spacing: 0.17em;
}
.sub .inner {
	padding: clamp(75px, 8.3vw, 160px) 0;
}
/* 
 news index-archives page（サイドバー無し）
----------------------------------------------------------- */
.news .inner {
	padding-top: 50px;
}
.news_info {
	margin-bottom: 30px;
	text-align: left;
}
.news_date {
	margin-right: 8px;
	color: #555555;
	font-size: 14px;
}
.news_cat a,
.news_cat span {
	padding: 2px 10px;
	font-size: 10px;
	white-space: nowrap;
	margin: 3px 5px 3px 0;
	font-weight: 700;
	transition: all ease 0.5s;
	display: inline-block;
	line-height: 1.3;
	background-color: var(--main-color);
	border-radius: 20px;
	border: 1px solid var(--main-color);
	color: #fff;
}
.news_cat a:hover {
	background-color: #fff;
	color: var(--main-color);
}
.ttl_maru {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 13px;
	color: var(--main-color);
	position: relative;
	padding-left: 20px;
}
.ttl_maru::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	padding: 5px;
	border-radius: 10px;
	background-color: var(--main-color);
}
.list_wrap {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.l_cotent {
	width: 70%;
	margin-right: 5%;
}
.news_list {
	margin-bottom: clamp(40px, 3.4vw, 65px);
}
.news_list li {
	border: 1px solid #C0D9CD;
	border-radius: 5px;
	background-color: var(--sub-color);
	transition: all ease 0.5s;
	position: relative;
}
.news_list li::before {
	content: "";
	position: absolute;
	right: 15px;
	height: 12px;
	width: 12px;
	top: 52%;
	background-color: var(--main-color);
	border-radius: 0% 100% 50% 50%/ 0% 50% 50% 100%;
	transform: translateY(-50%) rotate(45deg);
	opacity: 0;
	transition: all ease 0.5s;
}
.news_list li:hover::before {
	opacity: 1;
}
.news_list li:not(:last-child) {
	margin-bottom: 20px;
}
.news_list li a {
	padding: 20px 25px 17px 25px;
	display: block;
	width: 100%;
	height: 100%;
	transition: all ease 0.5s;
	line-height: 1.6;
}
.news_list .news_info {
	margin-bottom: 0;
	padding-top: 10px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin-right: 18px;
}
.news_list li h3 {
	font-size: var(--fontsize-20);
	background: none;
	padding-left: 0;
	text-align: justify;
	margin-bottom: 5px;
	padding-right: 18px;
}
.news_list li p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 16px;
	color: #555;
	font-size: var(--fontsize-16);
	line-height: 1.5;
	padding-right: 18px;
}
.sidebar {
	width: 25%;
}
.widgettitle {
	padding: 0 0 10px 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
	padding-left: 15px;
	font-size: var(--fontsize-16);
}
.widgettitle::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	padding: 5px;
	border-radius: 6px;
	background-color: var(--main-color);
}
.widget ul:not(.children) {
	margin-bottom: 30px;
}
.widget ul li:not(:last-child) a {
	margin-bottom: 10px;
}
.widget ul li a {
	width: 100%;
	font-size: var(--fontsize-16);
	display: block;
	padding-left: 25px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: relative;
	transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	color: #333;
}
.widget ul li a::before {
	content: "▶";
	font-size: 10px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.widget ul li a:hover {
	color: var(--main-color);
}
#archives-dropdown-2 {
	width: 100%;
	font-size: 14px;
	padding: 10px 15px;
	background-color: var(--sub-color);
	border: 1px solid #C0D9CD;
	border-radius: 3px;
}
/* news single page
----------------------------------------------------------- */
.stitle {
	font-size: var(--fontsize-20);
	font-weight: 700;
	color: var(--main-color);
	padding-bottom: 20px;
	margin-bottom: 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
	text-align: justify;
}
.stitle::before {
	content: "";
	background-color: var(--main-color);
	bottom: -1px;
	position: absolute;
	left: 0;
	width: 50px;
	height: 1px;
}
.singlecont {
	color: #333;
}
.singlecont a {
	text-decoration: underline;
	color: inherit;
	font-weight: inherit;
}
.singlecont h1,
.singlecont h2,
.singlecont h3,
.singlecont h4,
.singlecont h5,
.singlecont h6 {
	line-height: inherit;
	font-weight: bold;
}
/* 
 contact
----------------------------------------------------------- */
.contact .inner {
	padding-top: 65px;
}
.contact_wrap .tac {
	font-size: 15px;
	margin-bottom: clamp(40px, 2.6vw, 50px);
}
.contact_wrap .box {
	border: 1px solid #C0D9CD;
	border-radius: 5px;
	padding: clamp(20px, 3.4vw, 65px);
	background-color: var(--sub-color);
}
.contact_wrap .box .wpcf7 {
	width: min(100%, 1000px);
	margin-inline: auto;
}
.wpcf7 dl,
.mw_wrap dl {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: clamp(15px, 1.3vw, 25px);
	margin-bottom: clamp(15px, 1.3vw, 25px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font-size: var(--fontsize-16);
	color: #222222;
}
.wpcf7 dl:first-of-type,
.mw_wrap dl:first-of-type {
	padding-top: clamp(15px, 1.3vw, 25px);
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.wpcf7 dt,
.mw_wrap dt {
	width: 28%;
	margin-bottom: 3px;
}
.wpcf7 dt span,
.mw_wrap dt span {
	color: #fff;
	margin-left: 1em;
	font-size: 13px;
	background-color: var(--main-color);
	border-radius: 3px;
	padding: 0 6px;
}
.wpcf7 dd,
.mw_wrap dd {
	width: 72%;
}
.wpcf7 dd p .wpcf7-form-control-wrap:not(:first-of-type) {
	margin-top: clamp(10px, 0.8vw, 15px);
	display: block;
}
.wpcf7 dl.form_sub,
.mw_wrap dl.form_sub {
	margin-bottom: 10px;
}
.wpcf7 dl.form_sub dt p,
.mw_wrap dl.form_sub dt p {
	font-size: 16px;
}
.wpcf7 dt.form_sub_ttl,
.mw_wrap dt.form_sub_ttl {
	margin-bottom: 5px;
}
.wpcf7-list-item {
	margin: 0 clamp(20px, 2vw, 40px) 0 0;
	margin-bottom: 5px;
	display: inline-block !important;
}
.wpcf7-date {
	background-color: #FFF;
	max-width: 100%;
	border: 1px solid #ccc;
	padding: 5px;
	font-size: 0.9rem;
	min-height: 38px;
}
.wpcf7 .subbtn,
.mw_wrap .subbtn {
	width: fit-content;
	margin: clamp(25px, 2.6vw, 50px) auto 0;
}
.wpcf7 .flex,
.mw_wrap .flex {
	justify-content: center;
}
.wpcf7 .flex .subbtn,
.mw_wrap .flex .subbtn {
	margin: clamp(20px, 1.6vw, 30px) 15px 0;
}
.subbtn input {
	width: 300px;
	padding: 10px;
	color: #FFF;
	border-style: none;
	background-color: var(--main-color);
	border-radius: 5px;
	transition: all ease 0.5s;
}
.subbtn input:hover {
	opacity: 0.7;
}
.wpcf7 .flex .subbtn:first-of-type input,
.mw_wrap .flex .subbtn:first-of-type input {
	background-color: var(--mainsub-color);
	color: var(--font-color);
}
.wpcf7-text,
.mw_txt {
	width: 100%;
	background-color: #FFF;
	max-width: 100%;
	border: 1px solid #ccc;
	padding: 5px;
	min-height: 38px;
}
.wpcf7-select,
.mw_select,
.wpcf7-file,
.me_file {
	background-color: #FFF;
	width: 100%;
	border: 1px solid #ccc;
	padding: 5px 10px;
	font-size: 0.9rem;
	min-height: 38px;
}
.wpcf7-textarea,
.mw_area {
	width: 100%;
	background-color: #FFF;
	max-width: 100%;
	border: 1px solid #ccc;
	padding: 5px;
	font-size: 0.9rem;
}
.wpcf7 dd .sub_txt,
.mw_wrap dd .sub_txt {
	font-size: 14px;
	text-decoration: underline;
	margin-top: 10px;
}
.wpcf7 dd .sub,
.mw_wrap dd .sub {
	margin-bottom: 10px;
}
.shonin .wpcf7-list-item {
	margin: 15px auto 0;
	text-align: center;
	display: block !important;
	font-size: var(--fontsize-16);
	color: #222222;
}
.wpcf7 .flex,
.mw_wrap .flex {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.wpcf7 .flex .subbtn,
.mw_wrap .flex .subbtn {
	margin: clamp(20px, 1.6vw, 30px) 15px 0;
}
.wpcf7 .flex .subbtn:first-of-type input,
.mw_wrap .flex .subbtn:first-of-type input {
	background-color: #cccccc;
}
.wpcf7-turnstile {
	text-align: center;
	margin-top: clamp(15px, 1.6vw, 30px);
}
.wpcf7-spinner {
	display: none;
}
.priva {
	font-size: 14px;
	color: #222222;
	width: min(100%, 800px);
	margin-inline: auto;
}
.priva p {
	text-align: left;
}
.priva h3 {
	font-size: var(--fontsize-16);
	font-weight: 600;
	margin-bottom: 5px;
}
.priva h3 span {
	font-size: 14px;
	margin-left: 15px;
	display: inline-block;
}
.priva ul {
	width: 100%;
	overflow-y: scroll;
	height: 210px;
	border: 1px solid #ccc;
	background: #FFF;
	padding: clamp(15px, 1.6vw, 30px) clamp(20px, 2vw, 40px);
}
.priva li:not(:last-child) {
	margin-bottom: 20px;
}
.priva li h4 {
	margin-bottom: 5px;
	padding-bottom: 5px;
	border-bottom: 1px solid #2B1A02;
	font-size: 14px;
	font-weight: 500;
}
.privabtn {
	text-align: center;
	margin-top: 30px;
	font-weight: bold;
}
/* 
 foot
----------------------------------------------------------- */
.footer {
	background-color: var(--bg-color);
}
.footer .inner {
	padding: 0 0 25px;
	line-height: 1.6;
	width: min(90%, 1730px);
}
.footer .inner img {
	height: 20px;
	width: auto;
	margin-bottom: 12px;
}
.tel_btn {
	display: block;
	border: 1px solid #C0D9CD;
	background-color: var(--sub-color);
	border-radius: 30px;
	padding: 3px 14px 3px 35px;
	transition: all ease 0.5s;
	font-size: 15px;
	width: fit-content;
	line-height: 1;
	background-image: url('./library/images/icn_tel.svg');
	background-position: center left 14px;
	background-repeat: no-repeat;
	background-size: 15px auto;
}
.tel_btn:hover {
	opacity: 0.7;
}
.footer .tel_btn {
	margin-top: 12px;
}
.footer .info {
	position: relative;
}
.footer .footer_ig {
	transition: all ease 0.5s;
	right: 0;
	bottom: 0;
	position: absolute;
}
.footer .footer_ig:hover {
	opacity: 0.7;
}
.footer .footer_ig svg path {
	fill: var(--main-color);
}
.footer .btm {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: clamp(14px, 1vw, 20px);
	margin-top: clamp(14px, 1vw, 20px);
	border-top: 1px solid rgba(0, 128, 65, 0.5);
}
.footer .btm a {
	font-size: 14px;
	text-decoration: underline;
	transition: all ease 0.5s;
}
.footer .btm a:hover {
	opacity: 0.7;
}
.footer .copy {
	text-align: right;
	font-size: 15px;
	font-weight: 500;
	font-family: "Outfit", sans-serif;
}
/* 
 smartphone menu btn
----------------------------------------------------------- */
.spnavbtn {
	position: fixed;
	top: 20px;
	right: clamp(20px, 2vw, 40px);
	z-index: 999;
	text-align: center;
	cursor: pointer;
	display: none;
	border: none;
	transition: all ease 0.2s;
	background-color: unset;
	width: 40px;
	height: 40px;
	border-radius: 3px;
}
.spnavbtn.top {
	background-color: unset;
}
.nav-trigger,
.nav-trigger span {
	display: inline-block;
	transition: all ease 0.5s;
	box-sizing: border-box;
}
.nav-trigger {
	position: relative;
	width: 23px;
	height: 19px;
}
.spnavbtn.top .nav-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #000;
	border-radius: 20px;
	border-radius: 2px;
}
.spnavbtn .nav-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #008041;
	border-radius: 20px;
		border-radius: 2px;
}
.nav-trigger span:nth-of-type(1) {
	top: 0;
}
.nav-trigger span:nth-of-type(2) {
	top: 8px;
}
.nav-trigger span:nth-of-type(3) {
	bottom: 0;
}
/* 
 smartphone menu btn click
----------------------------------------------------------- */
.spnavbtn .activete {
	font-size: 0.9em;
	opacity: 0;
}
.spnavbtn .activete:before {
	content: "";
}
.nav-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
.nav-trigger.active span:nth-of-type(2) {
	left: 60%;
	opacity: 0;
	-webkit-animation: active-menu-bar02 .8s forwards;
	animation: active-menu-bar02 .8s forwards;
}
@-webkit-keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}
@keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}
.nav-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) rotate(45deg);
	transform: translateY(-9px) rotate(45deg);
}
/* 
 smartphone menu btn click area
----------------------------------------------------------- */
.spnav {
	position: relative;
	z-index: 999;
}
.sp_close {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	z-index: 998;
	display: none;
}
.sp_close.open {
	display: inherit;
}
.spnav .trigger {
	width: 300px;
	height: 100%;
	transition: all ease 0.5s;
	position: fixed;
	top: 0;
	left: -300px;
	overflow-y: scroll;
}
.spnav .open {
	width: 300px;
	max-width: 80%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	overflow-y: scroll;
	-webkit-backdrop-filter: saturate(140%) blur(20px) brightness(130%);
	backdrop-filter: saturate(140%) blur(20px) brightness(130%);
	background: rgba(255, 255, 255, 0.8);
}
.spnav .trigger > p {
	width: 100%;
	padding: 15px;
	text-align: center;
}
.spnav .trigger > p img {
	height: 40px;
	width: auto;
	margin: 0 auto;
}
.spnav .trigger > ul > li:first-child {
	border-top: 1px solid rgba(0, 128, 65, 0.5);
}
.spnav .trigger > ul > li {
	border-bottom: 1px solid rgba(0, 128, 65, 0.5);
	font-size: 0.9rem;
	transition: all ease 0.5s;
	line-height: 1.2;
}
.spnav .trigger > ul > li a,
.spnav .trigger > ul > li p {
	padding: 15px;
	display: block;
	position: relative;
	z-index: 1;
}
.spnav .trigger > ul > li span {
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-left: solid 1px rgba(0, 128, 65, 0.5);
	z-index: 2;
	cursor: pointer;
}
.spnav .trigger > ul > li:not(.sp_accordion) span::before {
	content: '';
	display: block;
	position: absolute;
	inset: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent transparent var(--main-color);
	border-width: 4.5px 0px 4.5px 7.79px;
}
.spnav .trigger > ul > li.sp_accordion > a {
	margin-right: 40px;
}
.spnav .trigger > ul > li.sp_accordion > a > span {
	right: -40px;
}
.spnav .trigger > ul > li.sp_accordion span::before,
.spnav .trigger > ul > li.sp_accordion span::after {
	content: '';
	display: block;
	position: absolute;
	inset: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--main-color);
	border-radius: 50vh;
	transition: all ease .2s;
}
.spnav .trigger > ul > li.sp_accordion span::before {
	width: 50%;
	height: 1px;
}
.spnav .trigger > ul > li.sp_accordion span::after {
	height: 50%;
	width: 1px;
}
.spnav .trigger > ul > li.sp_accordion.sp_accordion_open span::before,
.spnav .trigger > ul > li.sp_accordion.sp_accordion_open span::after {
	transform: translate(-50%, -50%) rotate(45deg);
	background-color: var(--main-color);
}
.spnav .trigger > ul > li:last-child {
	border-bottom: 1px solid rgba(0, 128, 65, 0.5);
}
.spnav ul li ul li {
	border-top: 1px solid rgba(0, 128, 65, 0.2);
}
.spnav ul li ul li:last-child {
	border-bottom: none;
}
.sp_accordionbox {
	width: 100%;
	background: rgba(255, 255, 255, 0.5);
	display: none;
}
.sp_accordionbox li a {
	padding-left: 35px !important;
}
.sp_accordionbox li a::before {
	content: '';
	display: block;
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent transparent var(--main-color);
	border-width: 4.5px 0px 4.5px 7.79px;
	margin-right: 10px;
}
@media screen and (max-width: 1600px) {
	/* 
	 header
	----------------------------------------------------------- */
}
@media screen and (max-width: 1400px) {
	/* 
	 header
	----------------------------------------------------------- */
}
@media screen and (max-width: 1200px) {
	/* 
	 header
	----------------------------------------------------------- */
}
@media screen and (max-width: 1100px) {
	.pc1100 {
		display: none;
	}
	br.pc1100 {
		display: none;
	}
	.sp1100 {
		display: block;
	}
	br.sp1100 {
		display: inherit;
	}
	/* 
	 header
	----------------------------------------------------------- */
	.navwrap ul {
		display: none;
	}
	/* 
	 top
	----------------------------------------------------------- */
	.top_store .info {
		width: 100%;
		margin-top: 30px;
	}
	.top_news .txt {
		width: 180px;
	}
	.top_news ul {
		width: min(calc(95% - 180px), 720px);
	}
	.faq_list li .ttl {
		padding-left: 30px;
	}
	.faq_list li .ttl span {
		font-size: 23px;
		top: -5px;
	}
	/* 
	 contact
	----------------------------------------------------------- */
	.wpcf7 dt,
	.mw_wrap dt {
		width: 210px;
	}
	.wpcf7 dd,
	.mw_wrap dd {
		width: calc(100% - 210px);
	}
	/* 
	 smartphone menu btn
	----------------------------------------------------------- */
	.spnavbtn {
		display: grid;
		place-content: center;
		place-items: center start;
	}
}
@media screen and (max-width:820px) {
	:root {
		--fontsize-17: 15px;
		--fontsize-16: 0.9rem;
		--fontsize-15: 14px;
	}
	.pc {
		display: none;
	}
	br.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	br.sp {
		display: inherit;
	}
	.flex-prev {
		display: none !important;
	}
	.flex-next {
		display: none !important;
	}
	/* 
	 top
	----------------------------------------------------------- */
	.product_list > li {
		align-items: flex-start;
	}
	/* news single page
	----------------------------------------------------------- */
	.l_cotent {
		width: 100%;
		margin: 0;
	}
	.sidebar {
		width: 100%;
		margin-top: 40px;
	}
	/* 
	 ページネーション
	----------------------------------------------------------- */
	.prev,
	.next {
		width: 100%;
		margin: 0 0 5px;
	}
	.next {
		float: right;
	}
	.single .nav-below {
		margin-top: 40px;
	}
	/* 
	 contact
	----------------------------------------------------------- */
	.mwform-tel-field input[type="text"],
	.mwform-zip-field input[type="text"] {
		display: inline-block;
		width: 26%;
	}
	.wpcf7 dt,
	.mw_wrap dt {
		width: 100%;
	}
	.wpcf7 dd,
	.mw_wrap dd {
		width: 100%;
	}
}
@media screen and (max-width:640px) {
	.pc640 {
		display: none;
	}
	br.pc640 {
		display: none;
	}
	.sp640 {
		display: block;
	}
	br.sp640 {
		display: inherit;
	}
	.top_back {
		display: none;
	}
	/* 
	 top
	----------------------------------------------------------- */
	.top_about h2 {
		font-size: clamp(24px, 3.4vw, 65px);
		line-height: 1.8;
		letter-spacing: 0.15em;
	}
	.top_about p {
		font-size: 15px;
		letter-spacing: 0.08em;
	}
	.product_list > li .img {
		width: 100%;
		margin-bottom: 14px;
	}
	.product_list > li .txt {
		width: 100%;
		flex-direction: column;
	}
	.product_list > li .txt h3 {
		margin: 30px 0 30px;
	}
	.product_list > li .txt .price {
		margin-top: 24px;
	}
	.product_list > li .txt .capacity {
		margin: 30px 0 0;
	}
	.faq_list li {
		padding: 12px 15px;
	}
	.faq_list li .ttl {
		padding-left: 25px;
	}
	.faq_list li .ttl span {
		font-size: 20px;
		top: -3px;
	}
	.top_news .txt {
		width: 100%;
	}
	.top_news ul {
		width: 100%;
	}
	.top_news .linkbox {
		width: 260px;
		margin: 0 auto;
	}
	.top_news .more_btn {
		margin-top: 30px;
	}
	.hyo dl dt {
		width: 90px;
	}
	.hyo dl dd {
		width: calc(100% - 90px);
		padding: 14px;
	}
	/* 
	 footer
	----------------------------------------------------------- */
	.footer .btm {
		display: block;
	}
	.footer .copy,
	.footer .btm a {
		text-align: center;
	}
	.footer .copy {
		margin-top: 15px;
	}
}