@charset "utf-8";
/* CSS Document */
/*====================================
Reset
====================================*/
html{
	width: 100%;
	font-size: 2.66666vw; /* 画面幅375pxの時1rem=10px */
	font-weight: 400;
}
body{
	min-width: 320px;
	line-height: 1;
	position: relative;
	overflow-x: hidden;
	overflow-wrap: break-word;
	word-wrap: break-word;
	font-family: "Zen Kaku Gothic New","メイリオ","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", serif;
	color: #000;
	background: #fff;
}

@media only screen and (min-width: 600px) {
	html{
		font-size: 0.76923vw; /* 画面幅1300pxの時1rem=10px */
	}
}
@media only screen and (min-width: 1300px) {
	html{
		font-size: 10px;
	}
}

img{
	width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a{
	text-decoration: none;
	color:inherit;
}
svg{
	width: 100%;
	height: 100%;
}
a,
input, textarea, button, label, select,
.js--btn-hamburger,
.js--btn-ac, .js--btn-tab,
.js--btn-popup{
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	outline: 0;
}
::selection {
	background: rgba(128, 185, 168, .2);
}

/*====================================
Common
====================================*/
.font--mincho{
	font-family: "Shippori Mincho B1", serif;
	font-weight: 500;
}
.anchor{
	display: block;
	width: 0;
	height: 0;
	padding-top: 5rem;
	margin-top: -5rem;
}
.width--cmn{
	margin-left: auto;
	margin-right: auto;
	width: 33.5rem;
}

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

@media print,screen and (min-width: 600px) {
	.disp--sp{
		display: none !important;
	}
	.anchor{
		padding-top: 6rem;
		margin-top: -6rem;
	}
	.width--cmn{
		width: 110rem;
	}
}

/* アイコン
--------------------------------------*/
.icon--svg{
	display: block;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-position: center;
	mask-size: contain;
	-webkit-mask-size: contain;
	background: #000;
	transition: background .3s ease;
}
.icon--mail{
	mask-image: url(../img/common/icon-mail.svg);
	-webkit-mask-image: url(../img/common/icon-mail.svg);
}
.icon--new-tab{
	mask-image: url(../img/common/icon-new-tab.svg);
	-webkit-mask-image: url(../img/common/icon-new-tab.svg);
}

/* タイトル
--------------------------------------*/
.sec-pagettl{
	padding-top: 9.5rem;
}
.sec-pagettl .container-pagettl{
	padding: 8rem 0;
	display: flex;
	justify-content: center;
}
.sec-pagettl .wrap-pagettl{
	display: flex;
	align-items: center;
}
.sec-pagettl .wrap-pagettl .pagettl{
	font-size: 2.6rem;
	padding: 0 2rem;
}
.sec-pagettl .wrap-pagettl .kakko{
	width: 0.4rem;
}

@media print,screen and (min-width: 600px) {
	.sec-pagettl{
		padding-top: 13.5rem;
	}
	.sec-pagettl .container-img{
		padding-bottom: 4rem;
	}
	.sec-pagettl .container-img .bg{
		width: 100%;
		height: 30rem;
		background: url(../img/company/pagettl-img-pc.jpg) no-repeat center center;
		background-size: cover;
	}
	.sec-pagettl .container-pagettl{
		padding-top: 6rem;
		padding-bottom: 10rem;
	}
	.sec-pagettl .wrap-pagettl .pagettl{
		font-size: 3rem;
		padding: 0 3rem;
	}
	.sec-pagettl .wrap-pagettl .kakko{
		width: 0.5rem;
	}
}

/* パンくず
--------------------------------------*/
.pnkz{
	font-size: 1.3rem;
	padding-bottom: 3rem;
	display: flex;
}
.pnkz span:nth-child(5),
.pnkz span:nth-child(7) {
	max-width: 40%;
}
.pnkz .txt--line-clamp{
	-webkit-line-clamp: 1;
	max-height: 1em;
}

@media only screen and (max-width: 599px) {
	.pnkz{
		width: calc(100% - 2rem);
	}
}

/* 色
--------------------------------------*/
.c--white{
	color: #fff !important;
}
.c--black{
	color: #000 !important;
}
.c--gray{
	color: #727171 !important;
}
.c--light-gray{
	color: #BCBCBC !important;
}

.bg--white{
	background-color: #fff !important;
}
.bg--black{
	background-color: #000 !important;
}
.bg--gray{
	background-color: #727171 !important;
}
.bg--light-gray{
	background-color: #F5F5F5 !important;
}
.bg--light-gray2{
	background-color: #ECECEC !important;
}
.bg--green{
	background-color: #80B9A8 !important;
}

/* ホバー
--------------------------------------*/
@media print,screen and (min-width: 600px) {
	.hover--c-white,
	.hover--c-gray,
	.hover--c-green{
		transition: color .3s ease;
	}
	a.hover--c-white:hover,
	a:hover .hover--c-white{
		color: #fff !important;
	}
	a.hover--c-gray:hover,
	a:hover .hover--c-gray{
		color: #727171 !important;
	}
	a.hover--c-green:hover,
	a:hover .hover--c-green,
	.has--child:hover .hover--c-green{
		color: #80B9A8 !important;
	}

	.hover--bg-white,
	.hover--bg-gray,
	.hover--bg-green{
		transition: background .3s ease, color .3s ease;
	}
	a.hover--bg-white:hover,
	a:hover .hover--bg-white{
		background-color: #fff !important;
	}
	a.hover--bg-gray:hover,
	a:hover .hover--bg-gray{
		background-color: #727171 !important;
	}
	a.hover--bg-green:hover,
	a:hover .hover--bg-green{
		background-color: #80B9A8 !important;
	}

	.hover--underline{
		background-position: right bottom;
		background-size: 0 100%;
		background-image: linear-gradient(to bottom, transparent calc(100% - 1px), currentColor 1px);
		background-repeat: no-repeat;
		transition: color .3s ease, background-size 0.6s cubic-bezier(0.19, 1, 0.22, 1);
	}
	a.hover--underline:hover,
	a:hover .hover--underline,
	.has--dd:hover > .hover--underline,
	.js--btn-popup.hover--underline:hover,
	.js--btn-popup:hover .hover--underline{
		background-position: left bottom;
		background-size: 100% 100%;
	}
	.hover--c-green .hover--underline{
		transition: background-size 0.6s cubic-bezier(0.19, 1, 0.22, 1);
	}

	.hover--opacity,
	.hover--img-opacity > img{
		transition: opacity .3s ease;
	}
	a.hover--opacity:hover,
	a.hover--img-opacity:hover > img,
	a:hover .hover--img-opacity > img{
		opacity: 0.5;
	}
	.hover--img-zoom{
		position: relative;
	}
	.hover--img-zoom > img{
		transition: transform .3s ease-in-out;
	}
	a.hover--img-zoom:hover > img,
	a:hover .hover--img-zoom > img{
		transform: scale(1.1);
	}
}

/* 画像
--------------------------------------*/
.img--fit img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* IE */
.browser--ie .img--fit{
	position: relative;
	overflow: hidden;
}
.browser--ie .img--fit img{
	width: auto;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.img--posted{
	display: block;
	width: 100%;
	position: relative;
	height: 0;
	overflow: hidden;
	padding-bottom: 75.52%;
}
.img--posted > img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.img--dummy{
	background-color: #fff;
	border: 1px solid #ECECEC;
}
.img--dummy .logo{
	position: absolute;
	width: 9.8rem;
	height: 5.9rem;
	left: calc((100% - 9.8rem) / 2);
	top: calc((100% - 5.9rem) / 2);
	opacity: 0.1;
}

/* テキスト
--------------------------------------*/
div.txt--i,
p.txt--i,
ul.txt--i > li,
li.txt--i{
	padding-left: 1em;
	text-indent: -1em;
}
.txt--u{
	text-decoration: underline;
}
.txt--center{
	text-align: center;
}

@media print,screen and (min-width: 600px) {
	.txt--u:hover{
		text-decoration: none;
	}
}

.txt--cmn{
	font-size: 1.5rem;
	line-height: 2;
}
.txt--cmn-p-margin p:not(:first-child){
	margin-top: 2em;
}
.txt--cmn2{
	font-size: 1.3rem;
	line-height: 2;
}

.txt--line-clamp{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-height: calc(2em * 2);
	overflow: hidden;
}
.txt--line-clamp a{
	transition: color .3s ease;
}
.txt--line-clamp .hover--underline{
	transition: background-size 1.5s cubic-bezier(0.19, 1, 0.22, 1), color .3s ease;
}


/* effect
--------------------------------------*/
.effect--fadein-up.is--show,
.is--show .effect--fadein-up{
	opacity: 1 !important;
	transform: translate(0) scale(1) !important;
	filter: blur(0) !important;
	transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1), transform 1s cubic-bezier(0.33, 1, 0.68, 1), filter .7s cubic-bezier(0.33, 1, 0.68, 1);
}

@media only screen and (max-width: 599px) {
	.effect--fadein-up:not(.effect--pc-only){
		opacity: 0;
		transform: translateY(1.5rem) scale(1.0005);
		filter: blur(0.5rem);
	}
}

@media print,screen and (min-width: 600px) {
	.effect--fadein-up:not(.effect--sp-only){
		opacity: 0;
		transform: translateY(1.5rem) scale(1.0005);
		filter: blur(0.5rem);
	}
}


/* iframe処理
--------------------------------------*/
.gmap--wrap{
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-top: 119.4%;
}
.gmap--wrap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.movie--wrap{
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.movie--wrap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*====================================
pagenavi
====================================*/
.wp-pagenavi{
	display: flex;
	justify-content: center;
	margin-top: 8rem;
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .first,
.wp-pagenavi .last{
	box-sizing: border-box;
	height: 3.4rem;
	position: relative;
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend{
	box-sizing: border-box;
	font-size: 1.5rem;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.4rem;
	border: 1px solid #BCBCBC;
	color: #bcbcbc;
}
.wp-pagenavi .current{
	background-color: #727171;
	border-color: #727171;
	color: #fff;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
	width: 1.4rem;
}
.wp-pagenavi .first,
.wp-pagenavi .last{
	width: 2.3rem;
}
.wp-pagenavi .first,
.wp-pagenavi .previouspostslink{
	margin-right: 1rem;
}
.wp-pagenavi .last,
.wp-pagenavi .nextpostslink{
	margin-left: 1rem;
}
.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .nextpostslink:before,
.wp-pagenavi .first:before,
.wp-pagenavi .last:before,
.wp-pagenavi .first:after,
.wp-pagenavi .last:after{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	box-sizing: border-box;
	width: 1.9rem;
	height: 1.9rem;
	border-top: solid 1px #BCBCBC;
	top: 50%;
}
.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .first:before,
.wp-pagenavi .first:after{
	border-left: solid 1px #BCBCBC;
}
.wp-pagenavi .nextpostslink:before,
.wp-pagenavi .last:before,
.wp-pagenavi .last:after{
	border-right: solid 1px #BCBCBC;
}
.wp-pagenavi .previouspostslink:before{
	left: 50%;
	transform: translate(-20%,-50%) rotate(-45deg);
}
.wp-pagenavi .first:before{
	left: 0.5rem;
	transform: translateY(-50%) rotate(-45deg);
}
.wp-pagenavi .first:after{
	right: -0.8rem;
	transform: translateY(-50%) rotate(-45deg);
}
.wp-pagenavi .nextpostslink:before{
	right: 50%;
	transform: translate(20%,-50%) rotate(45deg);
}
.wp-pagenavi .last:before{
	left: -0.8rem;
	transform: translateY(-50%) rotate(45deg);
}
.wp-pagenavi .last:after{
	right: 0.5rem;
	transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 600px) {
	.wp-pagenavi{
		margin-top: 10rem;
	}
	.wp-pagenavi .page,
	.wp-pagenavi .current,
	.wp-pagenavi .extend,
	.wp-pagenavi .previouspostslink,
	.wp-pagenavi .nextpostslink,
	.wp-pagenavi .first,
	.wp-pagenavi .last{
		width: 4rem;
	}
	.wp-pagenavi .page,
	.wp-pagenavi .current,
	.wp-pagenavi .extend{
		margin-left: 1rem;
		margin-right: 1rem;
		height: 4rem;
	}
	.wp-pagenavi .page{
		transition: background .3s ease, color .3s ease, border .3s ease;
	}
	.wp-pagenavi a.page:hover{
		background-color: #727171;
		border-color: #727171;
		color: #fff;
	}
	.wp-pagenavi .first{
		margin-right: 2rem;
	}
	.wp-pagenavi .previouspostslink{
		margin-right: 4rem;
	}
	.wp-pagenavi .last{
		margin-left: 2rem;
	}
	.wp-pagenavi .nextpostslink{
		margin-left: 4rem;
	}
	.wp-pagenavi .previouspostslink:before,
	.wp-pagenavi .nextpostslink:before,
	.wp-pagenavi .first:before,
	.wp-pagenavi .last:before,
	.wp-pagenavi .first:after,
	.wp-pagenavi .last:after{
		transition: border .3s ease;
	}
	.wp-pagenavi .previouspostslink:hover:before,
	.wp-pagenavi .nextpostslink:hover:before,
	.wp-pagenavi .first:hover:before,
	.wp-pagenavi .last:hover:before,
	.wp-pagenavi .first:hover:after,
	.wp-pagenavi .last:hover:after{
		border-color: #727171;
	}
}


/*====================================
parts
===================================*/
.ttl--cmn1{
	font-size: 2.2rem;
	text-align: center;
	margin-bottom: 4rem;
}
.ttl--cmn2{
	background-color: #F5F5F5;
	padding: 1.6rem 2.2rem;
	font-size: 1.8rem;
	line-height: 1.5;
	margin-bottom: 2rem;
}
.ttl--cmn3{
	font-size: 1.8rem;
	padding-left: 1rem;
	border-left: 0.3rem solid #727171;
	margin-bottom: 2rem;
}

@media print,screen and (min-width: 600px) {
	.ttl--cmn1{
		font-size: 2.6rem;
		margin-bottom: 5rem;
	}
	.ttl--cmn2{
		margin-bottom: 3rem;
	}
	.ttl--cmn3{
		font-size: 2.2rem;
		margin-bottom: 3rem;
	}
}

.btn--cmn1{
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 28rem;
	min-height: 5rem;
	padding: 1rem;
	margin: 0 auto;
}

@media print,screen and (min-width: 600px) {
	.btn--cmn1{
		transition: background .3s ease, border .3s ease, color .3s ease;
	}
}

.link--arrow{
	position: relative;
	display: inline-block;
	font-size: 1.3rem;
	padding-left: 1.3rem;
}
.link--arrow:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	box-sizing: border-box;
	width: 0.7rem;
	height: 0.7rem;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg);
	left: -0.2rem;
	top: calc((1em - 0.7rem) / 2);
	transition: border .3s ease;
}
.link--arrow.c--white:before{
	border-color: #fff;
}

@media print,screen and (min-width: 600px) {
	a.link--arrow.hover--c-gray:hover:before,
	a:hover .link--arrow.hover--c-gray:before{
		border-color: #727171;
	}
	a.link--arrow.hover--c-green:hover:before,
	a:hover .link--arrow.hover--c-green:before{
		border-color: #80B9A8;
	}
	a.link--arrow.hover--c-white:hover:before,
	a:hover .link--arrow.hover--c-white:before{
		border-color: #fff;
	}
}

/*====================================
form
====================================*/
/* common
--------------------------------------*/
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select,
button{
	appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
	background: none;
	border: none;
	font-family : inherit;
	color: inherit;
	box-sizing: border-box;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea{
	box-sizing: border-box;
	width: 100%;
	background-color: #fff;
	color: #000;
	transition: background .3s ease;
}

/* form--tbl
--------------------------------------*/
.form--tbl input[type="text"],
.form--tbl input[type="tel"],
.form--tbl input[type="email"],
.form--tbl input[type="number"],
.form--tbl textarea{
	border: 1px solid #DEDEDE;
}
.form--tbl input[type="text"],
.form--tbl input[type="tel"],
.form--tbl input[type="email"],
.form--tbl input[type="number"]{
	height: 6rem;
	padding: 0 1rem;
}
.form--tbl input:placeholder-shown,
.form--tbl textarea:placeholder-shown {
	color: #ECECEC;
}
.form--tbl input::-webkit-input-placeholder,
.form--tbl textarea::-webkit-input-placeholder {
	color: #ECECEC;
}
.form--tbl textarea{
	padding: 1rem;
}

/* checkbox radio */
.form--tbl label{
	cursor: pointer;
}
.form--tbl span.wpcf7-list-item{
	margin: 0;
}
.form--tbl .wpcf7-radio,
.form--tbl .wpcf7-checkbox{
	display: block;
	margin-top: -2rem;
	width: calc(100% + 1rem);
}
.form--tbl .wpcf7-radio .wpcf7-list-item,
.form--tbl .wpcf7-checkbox .wpcf7-list-item{
	margin-top: 2rem;
	margin-right: 2rem;
}
.form--tbl .wpcf7-radio input[type="radio"],
.form--tbl .wpcf7-checkbox input[type="checkbox"],
.form--tbl .wpcf7-acceptance input[type="checkbox"]{
	display: none;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label,
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label{
	display: inline-block;
	position: relative;
	padding-left: 3rem;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label:before,
.form--tbl .wpcf7-radio .wpcf7-list-item-label:after,
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label:before,
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label:after,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label:before,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label:after{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	box-sizing: border-box;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label:before,
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label:before,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label:before{
	width: 2rem;
	height: 2rem;
	left: 0;
	top: 0.8rem;
	top: calc((1.5rem * 2 - 2rem) / 2);
	background-color: #fff;
	border: 1px solid #ECECEC;
	transition: background .2s ease, border .2s ease;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label:before{
	border-radius: 100%;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label:after,
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label:after,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label:after{
	opacity: 0;
	transition: opacity .2s ease;
}
.form--tbl .wpcf7-radio .wpcf7-list-item-label:after{
	width: 1rem;
	height: 1rem;
	background-color: #1D2D47;
	left: 0.5rem;
	top: 1.3rem;
	border-radius: 100%;
}
.form--tbl .wpcf7-checkbox .wpcf7-list-item-label:after,
.form--tbl .wpcf7-acceptance .wpcf7-list-item-label:after{
	left: 0.6rem;
	width: 0.9rem;
	height: 1.2rem;
	top: calc((1.5rem * 2 - 2rem) / 2 + 0.1rem);
	transform: rotate(40deg);
	border-bottom: 0.3rem solid #fff;
	border-right: 0.3rem solid #fff;
}
.form--tbl .wpcf7-checkbox input:checked + .wpcf7-list-item-label:before,
.form--tbl .wpcf7-acceptance input:checked + .wpcf7-list-item-label:before{
	background-color: #1D2D47;
	border-color: #1D2D47;
}
.form--tbl .wpcf7-radio input:checked + .wpcf7-list-item-label:after,
.form--tbl .wpcf7-checkbox input:checked + .wpcf7-list-item-label:after,
.form--tbl .wpcf7-acceptance input:checked + .wpcf7-list-item-label:after{
	opacity: 1;
}

@media print,screen and (min-width: 600px) {
	.form--tbl .wpcf7-radio,
	.form--tbl .wpcf7-checkbox{
		margin-top: -1rem;
	}
	.form--tbl .wpcf7-radio .wpcf7-list-item,
	.form--tbl .wpcf7-checkbox .wpcf7-list-item{
		margin-top: 1rem;
	}
}

/* ボタン */
.btn--form{
	position: relative;
	margin: 8rem auto 0 auto;
	pointer-events: none;
	height: 5rem;
	padding: 0;
}
.btn--form > p{
	height: 100%;
	width: 100%;
}
.btn--form input{
	outline: none;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance: none;
	background: none;
	border: none;
	padding: 0;
	display: inline-block;
	position: relative;
	text-align: center;
	cursor: pointer;
	line-height: 1;
	z-index: 3;
	box-sizing: border-box;
	width: 100%;
	height: 5rem;
	font-size: 1.3rem;
	pointer-events: auto;
	transition: background .3s ease, color .3s ease, border .3s ease, opacity .3s ease;
}
.btn--form input:not(:hover){
	color: #fff;
}
.btn--form input:disabled{
	opacity: .7;
	pointer-events: none;
}

@media print,screen and (min-width: 600px) {
	.btn--form{
		margin: 12rem auto 0 auto;
		width: 33.5rem;
	}
	.btn--form input:hover{
		color: #fff;
	}
}

.form--tbl{
	box-sizing: border-box;
	width: 100%;
}
.form--tbl p:not(:last-child){
	margin-bottom: 0;
}
.form--tbl th,
.form--tbl td{
	box-sizing: border-box;
	display: block;
}
.form--tbl th{
	padding-bottom: 1rem;
}
.form--tbl tr:not(:last-child) td{
	padding-bottom: 2rem;
}

.form--tbl .req{
	padding-left: 0.5rem;
}
.form--tbl .td-block:not(:last-child){
	margin-bottom: 1.5rem;
}
.form--tbl .td-label{
	line-height: 1.2;
	margin-bottom: 1rem;
}
.form--tbl .td-detail-txt:not(:first-child){
	margin-top: 0.5rem;
}
.form--tbl .unit-wrap{
	display: flex;
	align-items: center;
}
.form--tbl .unit-wrap .unit:not(:last-child){
	margin-right: 1rem;
}

@media print,screen and (min-width: 600px) {
	.form--tbl th{
		padding-bottom: 1.5rem;
	}
	.form--tbl tr:not(:last-child) td{
		padding-bottom: 3rem;
	}
}

/* response-output */
.wpcf7 form .wpcf7-response-output{
	padding: 2.4rem 2rem;
	border: none !important;
}
.wpcf7 form:not(.sent) .wpcf7-response-output{
	background-color: #980404;
	color: #fff;
}
.wpcf7 .recaptha-caption{
	margin-top: 10rem;
	font-size: 1.3rem;
	line-height: 1.69;
}
.wpcf7 .recaptha-caption a{
	text-decoration: underline;
}
.grecaptcha-badge { visibility: hidden; }
.wpcf7 form.sent .block-lead,
.wpcf7 form.sent .form--tbl,
.wpcf7 form.sent .btn--form,
.wpcf7 form.sent .recaptha-caption,
.wpcf7 form.sent .wpcf7-response-output{
	display: none;
}
.wpcf7 form .sent-thankyou-message{
	display: none;
}
.wpcf7 form.sent .sent-thankyou-message{
	display: block;
	padding: 3rem;
}
.wpcf7 form.sent .sent-thankyou-message .sec-ttl{
	font-size: 1.5em;
	margin-bottom: 3rem;
}

@media print,screen and (min-width: 600px) {
	.wpcf7 form.sent .sent-thankyou-message{
		padding: 6rem;
	}
}

/* unique */

/*====================================
header
====================================*/
/* hamburger-btn
--------------------------------------*/
.hamburger-btn{
	box-sizing: border-box;
	cursor: pointer;
	position: fixed;
	z-index: 1001;
	width: 4rem;
	height: 4rem;
	top: 1rem;
	right: 1rem;
}
.hamburger-btn-inner{
	display: block;
	width: 100%;
	height: 100%;
	transition: transform 0.35s ease;
}
.hamburger-btn-inner-inner{
	position: absolute;
	transition: opacity .3s ease;
}
.hamburger-btn-inner-inner.open{
	width: 2.2rem;
	height: 1.9rem;
	top: 1.1rem;
	right: 0.9rem;
	mask-image: url(../img/common/hamburger-btn.svg);
	-webkit-mask-image: url(../img/common/hamburger-btn.svg);
}
.hamburger-btn-inner-inner.close{
	width: 1.8rem;
	height: 1.8rem;
	top: 1.1rem;
	right: 1.1rem;
	opacity: 0;
}
.hamburger-btn-inner-inner.close:before,
.hamburger-btn-inner-inner.close:after{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	width: 2.6rem;
	height: 1px;
	background-color: #000;
	left: calc((100% - 2.6rem) / 2);
	top: 50%;
}
.hamburger-btn-inner-inner.close:before{
	transform: rotate(-45deg);
}
.hamburger-btn-inner-inner.close:after{
	transform: rotate(45deg);
}

.hamburger-btn.is--open .hamburger-btn-inner{
	transform: rotate(360deg);
}
.hamburger-btn.is--open .hamburger-btn-inner-inner.open{
	opacity: 0;
}
.hamburger-btn.is--open .hamburger-btn-inner-inner.close{
	opacity: 1;
}

/* hamburger menu
--------------------------------------*/
#hamburger-menu{
	z-index:1000;
	position: fixed;
	box-sizing: border-box;
	width: 26rem;
	height: 100vh;
	top: 0;
	right: -26rem;
	transition: transform 0.35s ease;
}
#hamburger-menu.is--open{
	transform: translateX(-26rem);
}

#hamburger-menu .menu-inner{
	box-sizing: border-box;
	overflow-y: scroll;
	position: relative;
	width: 100%;
	height: 100%;
}
#hamburger-menu .hamburger-nav-container{
	padding: 7rem 3rem;
}
#hamburger-menu .hamburger-nav-container .nav-item:not(:last-child){
	border-bottom: 1px solid #DEDEDE;
}
#hamburger-menu .hamburger-nav-container .nav-item-txt,
#hamburger-menu .hamburger-nav-container .nav-subitem-txt{
	box-sizing: border-box;
	height: 7rem;
	display: flex;
	align-items: center;
	padding: 0 1rem 0 2rem;
}
#hamburger-menu .hamburger-nav-container .nav-item-txt span{
	position: relative;
	padding-left: 1.1rem;
}
#hamburger-menu .hamburger-nav-container .nav-item-txt span:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	box-sizing: border-box;
	width: 0.7rem;
	height: 0.7rem;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg);
	left: -0.2rem;
	top: calc((2em - 0.7rem) / 2);
}
#hamburger-menu .hamburger-nav-container .has--child .nav-item-txt span:before{
	transform: rotate(135deg) translateX(-0.2rem);
	transition: transform .3s ease;
}
#hamburger-menu .hamburger-nav-container .has--child .nav-item-txt.is--open span:before{
	transform: rotate(-45deg) translateX(-0.2rem) translateY(0.2rem);
}
#hamburger-menu .hamburger-nav-container .nav-subitem{
	background-image: linear-gradient(to right, #DEDEDE, #DEDEDE 0.5rem, transparent 0.5rem, transparent 1rem);
	background-size: 1rem 1px;
	background-position: left top;
	background-repeat: repeat-x;
}
#hamburger-menu .hamburger-nav-container .nav-subitem-txt{
	padding-left: 3.7rem;
}

/* hamburger-layer */
#hamburger-layer{
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	z-index:999;
	pointer-events: none;
	opacity: 0;
	transition: opacity .3s ease;
	background-color: rgba(0, 0, 0, .55);
}
#hamburger-layer.is--open{
	pointer-events: auto;
	opacity: 1;
}

/* header
--------------------------------------*/
header{
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
}
.header-logo-container{
	width: 9.2rem;
}

@media only screen and (max-width: 599px) {
	header{
		padding-top: 2rem;
	}
	.header-logo-container{
		margin: 0 auto;
	}
}

@media print,screen and (min-width: 600px) {
	header{
		height: 13.5rem;
	}
	header .outer-gnav{
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.gnav{
		display: flex;
	}
	.gnav .nav-item{
		position: relative;
	}
	.gnav .nav-item:not(:last-child){
		margin-right: 4rem;
	}
	.gnav .nav-item-txt{
		line-height: 1.2;
		height: 100%;
		display: flex;
		align-items: center;
		position: relative;
	}
	.gnav .nav-item.has--child .nav-item-txt{
		cursor: pointer;
	}
	.gnav .nav-item.has--child .nav-item-txt:before{
		content: '';
		display: block;
		position: absolute;
		pointer-events: none;
		width: 1rem;
		height: 1px;
		background-color: #000;
		border-radius: 10px;
		bottom: -1rem;
		left: calc((100% - 1rem) / 2);
		transition: background .3s ease;
	}
	.gnav .nav-item.has--child:hover .nav-item-txt:before{
		background-color: #80B9A8;
	}
	.gnav .nav-sublist-container{
		opacity: 0;
		pointer-events: none;
		z-index: 3;
		padding-top: 2rem;
		position: absolute;
		top: 1.7rem;
		transition: opacity .3s ease;
		width: 16.9rem;
		left: calc((100% - 16.9rem) / 2);
	}
	.gnav .nav-item.has--child:hover .nav-sublist-container{
		opacity: 1;
		pointer-events: auto;
	}
	.gnav .nav-sublist-block{
		padding: 2.7rem 2.5rem 2.7rem 3rem;
	}
	.gnav .nav-subitem:not(:last-child){
		margin-bottom: 1.5rem;
	}

	header.is--scroll{
		position: fixed;
		height: 6rem;
		background-color: #fff;
		animation: header-scroll-anim .3s ease-out forwards;
	}
	header.is--scroll .header-logo-container{
		width: 6rem;
		margin: 0;
	}
}

@keyframes header-scroll-anim {
	0% {
		transform: translateY(-7rem);
	}
	100% {
		transform: translateY(0);
	}
}

/*===============================
footer
===============================*/
footer{
	padding-bottom: 6rem;
}
.footer-container-bnr{
	width: calc(100% - 2rem);
}
.footer-container-bnr .bnr{
	display: block;
	position: relative;
}
.footer-container-bnr .bnr-inner{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-container-bnr .bnr .txt{
	font-size: 2.6rem;
	line-height: 1.46;
}
.footer-container-bnr .bnr .txt span{
	font-size: 2.2rem;
}

.footer-container-logo{
	padding-top: 8rem;
}
.footer-container-logo .block-logo .logo{
	display: block;
	width: 12rem;
}
.footer-container-logo .block-logo .sns-item{
	display: block;
	width: 5.4rem;
}

.footer-container-other{
	padding-top: 6rem;
	width: 31.4rem;
}
.footer-container-other .bnr{
	display: block;
}
.footer-container-other .bnr .img{
	box-sizing: border-box;
	width: 100%;
	height: 8rem;
	border: 1px solid #ECECEC;
}
.footer-container-other .bnr .img img{
	height: 100%;
	width: auto;
}
.footer-container-other .bnr .txt{
	font-size: 1.5rem;
	margin-top: 1rem;
}

.footer-container-copyright{
	padding-top: 6rem;
}

@media only screen and (max-width: 599px) {
	.footer-container-bnr .bnr:not(:last-child){
		margin-bottom: 1rem;
	}

	.footer-container-logo .block-logo .logo{
		margin: 0 auto;
	}
	.footer-container-logo .block-logo .box-sns{
		margin-top: 3rem;
	}
	.footer-container-logo .block-logo .sns-item{
		margin: 0 auto;
	}

	.footer-container-other .bnr:not(:last-child){
		margin-bottom: 2rem;
	}

	.footer-container-copyright .copyright{
		text-align: center;
	}
}

@media print,screen and (min-width: 600px) {
	footer{
		padding-bottom: 7rem;
	}
	.footer-container-bnr{
		display: flex;
		justify-content: space-between;
	}
	.footer-container-bnr .bnr{
		width: calc((100% - 1rem) / 2);
		overflow: hidden;
	}
	.footer-container-bnr .bnr .img{
		width: 100%;
		height: 30rem;
		background: url(../img/common/footer-bnr-contact-pc.jpg) no-repeat center center;
		background-size: auto 100%;
		transition: transform .3s ease-in-out;
	}
	.footer-container-bnr .bnr-online-shop .img{
		background-image: url(../img/common/footer-bnr-online-shop-pc.jpg);
	}
	.footer-container-bnr .bnr:hover .img{
		transform: scale(1.1);
	}
	.footer-container-bnr .bnr .txt{
		font-size: 3rem;
		line-height: 1.26;
	}

	.footer-container-logo,
	.footer-container-other,
	.footer-container-copyright{
		width: 100rem;
	}
	.footer-container-logo{
		padding-top: 13rem;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.footer-container-logo .block-logo{
		display: flex;
		align-items: flex-end;
	}
	.footer-container-logo .block-logo .box-sns{
		margin-left: 4rem;
	}
	.footer-container-logo .block-logo .sns-item{
		width: 2.9rem;
	}
	.footer-container-logo .block-nav{
		display: flex;
	}
	.footer-container-logo .nav-list:not(:last-child){
		margin-right: 5rem;
	}
	.footer-container-logo .nav-item:not(:last-child){
		margin-bottom: 2.5rem;
	}
	.footer-container-logo .nav-item a.nav-item-txt:hover:before{
		border-color: #80B9A8;
	}
	.footer-container-logo .nav-sublist{
		line-height: 1;
	}
	.footer-container-logo .nav-subitem:not(:last-child){
		margin-bottom: 2.5rem;
	}

	.footer-container-other .bnr-list{
		display: flex;
	}
	.footer-container-other .bnr{
		width: calc((100% - 2.9rem * 2) / 3);
	}
	.footer-container-other .bnr:not(:nth-child(3n)){
		margin-right: 2.9rem;
	}
	.footer-container-other .bnr .img{
		height: 10rem;
		padding: 1rem 0;
	}
	.footer-container-other .bnr .txt{
		font-size: 1.3rem;
	}

	.footer-container-copyright{
		display: flex;
		justify-content: space-between;
	}
}
@media print,screen and (min-width: 2000px) {
	.footer-container-bnr .bnr .img{
		background-size: cover;
	}
}

/*====================================
top
====================================*/
#top .sec-main{
	position: relative;
	padding-top: 9.5rem;
}
#top .sec-main .container-slide{
	position: relative;
	width: 100%;
	overflow: hidden;
}
#top .sec-main .container-slide .swiper-wrapper{
	transition-timing-function: linear;
}
#top .sec-main .container-slide .swiper-slide{
	width: 33rem;
	padding-right: 2rem;
}

@media print,screen and (min-width: 600px) {
	#top .sec-main{
		padding-top: 13.5rem;
	}
	#top .sec-main .container-slide .swiper-slide{
		width: 46rem;
		padding-right: 3rem;
	}
}

/* about
--------------------------------------*/
#top .sec-about{
	padding: 8rem 0;
}
#top .sec-about .sec-ttl{
	font-size: 3rem;
	line-height: 1.73;
}
#top .sec-about .link{
	font-size: 1.5rem;
}

@media only screen and (max-width: 599px) {
	#top .sec-about .sec-ttl{
		margin-bottom: 3rem;
	}
	#top .sec-about .block-link{
		margin-top: 3rem;
		text-align: right;
	}
}

@media print,screen and (min-width: 600px) {
	#top .sec-about{
		padding: 15rem 0;
	}
	#top .sec-about .container-about{
		width: 100rem;
		display: flex;
		position: relative;
	}
	#top .sec-about .container-about .block-ttl{
		padding-right: 8.5rem;
	}
	#top .sec-about .sec-ttl{
		font-size: 4rem;
		line-height: 1.75;
	}
	#top .sec-about .container-about .block-txt{
		flex: 1;
	}
	#top .sec-about .container-about .block-txt p:not(:last-child){
		margin-bottom: 2em;
	}
	#top .sec-about .block-link{
		position: absolute;
		bottom: 0;
		left: 0;
	}
}

/* business
--------------------------------------*/
#top .sec-business .container-txt{
	padding: 5rem 0;
}
#top .sec-business .sec-ttl{
	font-size: 2.6rem;
	margin-bottom: 4rem;
}
#top .sec-business .business-block:not(:last-child){
	padding-bottom: 2rem;
	border-bottom: 1px solid #DEDEDE;
}
#top .sec-business .business-block:not(:first-child){
	padding-top: 2rem;
}
#top .sec-business .business-block .block-ttl{
	margin-bottom: 1.3rem;
}
#top .sec-business .business-block .link{
	font-size: 1.8rem;
}

@media only screen and (max-width: 599px) {
	#top .sec-business .sec-ttl{
		text-align: center;
	}
}

@media print,screen and (min-width: 600px) {
	#top .sec-business{
		display: flex;
	}
	#top .sec-business .container-img,
	#top .sec-business .container-txt{
		box-sizing: border-box;
		width: 50%;
	}
	#top .sec-business .container-img{
		position: relative;
	}
	#top .sec-business .container-img .box-img{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		transition: opacity .5s ease;
	}
	#top .sec-business .container-img .box-img:not(.is--active){
		opacity: 0;
	}
	#top .sec-business .container-img .box-img .img{
		width: 100%;
		height: 100%;
	}
	#top .sec-business .container-txt{
		padding: 7rem 10rem 7rem 7rem;
		display: flex;
		align-items: center;
		min-height: 72.8rem;
	}
	#top .sec-business .container-txt .container-inner{
		width: 100%;
	}
	#top .sec-business .sec-ttl{
		font-size: 3rem;
		margin-bottom: 5rem;
	}
	#top .sec-business .business-block:not(:last-child){
		padding-bottom: 3rem;
	}
	#top .sec-business .business-block:not(:first-child){
		padding-top: 3rem;
	}
}

/* news
--------------------------------------*/
#top .sec-news{
	padding-top: 8rem;
	padding-bottom: 10rem;
}
#top .sec-news .sec-ttl{
	font-size: 2.6rem;
	margin-bottom: 4rem;
}
#top .sec-news .article-card-inner{
	display: block;
}
#top .sec-news .article-card .article-head{
	margin: 1.5rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#top .sec-news .article-card .article-time-txt{
	line-height: 1;
}
#top .sec-news .article-card .article-cat{
	line-height: 1;
	padding: 0.6rem 0.9rem;
}
#top .sec-news .block-btn{
	margin-top: 5rem;
}

@media only screen and (max-width: 599px) {
	#top .sec-news .article-card:not(:last-child){
		margin-bottom: 4rem;
	}
}

@media print,screen and (min-width: 600px) {
	#top .sec-news{
		padding: 13rem 0;
	}
	#top .sec-news .sec-ttl{
		font-size: 3rem;
		margin-bottom: 5rem;
	}
	#top .sec-news .block-article{
		display: flex;
	}
	#top .sec-news .article-card{
		width: calc((100% - 4rem * 2) / 3);
	}
	#top .sec-news .article-card:not(:nth-child(3n)){
		margin-right: 4rem;
	}
	#top .sec-news .block-btn{
		margin-top: 6rem;
	}
}

/*====================================
page404
====================================*/
#page404 .sec-404{
	padding-bottom: 10rem;
}
#page404 .sec-404 .btn{
	margin-top: 4rem;
}

@media print,screen and (min-width: 600px) {
	#page404 .sec-404{
		padding-bottom: 15rem;
	}
	#page404 .sec-404 .box-txt{
		text-align: center;
	}
	#page404 .sec-404 .btn{
		width: 33.5rem;
		margin: 6rem auto 0 auto;
	}
}


/*====================================
privacy-policy
====================================*/
#privacy-policy .sec-policy{
	padding-bottom: 10rem;
}

@media print,screen and (min-width: 600px) {
	#privacy-policy .sec-policy{
		width: 100rem;
		padding-bottom: 15rem;
	}
}


/*====================================
contact
====================================*/
#contact .sec-contact .contact-block{
	box-sizing: border-box;
	border: 1px solid #DEDEDE;
	padding: 4rem 3.5rem;
}
#contact .sec-contact .contact-block .box-ttl{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}
#contact .sec-contact .contact-block .box-ttl .icon{
	margin-right: 1rem;
}
#contact .sec-contact .contact-block .box-ttl .icon img{
	height: 2.3rem;
	width: auto;
}
#contact .sec-contact .contact-block .box-ttl .ttl{
	font-size: 1.8rem;
}
#contact .sec-contact .contact-block .box-num .num{
	font-size: 3rem;
}
#contact .sec-contact .contact-block .box-txt{
	margin-top: 1.8rem;
}
#contact .sec-contact .contact-block.tel .box-num .txt{
	margin-top: 0.8rem;
}

#contact .sec-form{
	padding-top: 6rem;
	padding-bottom: 10rem;
}

@media only screen and (max-width: 599px) {
	#contact .sec-contact .contact-block:not(:last-child){
		margin-bottom: 3rem;
	}
}

@media print,screen and (min-width: 600px) {
	#contact .sec-contact,
	#contact .sec-form{
		width: 90rem;
	}
	#contact .sec-contact{
		display: flex;
		justify-content: space-between;
	}
	#contact .sec-contact .contact-block{
		width: calc((100% - 4rem) / 2);
		display: flex;
		flex-direction: column;
	}
	#contact .sec-contact .contact-block .box-num{
		flex: 1;
	}
	#contact .sec-contact .contact-block .box-num .num a{
		pointer-events: none;
	}

	#contact .sec-form{
		padding-top: 7rem;
		padding-bottom: 15rem;
	}
}

/*====================================
info
====================================*/
/* archive
--------------------------------------*/
#info.page--archive .sec-archive{
	padding-bottom: 10rem;
}
#info.page--archive .sec-archive .container-cat{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 5rem;
}
#info.page--archive .sec-archive .container-cat .cat-item{
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc((100% - 1rem * 2) / 3);
	height: 5rem;
}

#info.page--archive .article-card-inner{
	display: block;
}
#info.page--archive .article-card .article-head{
	margin: 1.5rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#info.page--archive .article-card .article-time-txt{
	line-height: 1;
}
#info.page--archive .article-card .article-cat{
	line-height: 1;
	padding: 0.6rem 0.9rem;
}

@media only screen and (max-width: 599px) {
	#info.page--archive .sec-archive .container-cat .cat-item:not(:nth-child(3n)){
		margin-right: 1rem;
	}
	#info.page--archive .sec-archive .container-cat .cat-item:nth-child(n+4){
		margin-top: 1rem;
	}

	#info.page--archive .article-card:not(:last-child){
		margin-bottom: 4rem;
	}
}

@media print,screen and (min-width: 600px) {
	#info.page--archive .sec-archive{
		padding-bottom: 15rem;
	}
	#info.page--archive .sec-archive .container-cat{
		margin-bottom: 6rem;
	}
	#info.page--archive .sec-archive .container-cat .cat-item{
		width: calc((100% - 1rem * 8) / 9);
		height: 5rem;
	}
	#info.page--archive .sec-archive .container-cat .cat-item:not(:nth-child(9n)){
		margin-right: 1rem;
	}
	#info.page--archive .sec-archive .container-article{
		display: flex;
		flex-wrap: wrap;
	}
	#info.page--archive .article-card{
		width: calc((100% - 4rem * 2) / 3);
	}
	#info.page--archive .article-card:not(:nth-child(3n)){
		margin-right: 4rem;
	}
	#info.page--archive .article-card:nth-child(n+4){
		margin-top: 6rem;
	}
}

/* single
--------------------------------------*/
#info.page--single .single-article{
	padding-top: 17.5rem;
	padding-bottom: 10rem;
}
#info.page--single .single-head{
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
}
#info.page--single .single-time-txt{
	line-height: 1;
}
#info.page--single .single-cat{
	line-height: 1;
	padding: 0.6rem 0.9rem;
	margin-left: 1.5rem;
}
#info.page--single .single-ttl{
	font-size: 2.2rem;
	line-height: 1.72;
}
#info.page--single .single-content{
	padding-top: 5rem;
}
#info.page--single .single-article .block-btn{
	margin-top: 8rem;
}

@media print,screen and (min-width: 600px) {
	#info.page--single .single-article{
		padding-top: 19.5rem;
		padding-bottom: 15rem;
		width: 100rem;
	}
	#info.page--single .single-ttl{
		font-size: 3rem;
	}
	#info.page--single .single-content{
		padding-top: 6rem;
	}
	#info.page--single .single-article .block-btn{
		margin-top: 10rem;
	}
}


/*====================================
company
====================================*/
#company .sec-about{
	padding-bottom: 8rem;
}
#company .sec-about .block-name{
	margin-top: 4.5rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
#company .sec-about .block-name .name{
	width: 12.216rem;
	margin-left: 2rem;
}

@media print,screen and (min-width: 600px) {
	#company .sec-pagettl .container-img .bg{
		background-image: url(../img/company/pagettl-img-pc.jpg);
	}
	#company .sec-about{
		padding-bottom: 13rem;
	}
	#company .sec-about .block-txt{
		text-align: center;
	}
	#company .sec-about .block-name{
		margin-top: 5rem;
		justify-content: center;
	}
}

/* business
--------------------------------------*/
#company .sec-business{
	padding: 6rem 0;
}
#company .sec-business .business-block .box-img{
	position: relative;
}
#company .sec-business .business-block .box-img .link{
	box-sizing: border-box;
	position: absolute;
	bottom: 2rem;
	left: 0;
	padding: 2rem;
	min-width: 20.2rem;
}
#company .sec-business .business-block .box-img .ttl{
	font-size: 1.8rem;
}
#company .sec-business .business-block .box-txt{
	padding-top: 2rem;
}

@media only screen and (max-width: 599px) {
	#company .sec-business .business-block:not(:last-child){
		margin-bottom: 4rem;
	}
}

@media print,screen and (min-width: 600px) {
	#company .sec-business{
		padding: 10rem 0;
	}
	#company .sec-business .container-business{
		width: calc(100% - 1rem * 2);
		max-width: 128rem;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#company .sec-business .business-block{
		width: calc((100% - 1rem) / 2);
	}
	#company .sec-business .business-block:nth-child(n+3){
		margin-top: 6rem;
	}
	#company .sec-business .business-block .box-txt{
		padding-top: 3rem;
	}
	#company .sec-business .business-block .box-txt .box-inner{
		width: calc(100% - 2rem * 2);
	}
}

/* sustainability
--------------------------------------*/
#company .sec-sustainability{
	padding: 8rem 0;
}

@media only screen and (max-width: 599px) {
	#company .sec-sustainability .block-img{
		margin-bottom: 1.5rem;
	}
}

@media print,screen and (min-width: 600px) {
	#company .sec-sustainability{
		padding: 13rem 0;
	}
	#company .sec-sustainability .container-sustainability{
		display: flex;
	}
	#company .sec-sustainability .block-img{
		width: 47.2rem;
	}
	#company .sec-sustainability .block-txt{
		flex: 1;
		padding-left: 3rem;
	}
}

/* outline
--------------------------------------*/
#company .about-tbl th,
#company .about-tbl td{
	box-sizing: border-box;
	padding: 0 2rem;
}

#company .sec-outline{
	padding-top: 6rem;
}
#company .sec-outline .container-map{
	margin-top: 5rem;
}
#company .sec-outline .container-map .map{
	padding-top: 40rem;
}

@media only screen and (max-width: 599px) {
	#company .about-tbl th,
	#company .about-tbl td{
		display: block;
	}
	#company .about-tbl th{
		padding-bottom: 0.3rem;
	}
	#company .about-tbl tr:not(:first-child) th{
		padding-top: 1.3rem;
	}
	#company .about-tbl tr:not(:last-child) td{
		padding-bottom: 1.3rem;
		border-bottom: 1px solid #DEDEDE;
	}

	#company .sec-outline .outline-tbl:not(:first-child) th{
		padding-top: 1.3rem;
	}
	#company .sec-outline .outline-tbl:not(:last-child) td{
		border-bottom: 1px solid #DEDEDE;
		padding-bottom: 1.3rem;
	}
}

@media print,screen and (min-width: 600px) {
	#company .about-tbl th{
		width: 12.5rem;
		padding: 2.5rem 1.5rem 2.5rem 3rem;
	}
	#company .about-tbl td{
		padding: 2.5rem 2rem 2.5rem 0;
	}
	#company .about-tbl tr:not(:last-child) th,
	#company .about-tbl tr:not(:last-child) td{
		border-bottom: 1px solid #DEDEDE;
	}

	#company .sec-outline{
		padding-top: 10rem;
	}
	#company .sec-outline .sec-ttl{
		margin-bottom: 2rem;
	}
	#company .sec-outline .container-outline{
		display: flex;
		justify-content: space-between;
		align-items: baseline;
	}
	#company .sec-outline .container-outline .outline-tbl{
		width: calc((100% - 5rem) / 2);
	}
	#company .sec-outline .container-map{
		margin-top: 3rem;
	}
}

/* history
--------------------------------------*/
#company .sec-history{
	padding-top: 8rem;
}
#company .sec-history .block-ttl{
	font-size: 1.8rem;
	margin-bottom: 2rem;
}

@media only screen and (max-width: 599px) {
	#company .sec-history .block-history:not(:last-child){
		margin-bottom: 5rem;
	}
}

@media print,screen and (min-width: 600px) {
	#company .sec-history{
		padding-top: 13rem;
	}
	#company .sec-history .container-history{
		display: flex;
		justify-content: space-between;
	}
	#company .sec-history .block-history{
		width: calc((100% - 5rem) / 2);
	}
	#company .sec-history .history-tbl th{
		width: 9.4rem;
	}
	#company .sec-history .history-tbl td{
		padding-right: 3rem;
	}
}

/* office
--------------------------------------*/
#company .sec-office{
	padding-top: 8rem;
	padding-bottom: 6rem;
	margin-bottom: 10rem;
}
#company .sec-office .container-office{
	box-sizing: border-box;
	padding: 6rem 2rem 2rem 2rem;
}
#company .sec-office .container-office .block-office .box-img{
	margin-bottom: 4rem;
}
#company .sec-office .container-office .block-map{
	margin-top: 4rem;
}
#company .sec-office .container-office .map{
	padding-top: 40rem;
}

@media only screen and (max-width: 599px) {
	#company .sec-office .container-office .box-img{
		margin-bottom: 4rem;
	}
	#company .sec-office .item-tbl:not(:last-child) tr:last-child td{
		padding-bottom: 1.3rem;
		border-bottom: 1px solid #DEDEDE;
	}
	#company .sec-office .item-tbl:not(:first-child) tr:first-child th {
		padding-top: 1.3rem;
}
}

@media print,screen and (min-width: 600px) {
	#company .sec-office{
		padding: 10rem 0;
		margin-bottom: 15rem;
	}
	#company .sec-office .container-office{
		padding: 7rem 5rem 5rem 5rem;
	}
	#company .sec-office .container-office .block-office .box-txt{
		display: flex;
		justify-content: space-between;
	}
	#company .sec-office .container-office .item-tbl{
		width: calc((100% - 5rem) / 2);
	}
	#company .sec-office .container-office .office-tbl{
		width: 100%;
	}
	#company .sec-office .container-office .office-tbl tr:first-child th,
	#company .sec-office .container-office .office-tbl tr:first-child td{
		padding-top: 0;
	}
	#company .sec-office .container-office .office-tbl tr:last-child th,
	#company .sec-office .container-office .office-tbl tr:last-child td{
		padding-bottom: 0;
	}
	#company .sec-office .container-office .block-map{
		margin-top: 5rem;
	}
}


/*====================================
oem
====================================*/
#oem .sec-strength .strength-block .ttl{
	font-size: 1.8rem;
	line-height: 1.72;
	margin: 2rem 0;
}

#oem .sec-strength .container-works{
	box-sizing: border-box;
	margin-top: 8rem;
	padding: 4rem 2rem;
}

@media only screen and (max-width: 599px) {
	#oem .sec-pagettl .wrap-pagettl .pagettl{
		text-align: center;
		line-height: 1.76;
	}

	#oem .sec-strength .strength-block:not(:last-child){
		margin-bottom: 4rem;
	}
}

@media print,screen and (min-width: 600px) {
	#oem .sec-pagettl .container-img .bg{
		background-image: url(../img/oem/pagettl-img-pc.jpg);
	}

	#oem .sec-strength .container-strength{
		display: flex;
	}
	#oem .sec-strength .strength-block{
		width: calc((100% - 5.2rem * 2) / 3);
	}
	#oem .sec-strength .strength-block:not(:nth-child(3n)){
		margin-right: 5.2rem;
	}
	#oem .sec-strength .strength-block .ttl{
		margin: 3rem 0;
		min-height: calc(1.72em * 2);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#oem .sec-strength .container-works{
		margin-top: 10rem;
		padding: 5rem;
	}
	#oem .sec-strength .container-works .works-list-wrap{
		display: flex;
		justify-content: space-between;
	}
}

/* possible
--------------------------------------*/
#oem .sec-possible{
	padding: 8rem 0;
}
#oem .sec-possible .possible-block .box-img{
	position: relative;
}
#oem .sec-possible .possible-block .box-img .ttl{
	box-sizing: border-box;
	position: absolute;
	bottom: 2rem;
	left: 0;
	font-size: 1.8rem;
	padding: 2rem;
	min-width: 12rem;
}
#oem .sec-possible .possible-block .box-txt{
	padding-top: 2rem;
}
#oem .sec-possible .possible-block .item-link{
	line-height: 1;
	margin-top: 2rem;
	display: flex;
	justify-content: flex-end;
}
#oem .sec-possible .possible-block .el-link:not(:last-child){
	margin-right: 3rem;
}

@media only screen and (max-width: 599px) {
	#oem .sec-possible .possible-block:not(:last-child){
		margin-bottom: 4rem;
	}
}

@media print,screen and (min-width: 600px) {
	#oem .sec-possible{
		padding: 13rem 0;
	}
	#oem .sec-possible .container-possible{
		width: calc(100% - 1rem * 2);
		max-width: 128rem;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#oem .sec-possible .possible-block{
		width: calc((100% - 1rem) / 2);
	}
	#oem .sec-possible .possible-block:nth-child(n+3){
		margin-top: 6rem;
	}
	#oem .sec-possible .possible-block .box-txt{
		padding-top: 3rem;
	}
	#oem .sec-possible .possible-block .box-txt .box-inner{
		width: calc(100% - 6rem * 2);
	}
}

/* flow
--------------------------------------*/
#oem .sec-flow{
	padding: 6rem 0;
	margin-bottom: 16.5rem;
}
#oem .sec-flow .flow-block{
	position: relative;
}
#oem .sec-flow .flow-block:before{
	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
	box-sizing: border-box;
	width: 2.8rem;
	height: 2.8rem;
	border-right: 2px solid #727171;
	border-bottom: 2px solid #727171;
	transform: rotate(45deg);
	right: calc((100% - 2.8rem) / 2);
}
#oem .sec-flow .flow-block:last-child:before{
	display: none;
}
#oem .sec-flow .flow-block .box-img{
	position: relative;
}
#oem .sec-flow .flow-block .box-img .num{
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
}
#oem .sec-flow .flow-block .box-txt{
	padding-top: 2rem;
}
#oem .sec-flow .flow-block .box-txt .item-ttl{
	font-size: 1.8rem;
	margin-bottom: 2rem;
}
#oem .sec-flow .flow-block .box-txt .item-link{
	margin-top: 2rem;
	line-height: 1;
	display: flex;
	justify-content: flex-end;
}

@media only screen and (max-width: 599px) {
	#oem .sec-flow .flow-block:not(:last-child){
		margin-bottom: 8rem;
	}
	#oem .sec-flow .flow-block:before{
		bottom: -4rem;
	}
}

@media print,screen and (min-width: 600px) {
	#oem .sec-flow{
		padding: 10rem 0;
		margin-bottom: 15rem;
	}
	#oem .sec-flow .container-flow{
		display: flex;
		flex-wrap: wrap;
	}
	#oem .sec-flow .flow-block{
		width: calc((100% - 5.2rem * 2) / 3);
	}
	#oem .sec-flow .flow-block:not(:nth-child(3n)){
		margin-right: 5.2rem;
	}
	#oem .sec-flow .flow-block:nth-child(n+4){
		margin-top: 6rem;
	}
	#oem .sec-flow .flow-block:before{
		width: 1.8rem;
		height: 1.8rem;
		right: -3rem;
		top: 11.2rem;
		transform: rotate(-45deg);
	}
	#oem .sec-flow .flow-block:nth-child(3n):before{
		display: none;
	}
}

/*====================================
jingdezen
====================================*/
#jingdezen .sec-about{
	padding-bottom: 8rem;
}
#jingdezen .sec-about .block-img{
	margin-top: 8rem;
}

@media only screen and (max-width: 599px) {
	#jingdezen .sec-about .block-img{
		width: 100%;
	}
}

@media print,screen and (min-width: 600px) {
	#jingdezen .sec-pagettl .container-img .bg{
		background-image: url(../img/jingdezen/pagettl-img-pc.jpg);
	}

	#jingdezen .sec-about{
		padding-bottom: 13rem;
	}
	#jingdezen .sec-about .block-txt{
		text-align: center;
	}
	#jingdezen .sec-about .block-img{
		margin-top: 10rem;
	}
}

/* tech
--------------------------------------*/
#jingdezen .sec-tech{
	padding: 6rem 0;
}
#jingdezen .sec-tech .container-tech:not(:last-child){
	margin-bottom: 8rem;
}
#jingdezen .sec-tech .container-tech .block-ttl{
	margin-bottom: 3rem;
}
#jingdezen .sec-tech .container-tech .container-ttl{
	box-sizing: border-box;
}
#jingdezen .sec-tech .container-tech .main-box .item-img{
	position: relative;
}
#jingdezen .sec-tech .container-tech .main-box .item-img .ttl{
	box-sizing: border-box;
	position: absolute;
	bottom: 2rem;
	left: 0;
	font-size: 1.8rem;
	padding: 2rem;
	min-width: 20rem;
}
#jingdezen .sec-tech .container-tech .main-box .item-txt{
	box-sizing: border-box;
	padding-top: 2rem;
}

#jingdezen .sec-tech .container-tech .block-sub{
	box-sizing: border-box;
	padding: 2rem;
	margin-top: 4rem;
	display: flex;
	flex-wrap: wrap;
}
#jingdezen .sec-tech .container-tech .sub-box{
	width: calc((100% - 0.5rem) / 2);
}
#jingdezen .sec-tech .container-tech .block-sub .item-txt{
	padding-top: 1rem;
}

#jingdezen .sec-tech .container-tech .block-jiki{
	box-sizing: border-box;
	margin-top: 4rem;
	padding: 2rem;
}
#jingdezen .sec-tech .container-tech .block-jiki .jiki-box .item-img{
	margin-bottom: 2rem;
	position: relative;
}
#jingdezen .sec-tech .container-tech .block-jiki .jiki-box .item-img .ttl{
	box-sizing: border-box;
	position: absolute;
	bottom: 2rem;
	left: 0;
	font-size: 1.8rem;
	padding: 2rem;
	min-width: 11.2rem;
}

#jingdezen .tbl--jingdezen th,
#jingdezen .tbl--jingdezen td{
	box-sizing: border-box;
}
#jingdezen .tbl--jingdezen th{
	padding: 1.5rem 2rem 0.5rem 2rem;
}
#jingdezen .tbl--jingdezen td{
	padding: 0 2rem 1.5rem 2rem;
}

@media only screen and (max-width: 599px) {
	#jingdezen .sec-tech .container-tech .block-main{
		width: 100%;
	}
	#jingdezen .sec-tech .container-tech .main-box:not(:last-child){
		margin-bottom: 4rem;
	}

	#jingdezen .sec-tech .container-tech .block-sub{
		justify-content: space-between;
	}
	#jingdezen .sec-tech .container-tech .block-sub .sub-box:nth-child(n+3){
		margin-top: 1.5rem;
	}

	#jingdezen .sec-tech .container-tech .block-jiki .jiki-box:not(:last-child){
		margin-bottom: 2rem;
	}

	#jingdezen .tbl--jingdezen th,
	#jingdezen .tbl--jingdezen td{
		display: block;
	}
	#jingdezen .tbl--jingdezen tr:not(:last-child) td{
		border-bottom: 1px solid #DEDEDE;
	}
}

@media print,screen and (min-width: 600px) {
	#jingdezen .sec-tech{
		padding: 10rem 0;
	}
	#jingdezen .sec-tech .container-tech:not(:last-child){
		margin-bottom: 10rem;
	}
	#jingdezen .sec-tech .container-tech .block-ttl{
		display: flex;
		align-items: baseline;
		margin-bottom: 4rem;
	}
	#jingdezen .sec-tech .container-tech .container-ttl{
		margin-bottom: 0;
	}
	#jingdezen .sec-tech .container-tech .block-ttl .box-txt{
		flex: 1;
		padding-left: 3rem;
	}
	#jingdezen .sec-tech .container-tech .block-main{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#jingdezen .sec-tech .container-tech .main-box{
		width: calc((100% - 1rem) / 2);
	}
	#jingdezen .sec-tech .container-tech .main-box:nth-child(n+3){
		margin-top: 6rem;
	}
	#jingdezen .sec-tech .container-tech .main-box .item-txt{
		width: 100%;
		padding: 3rem 2rem 0 2rem;
	}

	#jingdezen .sec-tech .container-tech .block-sub{
		margin-top: 6rem;
	}
	#jingdezen .sec-tech .container-tech .sub-box{
		width: calc((100% - 0.8rem * 3) / 4);
	}
	#jingdezen .sec-tech .container-tech .sub-box:not(:nth-child(4n)){
		margin-right: 0.8rem;
	}

	#jingdezen .sec-tech .container-tech .block-jiki{
		margin-top: 6rem;
		padding: 5rem;
	}
	#jingdezen .sec-tech .container-tech .block-jiki .block-ttl{
		margin-left: -5rem;
		margin-bottom: 3rem;
	}
	#jingdezen .sec-tech .container-tech .block-jiki .jiki-box-list{
		display: flex;
		justify-content: space-between;
	}
	#jingdezen .sec-tech .container-tech .block-jiki .jiki-box{
		width: calc((100% - 4rem) / 2);
	}
	#jingdezen .sec-tech .container-tech .block-jiki .jiki-box .item-img{
		margin-bottom: 3rem;
	}

	#jingdezen .tbl--jingdezen th{
		width: 12.5rem;
		padding: 2.5rem 2rem 2.5rem 3rem;
	}
	#jingdezen .tbl--jingdezen td{
		padding: 2.5rem 3rem 2.5rem 0;
	}
	#jingdezen .tbl--jingdezen tr:not(:last-child) th,
	#jingdezen .tbl--jingdezen tr:not(:last-child) td{
		border-bottom: 1px solid #DEDEDE;
	}
}

/* quality
--------------------------------------*/
#jingdezen .sec-quality{
	padding: 8rem 0;
}
#jingdezen .sec-quality .container-ttl{
	font-size: 1.8rem;
	line-height: 1.72;
	padding-bottom: 2rem;
	border-bottom: 1px solid #DEDEDE;
	margin-bottom: 2rem;
}

@media only screen and (max-width: 599px) {
	#jingdezen .sec-quality .block-img{
		margin-bottom: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	#jingdezen .sec-quality{
		padding: 13rem 0;
	}
	#jingdezen .sec-quality .container-quality{
		display: flex;
	}
	#jingdezen .sec-quality .container-quality .block-img{
		width: 47.2rem;
	}
	#jingdezen .sec-quality .container-quality .block-txt{
		flex: 1;
		padding-left: 3rem;
	}
}

/* outline
--------------------------------------*/
#jingdezen .sec-outline{
	padding: 6rem 0;
	margin-bottom: 10rem;
}
#jingdezen .sec-outline .container-map{
	margin-top: 2rem;
}

@media only screen and (max-width: 599px) {
	#jingdezen .sec-outline .container-outline .block-img{
		margin-bottom: 2rem;
	}
	#jingdezen .sec-outline .container-map{
		width: 100%;
		overflow-x: scroll;
	}
	#jingdezen .sec-outline .container-map .block-map{
		width: 62rem;
		padding: 0 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	#jingdezen .sec-outline{
		padding: 10rem 0;
		margin-bottom: 15rem;
	}
	#jingdezen .sec-outline .container-outline{
		display: flex;
	}
	#jingdezen .sec-outline .container-outline .block-img{
		order: 2;
		width: 56.5rem;
	}
	#jingdezen .sec-outline .container-outline .block-txt{
		flex: 1;
		padding-right: 3rem;
	}
	#jingdezen .sec-outline .container-map{
		margin-top: 6rem;
	}
}

/*====================================
business
====================================*/
#business .wrap-sec-business{
	padding-bottom: 2rem;
}
#business .sec-business{
	margin-bottom: 8rem;
}
#business .sec-business .sec-ttl{
	padding-bottom: 2rem;
	border-bottom: 1px solid #DEDEDE;
	margin-bottom: 2rem;
}
#business .sec-business .sec-ttl .j{
	font-size: 2.2rem;
}
#business .sec-business .sec-ttl .e{
	font-size: 1.3rem;
	margin-top: 1.4rem;
	margin-left: 0.5rem;
}

#business .sec-life .container-sub,
#business .sec-environmental .container-sub{
	margin-top: 3rem;
}
#business .sec-life .container-sub .block-sub{
	background: url(../img/business/life-oem-bg-sp.jpg) no-repeat center center;
	background-size: cover;
	box-sizing: border-box;
	padding: 4rem 2.7rem;
}
#business .sec-life .container-sub .block-sub .block-ttl{
	font-size: 1.8rem;
	line-height: 1.88;
	margin-bottom: 2rem;
}
#business .sec-life .container-sub .block-sub .box-btn{
	margin-top: 3rem;
}
#business .sec-life .container-sub .block-sub .box-btn .btn{
	border: 1px solid #fff;
}
#business .sec-life .container-sub .block-jingdezen{
	background-image: url(../img/business/life-jingdezen-bg-sp.jpg);
	padding-top: 6rem;
}
#business .sec-life .container-sub .block-jingdezen .block-ttl{
	margin-bottom: 6rem;
}

#business .sec-environmental .container-sub .block-sub:not(:last-child){
	margin-bottom: 5rem;
}
#business .sec-environmental .container-sub .block-sub .box-img{
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
}
#business .sec-environmental .container-sub .block-sub .box-img .item-img{
	width: calc((100% - 0.5rem) / 2);
}
#business .sec-environmental .container-sub .block-sub .box-img .txt{
	margin-top: 1rem;
	line-height: 1.2;
}
#business .sec-environmental .container-sub .block-sub .bnr,
#business .sec-coffee .container-main .box-bnr .bnr{
	width: 100%;
	height: 8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-sizing: border-box;
}
#business .sec-environmental .container-sub .block-sub .bnr img{
	width: 14.4rem;
}
#business .sec-environmental .container-sub .block-sub .bnr .icon,
#business .sec-coffee .container-main .box-bnr .bnr .icon{
	position: absolute;
	right: 1.4rem;
	bottom: 1.4rem;
	width: 1rem;
	height: 1rem;
}

#business .sec-coffee .container-main .box-bnr{
	margin-top: 2rem;
}
#business .sec-coffee .container-main .box-bnr .bnr{
	border: 1px solid #ECECEC;
}
#business .sec-coffee .container-main .box-bnr .bnr img{
	width: 20.9rem;
}

@media only screen and (max-width: 599px) {
	#business .sec-business .container-main{
		width: 100%;
	}
	#business .sec-business .container-main .block-txt{
		padding-top: 3rem;
	}

	#business .sec-life .container-sub,
	#business .sec-environmental .container-sub{
		padding: 3rem 0;
		background-color: #F5F5F5;
	}
	#business .sec-life .container-sub .block-sub:not(:last-child){
		margin-bottom: 2rem;
	}

	#business .sec-environmental .container-sub .block-sub .box-img{
		justify-content: space-between;
	}
	#business .sec-environmental .container-sub .block-sub .box-img .item-img:nth-child(n+3){
		margin-top: 2rem;
	}
	#business .sec-environmental .container-sub .block-sub .box-bnr{
		margin-top: 2rem;
	}
}

@media print,screen and (min-width: 600px) {
	#business .sec-pagettl .container-img .bg{
		background-image: url(../img/business/pagettl-img-pc.jpg);
	}
	#business .wrap-sec-business{
		padding-bottom: 3rem;
	}
	#business .sec-business{
		margin-bottom: 13rem;
		position: relative;
	}
	#business .sec-business .container-main,
	#business .sec-business .container-sub{
		position: relative;
		z-index: 2;
	}
	#business .sec-business .container-main{
		display: flex;
		width: calc(110rem + 10rem * 2);
	}
	#business .sec-business .container-main .block-img{
		width: 63.5rem;
	}
	#business .sec-business .container-main .block-txt{
		flex: 1;
		width: auto;
		margin: 0;
	}
	#business .sec-business:nth-child(odd) .container-main .block-txt{
		padding-left: 6rem;
		padding-right: 10rem;
	}
	#business .sec-business:nth-child(even) .container-main .block-img{
		order: 2;
	}
	#business .sec-business:nth-child(even) .container-main .block-txt{
		order: 1;
		padding-right: 6rem;
		padding-left: 10rem;
	}
	#business .sec-business .sec-ttl{
		padding-bottom: 3rem;
		margin-bottom: 3rem;
	}
	#business .sec-business .sec-ttl .j{
		font-size: 2.6rem;
	}
	#business .sec-business .sec-ttl .e{
		margin-top: 1.8rem;
	}

	#business .sec-life:before,
	#business .sec-environmental:before{
		content: '';
		display: block;
		position: absolute;
		pointer-events: none;
		background-color: #F5F5F5;
		height: calc(100% - (6rem + 31rem));
		bottom: 0;
		width: calc((100% - 110rem) / 2 + 110rem);
	}
	#business .sec-life:before{
		right: 0;
	}
	#business .sec-life .container-sub{
		margin-top: 7rem;
		padding-bottom: 7rem;
	}
	#business .sec-life .container-sub .wrap-block-sub{
		box-sizing: border-box;
		display: flex;
		justify-content: space-between;
		padding-left: 5rem;
	}
	#business .sec-life .container-sub .block-sub{
		width: calc((100% - 1rem) / 2);
	}
	#business .sec-life .container-sub .block-sub .block-ttl{
		font-size: 2.2rem;
		margin-bottom: 1.5rem;
	}
	#business .sec-life .container-sub .block-sub .box-btn{
		margin-top: 1.3rem;
	}
	#business .sec-life .container-sub .block-oem{
		background-image: url(../img/business/life-oem-bg-pc.jpg);
	}
	#business .sec-life .container-sub .block-jingdezen{
		background-image: url(../img/business/life-jingdezen-bg-pc.jpg);
		padding-top: 11.5rem;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	#business .sec-environmental:before{
		left: 0;
	}
	#business .sec-environmental .container-sub{
		margin-top: -2rem;
		padding-bottom: 7rem;
	}
	#business .sec-environmental .container-sub .block-sub:not(:last-child){
		margin-bottom: 7rem;
	}
	#business .sec-environmental .container-sub .block-sub .block-ttl{
		margin-bottom: 2rem;
	}
	#business .sec-environmental .container-sub .block1{
		box-sizing: border-box;
		padding-right: 5rem;
	}
	#business .sec-environmental .container-sub .block1 .box-txt{
		width: 46.5rem;
	}
	#business .sec-environmental .container-sub .block-sub .box-img{
		margin-top: 4rem;
	}
	#business .sec-environmental .container-sub .block-sub .box-img .item-img{
		width: calc((100% - 1rem * 3) / 4);
	}
	#business .sec-environmental .container-sub .block-sub .box-img .item-img:not(:nth-child(4n)){
		margin-right: 1rem;
	}
	#business .sec-environmental .container-sub .block2{
		box-sizing: border-box;
		padding-right: 4rem;
	}
	#business .sec-environmental .container-sub .block2 .block-inner{
		display: flex;
	}
	#business .sec-environmental .container-sub .block2 .box-txt{
		flex: 1;
		padding-right: 4.3rem;
	}
	#business .sec-environmental .container-sub .block2 .box-bnr{
		width: 31.4rem;
	}
	#business .sec-environmental .container-sub .block-sub .bnr{
		height: 10rem;
	}

	#business .sec-coffee .container-main .block-txt{
		display: flex;
		flex-direction: column;
	}
	#business .sec-coffee .container-main .block-txt .box-txt{
		flex: 1;
	}
	#business .sec-coffee .container-main .box-bnr .bnr{
		height: 10rem;
		width: 31.4rem;
	}
}


/*====================================

====================================*/

@media only screen and (max-width: 599px) {
}

@media print,screen and (min-width: 600px) {
}

/*
--------------------------------------*/
