/*
tableStyle
---------------------------*/
.tableStyle {
	text-align: left;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	background-color: #fff;
}
.tableStyle.type02 {
	background-color: rgba(255, 255, 255, 0.9);
}
.tableStyle.type02 dl dt {
	text-align: right;
}
.tableStyle .tableCaption {
	text-align: center;
}
.tableStyle .tableCaption dt, .tableStyle .tableCaption dd {
	padding: 5px 0;
}
.tableStyle .tableCaption dt {
	background-color: #c59535;
	color: #fff;
	border-bottom: none;
}
.tableStyle .tableCaption dd {
	background-color: rgba(197, 149, 53, 0.4);
	border-bottom: none;
}
.tableStyle dl {
	display: flex;
}
.tableStyle dl dt, .tableStyle dl dd {
	padding: 10px 2.8%;
	line-height: 1.6;
}
.tableStyle dl dt p, .tableStyle dl dd p {
	line-height: 1.6;
}
.tableStyle dl dt p + p, .tableStyle dl dd p + p {
	padding-top: 5px;
}
.tableStyle dl dt {
	width: 190px;
	background-color: transparent;
	border-bottom: 1px solid #C59535;
}
.tableStyle dl dt div {
	display: table;
	height: 100%;
	width: 100%;
}
.tableStyle dl dt div p {
	display: table-cell;
	vertical-align: middle;
}
.tableStyle dl dd {
	width: calc(100% - 190px);
	border-bottom: 1px solid #F2F3F7;
}
.tableStyle dl dd a {
	color: #C59535;
	text-decoration: underline;
}
.tableStyle.priceTable dl dt, .tableStyle.priceTable dl dd {
	padding: 10px 4.8%;
	text-align: center;
	width: 300%;
}
.tableStyle.priceTable dl dd:last-of-type {
	text-align: right;
}
.tableStyle.priceTable .tableCaption dd:last-of-type {
	text-align: center;
}
@media (min-width: 1000px) {
	.tableStyle .tableCaption dt, .tableStyle .tableCaption dd {
		padding: 15px 0;
	}
	.tableStyle dl {
		display: flex;
		border-bottom: none;
		padding: 0;
	}
	.tableStyle dl:last-of-type dt, .tableStyle dl:last-of-type dd {
		border-bottom: none;
	}
	.tableStyle dl dt, .tableStyle dl dd {
		padding: 20px 24px;
	}
	.tableStyle dl dt p, .tableStyle dl dd p {
		font-size: 16px;
	}
	.tableStyle dl dt {
		width: 240px;
	}
	.tableStyle dl dd {
		width: calc(100% - 240px);
	}
}

.scrollTableWrap {
	overflow-x: scroll;
	margin-bottom: 10px;
}
.scrollTableWrap .tableStyle {
	width: 600px;
}
.scrollTableWrap.wide .tableBase {
	width: 700px;
}
@media (min-width: 768px) {
	.scrollTableWrap {
		overflow-x: auto;
	}
	.scrollTableWrap .tableStyle {
		width: 100%;
	}
	.scrollTableWrap.wide .tableBase {
		width: 100%;
	}
}

.tableinfo {
	font-size: 12px;
	font-weight: 600;
	text-align: left;
	padding-bottom: 8px;
}
.tableinfo:after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 3px;
	border-bottom: 1px solid #0B5930;
	border-right: 1px solid #0B5930;
	transform: skew(45deg);
}
@media (min-width: 768px) {
	.tableinfo {
		display: none;
	}
}

.columnTableWrap > div + div {
	margin-top: 30px;
}
@media (min-width: 768px) {
	.columnTableWrap {
		display: flex;
		justify-content: space-between;
	}
	.columnTableWrap > div {
		width: 48%;
	}
	.columnTableWrap > div + div {
		margin-top: 0;
	}
}

.tableTitle {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size: 16px;
	font-weight: 600;
	padding-bottom: 15px;
}
@media (min-width: 769px) {
	.tableTitle {
		font-size: 18px;
	}
}

/*
.newsList
---------------------------*/
.newsList li {
	position: relative;
	line-height: 1.6;
	padding: 5px 18px 5px 0;
	border-bottom: 1px solid #DCDCDC;
	list-style: none;
}
.newsList li:before {
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	position: absolute;
	content: "";
	background-image: url(../img/common/arrow-g.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 12px;
	height: 8px;
	margin: auto;
	transition: all 0.3s ease;
}
.newsList li:hover .date > p:before {
	left: 5px;
}
.newsList li a {
	display: block;
	margin-top: 0.5em;
}
@media (min-width: 1000px) {
	.newsList li {
		display: flex;
		padding: 20px 0 20px 25px;
	}
	.newsList li:before {
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		right: auto;
		position: absolute;
		content: "";
		background-image: url(../img/common/arrow-g.svg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: contain;
		width: 12px;
		height: 8px;
		transition: all 0.3s ease;
	}
	.newsList li a {
		margin-top: 0;
	}
}

#container {
	padding-bottom: 5px;
}

/*------------------------------------------------------------
	COMMON
-------------------------------------------------------------*/
body {
	position: relative;
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	line-height: 1;
	letter-spacing: 0.02em;
	font-size: 14px;
	color: #000;
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
@media (min-width: 769px) {
	body {
		font-size: 16px;
		letter-spacing: 0.05em;
	}
}
@media (max-width: 350px) {
	body {
		font-size: 11px;
		letter-spacing: 0;
	}
}

@media (min-width: 769px) {
	body * {
		font-weight: 500;
	}
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

a {
	color: inherit;
}

.cf:after {
	content: "";
	clear: both;
	display: block;
}

.ib {
	display: inline-block;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

strong {
	font-weight: 600;
}

.mode_pc,
.mode_pc_ib {
	display: none;
}

.mode_sp {
	display: block;
}

.mode_sp_ib {
	display: inline-block;
}

.tel a, .mail a {
	pointer-events: auto;
	cursor: pointer;
}

.bgImage {
	width: 100%;
	max-width: auto;
	max-width: inherit;
}

.mover {
	transition: opacity 0.2s ease-out;
	backface-visibility: hidden;
	zoom: 1;
}
.mover:hover {
	opacity: 0.7;
}

.inner,
.inner02,
.inner03,
.spInner {
	padding: 0 4%;
}
.inner .inner02,
.inner02 .inner02,
.inner03 .inner02,
.spInner .inner02 {
	padding: 0;
}

.contentWrap {
	padding-top: 60px;
}

.bg-g {
	background-color: #EFFAF0;
}

.shadow {
	background-color: #fff;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
}

.shadow02 {
	background-color: #fff;
	filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.1));
}

.anchor {
	margin-top: -70px;
	padding-top: 70px;
}

.serifFont {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.textBase {
	line-height: 1.6;
}

.em {
	font-weight: 600;
}

.maker {
	background: linear-gradient(transparent 60%, rgba(241, 196, 15, 0.4) 40%);
}

.btnBase {
	position: relative;
	text-align: center;
	min-width: 300px;
	margin: auto;
}
.btnBase:before {
	top: 50%;
	transform: translateY(-50%);
	right: 4px;
	position: absolute;
	content: "";
	background-image: url(../img/common/arrow-w.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 12px;
	height: 8px;
	transition: all 0.3s ease;
}
.btnBase a {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	background-color: #0B5930;
	color: #fff;
	line-height: 1.4;
	font-weight: 600;
	display: block;
	padding: 10px 0;
	border: 1px solid #0B5930;
}
.btnBase.type02 a {
	color: #0B5930;
	background-color: #fff;
}
.btnBase.type02:before {
	background-image: url(../img/common/arrow-g.svg);
}
.btnBase.gray a {
	background-color: #999;
	border: 1px solid #999;
}
@media (min-width: 768px) {
	.btnBase {
		width: 100%;
		max-width: 418px;
	}
	.btnBase:before {
		right: 15px;
	}
	.btnBase:hover:before {
		right: 8px;
	}
	.btnBase a {
		height: auto;
		font-size: 18px;
		padding: 12px 0;
	}
	.btnBase + .navBtn {
		margin-left: 2px;
	}
}
@media (max-width: 350px) {
	.btnBase {
		min-width: 200px;
	}
}

.bgContent {
	background-image: url(../img/common/content-bg.svg);
	background-repeat: no-repeat;
	background-position: right top;
	background-size: auto 40%;
}

.lowerContentInnerBox {
	margin-bottom: 30px;
}
.lowerContentInnerBox:last-of-type {
	margin-bottom: 0;
}

.t-center {
	text-align: center;
}

@media (min-width: 768px) {
	.mode_pc {
		display: block;
	}
	.mode_pc_ib {
		display: inline-block;
	}
	.mode_sp,
.mode_sp_ib {
		display: none;
	}
	.tel a, .mail a {
		pointer-events: none;
	}
	.anchor {
		margin-top: -120px;
		padding-top: 120px;
	}
	.shadow {
		filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
	}
	.bgContent {
		background-size: cover;
	}
	.bgContent.type02 .bgContent {
		background-size: auto 50%;
	}
	.lowerContentInnerBox {
		margin-bottom: 50px;
	}
	.inner,
.pcInner {
		width: 90%;
		max-width: 1240px;
		margin: auto;
		padding: 0;
	}
	.inner .inner02,
.inner .inner03,
.pcInner .inner02,
.pcInner .inner03 {
		width: auto;
	}
	.inner02,
.pcInner02 {
		width: 90%;
		max-width: 1028px;
		margin: auto;
		padding: 0;
	}
	.inner03,
.pcInner03 {
		width: 90%;
		max-width: 816px;
		margin: auto;
		padding: 0;
	}
}
@media (min-width: 1000px) {
	.spInner {
		padding: 0;
	}
	.contentWrap {
		padding-top: 80px;
	}
}
/*
header
---------------------------*/
header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	margin: auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	transition: 0.5s ease;
	z-index: 100;
	background-color: #fff;
	/*
	#contentNav
	---------------------------*/
}
header.is-fixed {
	background-color: rgba(255, 255, 255, 0.8);
	transition: all 1000ms;
}
header .companynameBox {
	padding: 10px;
}
header .companynameBox p {
	font-size: 11px;
	padding-bottom: 5px;
}
header .companynameBox img {
	width: 130px;
}
header .navBox .navBtnWrap {
	display: flex;
	justify-content: flex-end;
}
header .navBox .navBtn {
	text-align: center;
}
header .navBox .navBtn .pcOnly {
	display: none;
}
header .navBox .navBtn a {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	color: #0B5930;
	background-color: #fff;
	line-height: 1.4;
	display: block;
	width: 58px;
	height: 58px;
	padding: 9px 0;
	border: 1px solid #0B5930;
}
header .navBox .navBtn.type02 a {
	background-color: #0B5930;
	color: #fff;
}
header #contentNav {
	position: fixed;
	top: 58px;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
	background-color: rgba(255, 255, 255, 0.98);
	height: 100%;
	transition: all 0.5s;
}
header #contentNav a {
	display: block;
	font-size: 15px;
	padding: 15px 0;
}
header #contentNav .navInner {
	text-align: left;
	padding: 10px 4% 80px;
	height: 100%;
	overflow-y: auto;
}
header #contentNav p,
header #contentNav .loginMenu {
	position: relative;
	padding-left: 20px;
}
header #contentNav p:before,
header #contentNav .loginMenu:before {
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	position: absolute;
	content: "";
	background-image: url(../img/common/arrow-g.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 12px;
	height: 8px;
}
header #contentNav p + p,
header #contentNav .loginMenu + p {
	border-top: 1px solid #DCDCDC;
}
header #contentNav .loginMenu {
	padding: 15px 0 15px 20px;
	border-top: 1px solid #DCDCDC;
}
@media (min-width: 769px) {
	header #contentNav p + p {
		padding-left: 1em;
	}
}
@media (min-width: 1000px) {
	header {
		padding: 15px 20px;
		background-color: transparent;
	}
	header.is-fixed {
		padding: 15px 20px 5px;
		transform: translate(0, -10px);
	}
	header .companynameBox {
		padding: 0;
	}
	header .companynameBox p {
		transition: all 0.5s;
		font-size: 14px;
		padding-bottom: 8px;
	}
	header .companynameBox img {
		transition: all 0.5s;
		width: 214px;
	}
	header .navBox .navBtn .pcOnly {
		display: block;
	}
	header .navBox .navBtn .spOnly {
		display: none;
	}
	header .navBox .navBtn a {
		width: 200px;
		height: auto;
		font-weight: 600;
		padding: 12px 0;
	}
	header .navBox .navBtn + .navBtn {
		margin-left: 2px;
	}
	header #menu_btn {
		display: none;
	}
	header #contentNav {
		display: block !important;
		position: relative;
		top: 0;
		height: auto;
		background-color: transparent;
		padding-top: 10px;
	}
	.is-fixed header #contentNav {
		padding: 25px 0;
	}
	header #contentNav a {
		position: relative;
		font-size: 14px;
		padding: 1em 0;
	}
	header #contentNav a:after {
		content: "";
		display: block;
		position: absolute;
		height: 1px;
		background: #0B5930;
		left: 0;
		right: 0;
		margin: auto;
		bottom: 8px;
		transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		width: 0;
	}
	header #contentNav a:hover:after, header #contentNav a.current:after {
		width: 100%;
	}
	header #contentNav p {
		padding: 0;
	}
	header #contentNav p:before {
		content: none;
	}
	header #contentNav p + p {
		padding-left: 1em;
		border: none;
	}
	header #contentNav p.current a:after {
		width: 100%;
	}
	header #contentNav p:first-of-type.current a:after {
		width: 0;
	}
	header #contentNav .navInner {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		overflow: hidden;
		height: auto;
	}
}
@media (min-width: 1200px) {
	header #contentNav a {
		font-size: 16px;
	}
	header #contentNav p + p {
		padding-left: 2em;
	}
}
@media (max-width: 350px) {
	header .navBox .navBtn a {
		width: 50px;
		height: 50px;
	}
}

#menu_btn {
	text-align: center;
	margin: auto;
	cursor: pointer;
	text-align: center;
	padding: 10px 12px;
	cursor: pointer;
}
#menu_btn p {
	font-size: 12px;
	font-weight: 500;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	color: #0B5930;
	padding-top: 4px;
}
#menu_btn div {
	position: relative;
	width: 28px;
	height: 20px;
	margin: auto;
}
#menu_btn span {
	position: absolute;
	right: 0;
	width: 28px;
	height: 1px;
	background-color: #0B5930;
	transition: all 0.4s;
	margin: auto;
}
#menu_btn span:nth-of-type(1) {
	top: 0;
}
.open #menu_btn span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}
#menu_btn span:nth-of-type(2) {
	top: 0;
	bottom: 0;
}
.open #menu_btn span:nth-of-type(2) {
	opacity: 0;
}
#menu_btn span:nth-of-type(3) {
	top: auto;
	bottom: 0;
}
.open #menu_btn span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) rotate(45deg);
	transform: translateY(-9px) rotate(45deg);
}
@media (min-width: 1000px) {
	#menu_btn {
		display: none;
		padding: 32px 8px;
	}
}

/*------------------------------------------------------------
	TOP PAGE
-------------------------------------------------------------*/
/*
flowNav
---------------------------*/
#flowNav {
	position: fixed;
	top: 250px;
	left: -6px;
	z-index: 10;
}

/*
#mainVisual
---------------------------*/
#mainVisual {
	position: relative;
	padding-top: 58px;
}
#mainVisual .minVisualInner {
	background: linear-gradient(rgba(239, 250, 240, 0.1), rgba(239, 250, 240, 0.3));
	padding-bottom: 20px;
}
#mainVisual.top .textBox {
	background-image: url(../img/common/mv-bg.svg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	padding: 20px 0;
}
#mainVisual.top h1 {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size: 15px;
	line-height: 1.6;
}
#mainVisual.top h1 span {
	font-size: 18px;
}
#mainVisual.top h2 {
	font-weight: 600;
	line-height: 1.6;
	font-size: 16px;
	padding: 15px 0;
}
#mainVisual.top .imageBox > div {
	position: relative;
	background-image: url(../img/top/mv-photo.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}
#mainVisual.top .imageBox > div:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
	margin: auto;
}
#mainVisual.top .imageBox img {
	position: relative;
	z-index: 2;
	padding: 50px 20px 20px;
}
#mainVisual.lower {
	background-image: url(../img/common/mv-bg.svg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
}
#mainVisual.lower .minVisualInner {
	padding-bottom: 0;
}
#mainVisual.lower h1 {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size: 18px;
	line-height: 1.6;
	padding: 38px 0;
}
@media (min-width: 769px) {
	#mainVisual {
		background-image: url(../img/common/mv-bg.svg);
		background-repeat: no-repeat;
		background-position: left top;
		background-size: cover;
		padding-top: 80px;
	}
	#mainVisual .minVisualInner {
		background: transparent;
		padding-bottom: 0;
	}
	#mainVisual .mvBg {
		background: linear-gradient(rgba(239, 250, 240, 0.1), rgba(239, 250, 240, 0.3));
	}
	#mainVisual.top h1 {
		font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
		font-size: 24px;
	}
	#mainVisual.top h1 span {
		font-size: 32px;
	}
	#mainVisual.top h2 {
		font-size: 20px;
		padding: 40px 0;
	}
	#mainVisual.top .textBox {
		position: relative;
		background-image: none;
		width: 49%;
		padding: 100px 0 152px;
	}
	#mainVisual.top .textBox p {
		font-size: 18px;
	}
	#mainVisual.top .imageBox {
		position: absolute;
		top: 80px;
		bottom: 0;
		right: 0;
		width: 47%;
		text-align: center;
		padding: 0;
	}
	#mainVisual.top .imageBox > div:after {
		background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
	}
	#mainVisual.top .imageBox img {
		width: 524px;
		padding: 50px 20px 80px;
	}
	#mainVisual.lower {
		background-position: left -300px;
		background-size: cover;
		padding-top: 120px;
	}
	#mainVisual.lower .minVisualInner {
		background: linear-gradient(rgba(239, 250, 240, 0.1), rgba(239, 250, 240, 0.3));
	}
	#mainVisual.lower h1 {
		font-size: 30px;
		padding: 60px 0;
	}
}

/*
mainNav
---------------------------*/
#mainNav {
	position: relative;
	z-index: 2;
}
#mainNav .topBtn {
	margin-bottom: 8px;
}
#mainNav .topBtn .btnBase {
	max-width: inherit;
}
#mainNav .topBtn .btnBase span {
	font-size: 12px;
}
#mainNav .innerNav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
#mainNav .innerNav .btnBase {
	width: calc((100% - 5px) / 2);
	min-width: inherit;
	margin: inherit;
}
#mainNav .innerNav .btnBase:nth-child(n+3) {
	margin-top: 5px;
}
#mainNav .btnBase a {
	letter-spacing: 0;
}
@media (min-width: 769px) {
	#mainNav {
		margin-top: -35px;
		padding: 30px;
		background-color: rgba(255, 255, 255, 0.8);
		box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
	}
	#mainNav .topBtn {
		margin-bottom: 14px;
	}
	#mainNav .topBtn .btnBase span {
		font-size: 14px;
	}
	#mainNav .innerNav .btnBase {
		width: calc((100% - 20px) / 3);
		max-width: inherit;
	}
	#mainNav .innerNav .btnBase:nth-child(n+3) {
		margin-top: 0;
	}
	#mainNav .btnBase a {
		padding: 20px 0;
	}
}

/*
contentBox
---------------------------*/
.contentBox .topContentTitle {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	color: #0B5930;
	padding-left: 25px;
	margin-bottom: 20px;
}
.contentBox .topContentTitle:after {
	content: "";
	display: block;
	background-color: #0B5930;
	width: 15px;
	height: 1px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
@media (min-width: 769px) {
	.contentBox .topContentTitle {
		font-size: 30px;
		padding-left: 45px;
		margin-bottom: 40px;
	}
	.contentBox .topContentTitle:after {
		width: 30px;
	}
}

/*
productLineup
---------------------------*/
#productBox > div {
	padding: 40px 0;
}
#productBox .productLineup > div {
	background-color: #fff;
	padding: 20px;
}
#productBox .productLineup > div + div {
	margin-top: 20px;
}
#productBox .productName {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	padding-bottom: 5px;
}
#productBox .productName span {
	display: block;
	font-weight: 600;
}
#productBox .productName .em {
	background-color: #C59535;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	position: relative;
	line-height: 1.4;
	padding: 2px 1em;
	margin-bottom: 5px;
	display: inline-block;
}
#productBox .productDetail {
	padding: 20px 0;
}
#productBox .productDetail dt {
	font-size: 18px;
	font-weight: 600;
	color: #0B5930;
	padding-bottom: 10px;
}
#productBox .productDetail dd p {
	font-size: 16px;
	padding-bottom: 10px;
}
#productBox .btnBase + .btnBase {
	margin-top: 10px;
}
#productBox .note {
	line-height: 1.4;
	padding: 15px 0;
}
@media (min-width: 768px) {
	#productBox > div {
		padding: 70px 0;
	}
	#productBox .productLineup {
		display: flex;
		justify-content: space-between;
	}
	#productBox .productLineup > div {
		width: calc((100% - 32px) / 2);
		padding: 30px 40px 40px;
	}
	#productBox .productLineup > div + div {
		margin-top: 0;
	}
	#productBox .productName {
		font-size: 22px;
		padding-bottom: 10px;
	}
	#productBox .productName .em {
		margin-bottom: 10px;
	}
	#productBox .productDetail dt {
		font-size: 24px;
		font-weight: 600;
		padding-bottom: 10px;
		padding-bottom: 15px;
	}
	#productBox .productDetail dd p {
		font-size: 18px;
		padding-bottom: 15px;
	}
	#productBox .productDetail dd span {
		font-size: 14px;
	}
}

/*
priceList
---------------------------*/
#priceList {
	text-align: center;
	background-color: #fff;
	margin-bottom: 40px;
}
#priceList > div {
	background-color: rgba(197, 149, 53, 0.1);
	padding: 20px 0;
	margin-top: 20px;
	border-top: 2px solid #C59535;
}
#priceList .captionName,
#priceList .captionDetail {
	font-weight: 600;
	line-height: 1.6;
}
#priceList .captionName {
	font-size: 18px;
	padding-bottom: 0.5em;
}
#priceList .captionDetail {
	line-height: 1.6;
	padding-bottom: 1em;
}
@media (min-width: 768px) {
	#priceList > div {
		margin-top: 40px;
		padding: 30px 0;
	}
	#priceList .captionName {
		font-size: 24px;
	}
	#priceList .captionDetail {
		font-size: 18px;
	}
}
@media (max-width: 350px) {
	#priceList .captionName {
		font-size: 16px;
	}
	#priceList .captionDetail {
		font-size: 11px;
	}
}

/*
component
---------------------------*/
#component {
	margin-bottom: 40px;
}
#component > div {
	text-align: center;
	background-color: #fff;
}
#component > div > div {
	background-color: rgba(239, 250, 240, 0.3);
	padding: 20px 0;
	margin-top: 20px;
	border-top: 2px solid #0B5930;
}
#component .captionName,
#component .captionDetail {
	font-weight: 600;
	line-height: 1.6;
}
#component .captionName {
	font-size: 18px;
	padding-bottom: 0.5em;
}
#component .captionDetail {
	line-height: 1.6;
	padding-bottom: 1em;
}
@media (min-width: 768px) {
	#component {
		margin-bottom: 80px;
	}
	#component > div > div {
		margin-top: 40px;
		padding: 30px 0;
	}
	#component .captionName {
		font-size: 24px;
	}
	#component .captionDetail {
		font-size: 18px;
	}
}
@media (max-width: 350px) {
	#component .captionName {
		font-size: 16px;
	}
	#component .captionDetail {
		font-size: 11px;
	}
}

/*
newsContent
---------------------------*/
#newsContent {
	padding-bottom: 40px;
}
@media (min-width: 769px) {
	#newsContent {
		padding-bottom: 140px;
	}
}

/*
contactBox
---------------------------*/
.contactBox > div {
	text-align: center;
}
.contactBox .textBase {
	text-align: left;
	padding-bottom: 20px;
}
.contactBox .textBox {
	padding: 20px 4%;
	border: 1px solid #0B5930;
}
.contactBox .textBox > div + div {
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px solid #0B5930;
}
.contactBox .infoText {
	color: #1A3320;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	padding-bottom: 10px;
}
.contactBox .tel {
	color: #0B5930;
	font-size: 24px;
	margin-bottom: 10px;
}
.contactBox .tel a {
	position: relative;
	font-weight: 600;
	padding-left: 32px;
}
.contactBox .tel a:before {
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: auto;
	position: absolute;
	content: "";
	background-image: url(../img/common/tel-icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 22px;
	height: 24px;
}
.contactBox p {
	line-height: 1.6;
}
.contactBox .note {
	padding-top: 1em;
}
@media (min-width: 769px) {
	.contactBox {
		display: flex;
	}
	.contactBox > div {
		width: 50%;
	}
	.contactBox .textBox {
		padding: 30px;
	}
	.contactBox .textBox > div + div {
		padding-top: 20px;
		margin-top: 15px;
	}
	.contactBox .imageBox {
		background-color: #0B5930;
		padding: 10px;
	}
	.contactBox .infoText {
		font-size: 20px;
	}
	.contactBox .tel {
		font-size: 30px;
	}
	.contactBox .note {
		font-size: 12px;
	}
}

/*
flowBtn
---------------------------*/
#flowBtn {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	font-size: 15px;
	background-color: rgba(197, 149, 53, 0.9);
	color: #fff;
	z-index: 15;
	padding: 5px 0;
}
#flowBtn .flowBtnInner {
	display: table;
	width: 100%;
}
#flowBtn .flowBtnInner > div {
	width: 50%;
	text-align: center;
	display: table-cell;
	height: 100%;
	vertical-align: middle;
}
#flowBtn .flowBtnInner > div + div {
	border-left: 1px solid #fff;
}
#flowBtn.is-absolute {
	position: absolute;
	top: 0;
	bottom: auto;
}
#flowBtn a {
	display: block;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	line-height: 1.2;
	padding: 2px 0;
}
@media (min-width: 768px) {
	#flowBtn {
		display: none;
	}
}
@media (min-width: 1000px) {
	#flowBtn {
		display: none !important;
	}
}
@media (max-width: 350px) {
	#flowBtn a {
		font-size: 12px;
	}
}

footer {
	position: relative;
	background-color: #1A3320;
	color: #fff;
	margin-top: 80px;
	padding-top: 50px;
}
footer .footerBg {
	background-image: url(../img/common/footer-bg.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	padding: 40px 4.8% 10px;
}
footer .companynameBox p {
	font-size: 11px;
	padding-bottom: 5px;
}
footer .companynameBox img {
	width: 130px;
}
footer .sitemap {
	padding-top: 40px;
}
footer .sitemap li {
	list-style: none;
}
footer .sitemap li + li {
	padding-top: 1em;
}
footer .sitemap ul + ul {
	padding-top: 1em;
}
footer .copy {
	font-size: 11px;
	text-align: center;
	padding-top: 30px;
}
@media (min-width: 769px) {
	footer {
		margin-top: 160px;
		padding-top: 0;
	}
	footer .footerBg {
		padding: 100px 0 15px;
	}
	footer .footerBg > div {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	footer .sitemap {
		display: flex;
		padding-top: 0;
	}
	footer .sitemap li + li {
		padding-top: 1.5em;
	}
	footer .sitemap ul + ul {
		padding: 0 0 0 60px;
	}
	footer .companynameBox {
		padding: 0;
	}
	footer .companynameBox p {
		transition: all 0.5s;
		font-size: 14px;
		padding-bottom: 8px;
	}
	footer .companynameBox img {
		transition: all 0.5s;
		width: 214px;
	}
	footer .copy {
		font-size: 12px;
		padding-top: 100px;
	}
}

/*------------------------------------------------------------
	LOWER PAGE
-------------------------------------------------------------*/
/*
contentTitleWrap
---------------------------*/
.contentTitleWrap {
	text-align: center;
	padding-bottom: 20px;
}
.contentTitleWrap > div {
	display: flex;
	align-items: center;
}
.contentTitleWrap > div:before, .contentTitleWrap > div:after {
	content: "";
	height: 1px;
	background-color: #0B5930;
	flex-grow: 1;
}
.contentTitleWrap .contentTitle {
	font-size: 16px;
	line-height: 1.2;
	font-weight: 600;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	padding: 0 20px;
}
@media (min-width: 769px) {
	.contentTitleWrap {
		padding-bottom: 50px;
	}
	.contentTitleWrap.type02 {
		padding-bottom: 60px;
	}
	.contentTitleWrap .contentTitle {
		font-size: 24px;
		padding: 0 80px;
	}
}

.lowerWrap {
	padding-top: 20px;
}
.lowerWrap .bgBox {
	padding: 30px 4.8%;
}
.lowerWrap .bgBox + .bgBox {
	margin-top: 30px;
}
.lowerWrap .lowerContent {
	margin-bottom: 40px;
}
.lowerWrap .lowerContent.bottom {
	margin-bottom: 0;
}
.lowerWrap .lowerContent.type02 {
	margin-bottom: 30px;
}
@media (min-width: 769px) {
	.lowerWrap {
		padding-top: 20px;
	}
	.lowerWrap .bgBox {
		padding: 60px 0;
	}
	.lowerWrap .bgBox + .bgBox {
		margin-top: 60px;
	}
	.lowerWrap .lowerContent {
		margin-bottom: 120px;
	}
	.lowerWrap .lowerContent.type02 {
		margin-bottom: 80px;
	}
}

.bottomImage {
	padding-top: 40px;
}
@media (min-width: 769px) {
	.bottomImage {
		padding-top: 100px;
	}
}

/*
#acupuncture
---------------------------*/
.columnWrap + .columnWrap {
	margin-top: 30px;
}
.columnWrap + .detailInformation {
	margin-top: 50px;
}
.columnWrap .textBox,
.columnWrap .imageBox {
	width: 100%;
}
.columnWrap .textBox a,
.columnWrap .imageBox a {
	color: #C59535;
	text-decoration: underline;
}
.columnWrap .textBox p {
	line-height: 1.8;
}
.columnWrap .textBox p + p {
	padding-top: 10px;
}
.columnWrap .textBox + .textBox {
	padding-top: 25px;
	margin-top: 25px;
	border-top: 1px solid #eee;
}
.columnWrap .imageBox {
	text-align: center;
	margin-bottom: 20px;
	margin-top: 20px;
}
.columnWrap .imageBox img + p {
	padding: 10px 0;
}
.columnWrap + .acupunctureDetail {
	padding-top: 40px;
}
.columnWrap .imageShadowBox {
	padding: 50px 0;
}
.columnWrap .imageShadowBox.type02 {
	padding: 10px 0;
}
.columnWrap .imageShadowBox p {
	line-height: 1.6;
}
.columnWrap .imageShadowBox p + img {
	padding-top: 20px;
}
.columnWrap .imageShadowBox img + p {
	padding-top: 20px;
}
.columnWrap.flexType .imageBox {
	margin-top: 20px;
}
.columnWrap.flexType.centerType > div {
	text-align: center;
}
@media (min-width: 768px) {
	.columnWrap .textBox,
.columnWrap .imageBox {
		width: calc((100% - 32px) / 2);
	}
	.columnWrap .textBox {
		float: left;
	}
	.columnWrap .textBox + .textBox {
		padding: 0 0 0 32px;
		margin-top: 0;
		border-left: 1px solid #eee;
		border-top: none;
	}
	.columnWrap .imageBox {
		float: right;
		margin-bottom: 0;
		margin-top: 0;
	}
	.columnWrap .imageBox img + p {
		padding: 20px 0;
	}
	.columnWrap .readTitle {
		padding-bottom: 20px;
	}
	.columnWrap.type02 .textBox {
		float: right;
	}
	.columnWrap.type02 .imageBox {
		float: left;
	}
	.columnWrap.flexType {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	.columnWrap.flexType.centerType {
		align-items: center;
		justify-content: center;
	}
	.columnWrap.flexType .textBox {
		float: none;
	}
	.columnWrap.flexType .imageBox {
		float: none;
		margin-top: 0;
	}
	.columnWrap.flexType.type02 .textBox {
		float: none;
		order: 2;
	}
	.columnWrap.flexType.type02 .imageBox {
		float: none;
		order: 1;
	}
}
@media (min-width: 1000px) {
	.columnWrap + .columnWrap {
		margin-top: 50px;
	}
	.columnWrap .textBox p {
		font-size: 16px;
	}
	.columnWrap .imageShadowBox {
		padding: 80px 0;
	}
	.columnWrap .imageShadowBox.type02 {
		padding: 20px 0;
	}
	.columnWrap .imageShadowBox p + img {
		padding-top: 40px;
	}
	.columnWrap .imageShadowBox img + p {
		padding-top: 40px;
	}
}

#pageNav {
	margin-bottom: 30px;
}
#pageNav .pageNavBtn + .pageNavBtn {
	margin-top: 10px;
}
@media (min-width: 768px) {
	#pageNav {
		display: flex;
		justify-content: center;
		margin-bottom: 80px;
	}
	#pageNav .pageNavBtn {
		width: calc((100% - 20px) / 3);
	}
	#pageNav .pageNavBtn + .pageNavBtn {
		margin: 0 0 0 10px;
	}
}

.pageNavBtn {
	position: relative;
	text-align: center;
}
.pageNavBtn:before {
	top: 50%;
	transform: translateY(-50%);
	left: 8px;
	position: absolute;
	content: "";
	background-image: url(../img/common/arrow-down.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
	transition: all 0.3s ease;
}
.pageNavBtn a {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	background-color: rgba(197, 149, 53, 0.4);
	line-height: 1.4;
	font-weight: 600;
	display: block;
	padding: 15px 0;
}
@media (min-width: 768px) {
	.pageNavBtn {
		width: 100%;
		max-width: 418px;
	}
	.pageNavBtn:before {
		left: 10px;
	}
	.pageNavBtn a {
		height: auto;
		font-size: 12px;
		padding: 22px 0;
	}
	.pageNavBtn + .navBtn {
		margin-left: 2px;
	}
}
@media (min-width: 1000px) {
	.pageNavBtn a {
		font-size: 16px;
	}
}
@media (max-width: 350px) {
	.pageNavBtn {
		min-width: 200px;
	}
	.pageNavBtn a {
		font-size: 16px;
	}
}

.readTitle {
	color: #1A3320;
	font-size: 14px;
	font-weight: 600;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	line-height: 1.4;
	padding-bottom: 15px;
}
.readTitle.centerType {
	text-align: center;
}
.readTitle.noSpace {
	padding-bottom: 0;
}
.readTitle span {
	color: #C59535;
	font-size: 16px;
}
@media (min-width: 1000px) {
	.readTitle {
		font-size: 18px;
		padding-bottom: 40px;
	}
	.readTitle span {
		font-size: 24px;
	}
}

.manufacturingFlow {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 30px;
}
.manufacturingFlow > div {
	text-align: center;
	width: 49%;
}
.manufacturingFlow > div:nth-of-type(n + 3) {
	margin-top: 50px;
}
.manufacturingFlow > div:nth-of-type(2) {
	position: relative;
}
.manufacturingFlow > div:nth-of-type(2):after {
	right: 0;
	left: 0;
	bottom: -60px;
	position: absolute;
	content: "";
	background-image: url(../img/lower/arrow-g-bottom.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 30px;
	height: 70px;
	z-index: 2;
	margin: auto;
}
.manufacturingFlow > div:nth-of-type(2) .image:after {
	content: none;
}
.manufacturingFlow > div:nth-of-type(3) .image:after {
	transform: rotateZ(180deg);
}
.manufacturingFlow > div:nth-of-type(4) .image:after {
	content: none;
}
.manufacturingFlow .image {
	position: relative;
	background-color: #EFFAF0;
}
.manufacturingFlow .image:after {
	top: 0;
	bottom: 0;
	right: -30px;
	position: absolute;
	content: "";
	background-image: url(../img/lower/arrow-g.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 70px;
	height: 30px;
	z-index: 2;
	margin: auto;
}
.manufacturingFlow .manufacturingDetail {
	display: table;
	width: 100%;
	height: 100%;
	height: 60px;
	padding: 5px 0;
	border: 1px solid #0B5930;
	margin-top: 10px;
}
.manufacturingFlow .manufacturingDetail p {
	line-height: 1.6;
	font-size: 12px;
	letter-spacing: 0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
@media (min-width: 768px) {
	.manufacturingFlow {
		padding-top: 50px;
	}
	.manufacturingFlow > div {
		width: 24%;
	}
	.manufacturingFlow > div:nth-of-type(n + 3) {
		margin-top: 0;
	}
	.manufacturingFlow > div:nth-of-type(2) {
		position: relative;
	}
	.manufacturingFlow > div:nth-of-type(2):after {
		content: none;
	}
	.manufacturingFlow > div:nth-of-type(2) .image:after {
		content: "";
	}
	.manufacturingFlow > div:nth-of-type(3) .image:after {
		transform: none;
	}
	.manufacturingFlow .manufacturingDetail {
		height: 80px;
		margin-top: 20px;
	}
	.manufacturingFlow .manufacturingDetail p {
		font-size: 12px;
	}
}
@media (min-width: 1000px) {
	.manufacturingFlow .manufacturingDetail p {
		font-size: 14px;
	}
}
@media (min-width: 1400px) {
	.manufacturingFlow .manufacturingDetail p {
		font-size: 16px;
	}
}
@media (max-width: 350px) {
	.manufacturingFlow .manufacturingDetail p {
		font-size: 10px;
	}
}

.detailInformation {
	position: relative;
	background-color: rgba(197, 149, 53, 0.15);
	padding: 30px 4.8%;
}
.detailInformation:before, .detailInformation:after,
.detailInformation > div:before,
.detailInformation > div:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 1px;
	content: "";
	background-color: #C59535;
}
.detailInformation:after,
.detailInformation > div:after {
	width: 1px;
	height: 40px;
}
.detailInformation > div:before,
.detailInformation > div:after {
	left: auto;
	top: auto;
	right: 0;
	bottom: 0;
}
@media (min-width: 769px) {
	.detailInformation {
		padding: 40px 4.8%;
	}
	.detailInformation:before, .detailInformation:after,
.detailInformation > div:before,
.detailInformation > div:after {
		width: 74px;
		height: 1px;
	}
	.detailInformation:after,
.detailInformation > div:after {
		height: 74px;
		width: 1px;
	}
}

.timelineTable {
	background-image: url(../img/lower/timeline-bg.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 20px 4.8%;
	margin-top: 30px;
}
.timelineTable .info {
	padding-top: 1em;
}
@media (min-width: 769px) {
	.timelineTable {
		padding: 40px 0;
		margin-top: 50px;
	}
	.timelineTable .info {
		text-align: center;
	}
}

.circleTitleWrap {
	position: relative;
	padding-left: 25px;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.circleTitleWrap:after {
	content: "";
	height: 1px;
	background-color: #C59535;
	flex-grow: 1;
}
.circleTitleWrap:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 15px;
	height: 15px;
	content: "";
	background: #C59535;
	border-radius: 50px;
	margin: auto;
}
.circleTitleWrap .circleTitle {
	font-size: 15px;
	line-height: 1.4;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	text-align: left;
	padding: 0 20px 0 0;
}
.circleTitleWrap.type02 .circleTitle {
	font-size: 16px;
}
@media (min-width: 769px) {
	.circleTitleWrap {
		margin-bottom: 30px;
	}
	.circleTitleWrap .circleTitle {
		font-size: 18px;
	}
	.circleTitleWrap.type02 .circleTitle {
		font-size: 22px;
	}
}

.figureBox {
	margin-top: 20px;
}

.resultContent {
	text-align: center;
}
.resultContent > div {
	text-align: left;
}
.resultContent ul {
	padding: 15px 0;
}
.resultContent li {
	list-style: none;
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	line-height: 1.4;
}
.resultContent li + li {
	padding-top: 10px;
}
.resultContent .result {
	display: inline-block;
	text-align: center;
	padding: 10px;
	margin-top: 20px;
}
.resultContent dt, .resultContent dd {
	line-height: 1.6;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
@media (min-width: 768px) {
	.resultContent {
		display: flex;
		align-items: flex-start;
	}
	.resultContent ul {
		padding: 20px 0;
	}
	.resultContent .result {
		width: 314px;
		padding: 14px;
		margin: 0 0 0 32px;
	}
}

.meritContent > div {
	position: relative;
	text-align: center;
}
.meritContent > div img {
	width: 80%;
	margin: auto;
}
.meritContent > div + div {
	margin-top: 20px;
}
@media (min-width: 768px) {
	.meritContent {
		display: flex;
		justify-content: space-between;
	}
	.meritContent > div {
		width: 31.6%;
	}
	.meritContent > div img {
		width: auto;
	}
	.meritContent > div + div {
		margin-top: 0;
	}
}

/*# sourceMappingURL=style02.css.map */