@charset "utf-8";


/******************************************************************** structure
*/
html {
	overflow-y: scroll;
}

body {
	box-sizing: border-box;
	text-align: justify;
	text-justify: inter-ideograph;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #121212;
	font-size: 1.6rem;
	overflow-x: hidden;
	line-height: 1.6;
}

a {
	-webkit-transition: all .3s;
	transition: all .3s;
}

a:link,
a:visited {
	color: #0068B7;
}

a:hover {
	text-decoration: none;
	opacity: 0.5;
}

a[href^="tel:"] {
	pointer-events: none;
}

.red {
	color: #D51720;
}

.blue {
	color: #0068B7;
}

.under-line {
	text-decoration: underline;
}

.bold {
	font-weight: bold;
}

.wrapper {
	width: 92%;
	max-width: 1200px;
	text-align: left;
	margin: 0 auto;
	position: relative;
}

#header {
	position: relative;
	height: auto;
	width: 100%;
}

#footer {
	clear: both;
}


/******************************************************************** header
*/
header {
	border-bottom: #0068B7 6px solid;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mv {
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

h1.logo {
	width: 312px;
}

h1.logo img {
	width: 100%;
}

.breadcrumb {
	position: relative;
	z-index: 1;
	line-height: 32px;
	font-size: 1.2rem;
}

.breadcrumb .wrapper {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
}

.breadcrumb li {
	display: inline;
}

.breadcrumb li:after {
	display: inline;
	content: ">";
	margin: 0 0.5em;
}

.breadcrumb li:last-child:after {
	display: none;
}

.breadcrumb li a:link,
.breadcrumb li a:visited {
	color: #FFF;
}

.breadcrumb li a:hover {
	text-decoration: none;
}


/******************************************************************** globalNav
*/
.nav-button {
	display: none;
}

.nav-wrap {
	width: 50%;
}

.nav {
	display: flex;
	justify-content: space-between;
	position: relative;
}

.nav>li {
	text-align: center;
	box-sizing: border-box;
	flex: 1;
	-webkit-transition: all .3s;
	transition: all .3s;
	background: #FFF;
	position: relative;
}

.nav>li:before {
	display: block;
	content: "";
	width: 1px;
	height: 64%;
	position: absolute;
	right: 0;
	bottom: 0;
	background: #B3B3B3;
}

.nav>li.home {
	display: none;
}

.nav>li.contact:before {
	display: none;
}

.nav a {
	text-decoration: none;
	display: block;
	padding: 40px 0;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1;
	color: #231815;
}

.nav a:hover {
	opacity: 1;
}

.nav li.has-child:hover {
	-webkit-transition: all .5s;
	transition: all .5s;
}

.nav li.has-child>a:after {
	display: inline-block;
	content: "";
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #0068B7;
	vertical-align: 0.1em;
	margin-left: -6px;
	position: absolute;
	left: 50%;
	bottom: 1.2em;
}

.nav li.has-child .child {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 14rem;
	left: 0;
	box-sizing: border-box;
	width: 100vw;
	padding: 32px;
	background: #333;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	z-index: 10;
	display: flex;
	justify-content: center;
}

.fixed .nav li.has-child:hover .child {
	visibility: hidden;
}

.nav li.has-child:hover .child {
	top: 11rem;
	visibility: visible;
	opacity: 1;
}

.nav li.has-child .child li {
	width: calc(100% / 6);
	margin: 0;
	position: relative;
}

.nav li.has-child .child li:last-child {
	border-right: none;
}

.nav li.has-child .child li a {
	text-align: left;
	padding: 0.5em;
	line-height: 1.4;
	color: #FFF;
}

.nav li.service .child li a:before {
	display: block;
	content: "";
	width: 100%;
	height: 96px;
	margin: 0 auto 2vmin;
}

.nav li.service .child li.special-label a:before {
	background: url("../img/index/p_service_label.jpg") no-repeat center center;
	background-size: cover;
}

.nav li.service .child li.special-marking a:before {
	background: url("../img/index/p_service_marking.jpg") no-repeat center center;
	background-size: cover;
}

.nav li.service .child li.printer-system a:before {
	background: url("../img/index/p_service_printer.jpg") no-repeat center center;
	background-size: cover;
}

.nav li.service .child li.multipurpose-label a:before {
	background: url("../img/index/p_service_multi.jpg") no-repeat center center;
	background-size: cover;
}

.nav li.service .child li.promotional-items a:before {
	background: url("../img/index/p_service_promotional.jpg") no-repeat center center;
	background-size: cover;
}

.nav li.service .child li.packing-material a:before {
	background: url("../img/index/p_service_packing.jpg") no-repeat center center;
	background-size: cover;
}

.nav li.has-child .child li a:hover {
	opacity: 0.5;
}

.nav a span {
	display: block;
	font-size: 1.2rem;
	margin-top: 0.5em;
}

.nav>li:hover {
	background: #EFEFED;
}

.nav>li.has-child:hover {
	background: #333;
}

.nav>li.has-child:hover a {
	color: #FFF;
}

.nav>li.has-child:hover>a:after {
	border-top: 6px solid #FFF;
}

.nav-wrap.open {
	display: block;
}

.nav-wrap.close {
	display: none;
}

.nav .new {
	background-color: red;
	width: fit-content;
	margin: 5px auto 0;
	font-size: 14px;
	padding: 5px 15px;
	color: #fff;
}

.nav .sp {
	display: none;
}

.nav .pc {
	display: inline-block;
}

@media screen and (min-width: 961px) {
	.nav-wrap {
		display: block !important;
	}
}


/******************************************************************** container
*/
.mv-contents {
	text-align: center;
	padding: 120px 0;
	position: relative;
	color: #FFF;
}

.mv-contents:before {
	display: block;
	content: "";
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.mv-contents h2 {
	position: relative;
	z-index: 2;
	font-size: 3.6rem;
	font-weight: bold;
	letter-spacing: 0.1em;
}

.main>section {
	padding: 72px 0;
	position: relative;
}

.main>section .txt {
	line-height: 1.8;
}

.ttl-area {
	margin-bottom: 48px;
	text-align: center;
}

.ttl-area .en {
	font-size: 2rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.05em;
}

.ttl-area h2 {
	font-size: 3rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	color: #0068B7;
}

.btn {
	width: 100%;
	position: relative;
	line-height: 1;
	overflow: hidden;
	text-align: center;
}

.btn a {
	display: inline-block;
	line-height: 64px;
	text-align: center;
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 320px;
	background: #0068B7;
	box-sizing: border-box;
	font-size: 1.6rem;
	font-weight: bold;
}

.btn a:before {
	display: block;
	content: " ";
	position: absolute;
	z-index: 10;
	right: 5%;
	top: 50%;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	background: url("../img/common/ico_arrow_next.svg") no-repeat center center;
	background-size: 100% auto;
	box-sizing: border-box;
}

.btn,
.btn a:before,
.btn a:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.btn a:link,
.btn a:visited {
	text-decoration: none;
	color: #FFF;
}

.btn a:hover {
	color: #FFF;
}

.back a:before {
	background: url("../img/common/ico_arrow_back.svg") no-repeat center center;
	background-size: 100% auto;
	left: 5%;
	right: inherit;
}

.list a:before {
	display: none;
}

.blog-nav {
	display: flex;
	justify-content: center;
}

.blog-nav li {
	margin-right: 4%;
}

.blog-nav li:last-child {
	margin-right: 0;
}

.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	margin-bottom: 2em;
}

.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.pagination {
	margin-top: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination>* {
	margin-right: 8px;
	padding: 0.5em 0.8em;
	line-height: 1;
	display: block;
	box-sizing: border-box;
	border: #121212 2px solid;
}

.pagination>*:last-child {
	margin-right: 0;
}

.pagination>a {
	background: #121212;
	color: #FFF;
}

.pagination>a:link,
.pagination>a:visited {
	text-decoration: none;
	color: #FFF;
}

.pagination>span {}

.box-module {
	width: 92%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 3;
	box-sizing: border-box;
	background: #F2F2F2;
	padding: 40px;
}

.box-module h3 {
	text-align: center;
	margin-bottom: 24px;
	font-size: 3.2rem;
	font-weight: bold;
	letter-spacing: 0.05em;
}

.shadow {
	box-shadow: 10px 10px 15px -10px rgba(0, 0, 0, 0.6);
}


/******************************************************************** footer
*/
footer {
	position: relative;
}

.info-area {
	background: #F2F2F2;
	padding: 80px 0;
}

.info-area a:link,
.info-area a:visited {
	color: #FFF;
}

.info-area .txt {
	text-align: center;
}

.info-area ul {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.info-area ul li {
	width: 48%;
	max-width: 368px;
	text-align: center;
	border-right: #999999 1px solid;
}

.info-area ul li:last-child {
	border-right: none;
}

.info-area ul li h3 {
	font-size: 2.6rem;
	font-weight: bold;
}

.info-area ul li .tel {
	font-size: 2.4rem;
	font-weight: bold;
}

.info-area ul li .tel b {
	font-size: 3.2rem;
}

.info-area ul li .btn {
	display: none;
}

.info-area .btn a:before {
	background: url("../img/common/ico_mail_white.svg") no-repeat center center;
	background-size: 100% auto;
	box-sizing: border-box;
	width: 30px;
	height: 21px;
	position: relative;
	left: inherit;
	top: inherit;
	display: inline-block;
	vertical-align: -0.25em;
	margin-right: 0.8em;
	right: inherit;
}

.info-area .btn a:hover {
	color: #FFF;
}

.info-area .btn a:hover:after {
	background: #3BB271;
}

.info-area .btn a:hover:before {
	background: url(../img/common/ico_mail_white.svg) no-repeat center center;
	background-size: 100% auto;
}

.info-area .wrapper .third .txt {
	margin-top: 1rem;
}

.pageup {
	position: absolute;
	right: 30px;
	bottom: 30px;
}

.pageup a {
	background: #80B4DB;
	display: block;
	width: 40px;
	padding: 14.5px 0;
	line-height: 0;
	box-sizing: border-box;
	text-align: center;
	position: relative;
	z-index: 2;
}

.pageup a img {
	width: 20px;
}

.foot-nav {
	position: relative;
}

.foot-nav a:link,
.foot-nav a:visited {
	color: #000;
	text-decoration: none;
}

.foot-nav a:hover {
	opacity: 0.5;
}

.foot-nav .upper-contents {
	padding: 64px 0 24px;
	display: flex;
	justify-content: center;
	position: relative;
}

.foot-nav .nav {
	justify-content: center;
	flex-wrap: wrap;
}

.foot-nav .nav a {
	font-size: 1.4rem;
	font-weight: normal;
	padding: 0 2em;
}

.foot-nav .nav>li {
	border-right: #000 1px solid;
	text-align: center;
	flex: auto;
}

.foot-nav .nav>li:last-child {
	border-right: none;
}

.foot-nav .nav>li:before {
	display: none;
}

.foot-nav .nav>li:hover {
	background: transparent;
}

.foot-nav .under-contents {
	background: #0068B7;
	padding: 32px 0 20px;
}

.under-contents-flex {
	display: flex;
	justify-content: space-between;
	width: 220px;
	margin: 0 auto 60px;
}

.foot-nav .under-contents h2 {
	width: fit-content;
	margin: 0;
}

.foot-nav .under-contents h2 img {
	width: 110px;
}

.foot-copy {
	color: #FFF;
	font-size: 1.2rem;
	text-align: center;
}

.pc_none {
	display: none !important;
}

.sp_none {
	display: block !important;
}


@media screen and (max-width:1480px) {
	.foot-nav .wrapper {
		padding-right: 80px;
		box-sizing: border-box;
	}
}

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

/*************************************************************************************************************************

■ タブレット(960px以下)向けスタイル

*************************************************************************************************************************/

@media screen and (max-width:960px) {

	/******************************************************************** structure
*/
	.pc_none {
		display: block !important;
	}

	.sp_none {
		display: none !important;
	}

	a[href^="tel:"] {
		pointer-events: inherit;
	}

	.wrapper {
		width: 92%;
	}

	/******************************************************************** header
*/
	header .wrapper {
		padding: 0;
	}

	header .header {
		padding: 3.2vmin;
		padding-right: calc(6.4vmin + 44px);
	}

	h1.logo {
		width: auto;
		height: 44px;
	}

	h1.logo img {
		width: auto;
		height: 100%;
	}

	.ttl-area {
		padding: 0 4% 4.8vmin;
		margin: 0;
	}


	/******************************************************************** globalNav
*/
	.nav-button {
		display: block;
		cursor: pointer;
	}

	.nav-wrap {
		position: fixed;
		left: 0;
		top: 0;
		display: none;
		z-index: 100;
		background-color: #0068B7;
		width: 100%;
		height: 100%;
	}

	.nav-wrap .nav {
		height: 100%;
		position: relative;
		display: block;
		padding: 60px 0;
		padding-top: calc(6.4vmin + 44px);
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}

	.nav a,
	.fixed .nav a {
		padding: 1em;
	}

	.nav a {
		color: #FFF;
	}

	.nav>li {
		background: transparent;
		width: 100%;
		text-align: left;
		border-bottom: #0379D2 1px solid;
		border-left: none;
	}

	.nav .new {
		background-color: red;
		width: fit-content;
		margin: 0 5px;
		font-size: 14px;
		padding: 5px;
		color: #fff;
	}

	.nav .sp {
		display: inline-block;
	}

	.nav .pc {
		display: none;
	}


	.nav>li:first-child {
		border-top: #0379D2 1px solid;
	}

	.nav>li.home {
		display: block;
	}

	.nav>li>a {
		position: relative;
	}

	.nav>li>a:after {
		display: inline-block;
		content: "";
		background: url("../img/common/ico_arrow_next.svg") no-repeat center center;
		background-size: 100% auto;
		width: 11px;
		height: 20px;
		position: absolute;
		right: 1.35em;
		top: 50%;
		margin-top: -10px;
	}

	.nav>li:after,
	.nav>li:first-child:before {
		display: none;
	}

	.nav li.has-child>a:after {
		border: none;
		vertical-align: inherit;
	}

	.nav li.has-child .child {
		background: #085A99;
		visibility: visible;
		opacity: 1;
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		padding: 0;
		border-radius: 0;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.fixed .nav li.has-child .child {
		top: 0;
	}

	.nav li.has-child:hover {
		transition: none;
	}

	.nav li:nth-child(3).has-child .child {
		left: 0;
	}

	.nav li.has-child:hover .child,
	.fixed .nav li.has-child:hover .child {
		top: 0;
	}

	.nav li.has-child .child li {
		width: 100%;
		margin: 0;
		border-top: #116EB5 1px solid;
		border-right: none;
	}

	.nav li.has-child .child li a {
		padding: 0.8em 1.5em;
		line-height: 1.2;
		text-align: left;
	}

	.nav li.has-child .child li a:hover {
		opacity: inherit;
	}

	.nav li.has-child .child li a:before {
		display: none;
	}

	.nav li.has-child .child li a:after {
		display: inline-block;
		content: "";
		background: url("../img/common/ico_arrow_next.svg") no-repeat center center;
		background-size: 100% auto;
		width: 11px;
		height: 20px;
		position: absolute;
		right: 1.5em;
		top: 50%;
		margin-top: -10px;
	}


	/*メニューボタンのエフェクト*/
	.nav-button,
	.nav-button span {
		display: inline-block;
		transition: all 0.4s;
		box-sizing: border-box;
	}

	.nav-button {
		z-index: 120;
		position: fixed;
		right: 3.2vmin;
		top: 3.2vmin;
		width: 44px;
		height: 44px;
		background: #0068B7;
		text-decoration: none;
	}

	.nav-button.active {
		background: #FFF;
	}

	.nav-button:after {
		display: inline-block;
		content: "メニュー";
		color: #FFF;
		font-size: 8px;
		position: absolute;
		bottom: 2px;
		left: 0;
		width: 100%;
		text-align: center;
	}

	.nav-button.active:after {
		color: #0068B7;
	}

	.nav-button span {
		position: absolute;
		left: 20%;
		width: 60%;
		height: 3px;
		background-color: #fff;
		border-radius: 2px;
	}

	.nav-button.active span {
		background-color: #0068B7;
	}

	.nav-button span:nth-of-type(1) {
		top: 8px;
	}

	.nav-button span:nth-of-type(2) {
		top: 15px;
	}

	.nav-button span:nth-of-type(3) {
		bottom: 19px;
	}

	.nav-button.active span:nth-of-type(1) {
		-webkit-transform: translateY(7px) rotate(-45deg);
		transform: translateY(7px) rotate(-45deg);
	}

	.nav-button.active span:nth-of-type(2) {
		opacity: 0;
	}

	.nav-button.active span:nth-of-type(3) {
		-webkit-transform: translateY(-7px) rotate(45deg);
		transform: translateY(-7px) rotate(45deg);
	}

	.nav-button.active:after {
		content: "閉じる";
	}

	.nav-button:hover,
	.nav-button:active {
		opacity: 1;
	}


	/******************************************************************** container
*/

	.mv-contents {
		padding: 12vmin 0;
	}

	.main>section {
		padding: 8vmin 0;
	}

	.btn a span {
		display: none;
	}

	.blog-nav {
		display: block;
	}

	.blog-nav li {
		margin: 0 auto 2vmin;
	}

	.blog-nav li:last-child {
		margin: 0 auto;
	}

	.pagination {
		margin-top: 3.2vmin;
	}

	.box-module {
		padding: 6.4vmin;
	}

	.box-module h3 {
		font-size: 3rem;
		margin-bottom: 2.4vmin;
	}


	/******************************************************************** footer
*/

	footer .wrapper {
		width: 92%;
	}

	.info-area {
		padding: 8vmin 0;
	}

	.info-area .wrapper {
		display: block;
		flex-wrap: wrap;
	}

	.info-area ul {
		margin-bottom: 4.8vmin;
	}

	.foot-nav .wrapper {
		width: 100%;
		padding: 0;
	}

	.foot-nav .upper-contents {
		padding: 0;
		display: block;
	}

	.foot-nav .upper-contents h2 {
		margin: 0 auto 2.4vmin;
		text-align: center;
		font-size: 1.8rem;
	}

	.foot-nav .upper-contents .information {
		padding: 0 4vmin 4vmin;
		text-align: center;
	}

	.foot-nav ul.nav {
		flex-wrap: wrap;
		width: 100%;
	}

	.foot-nav .nav a {
		padding: 0.8em 1em;
		font-size: 2rem;
	}

	.foot-nav .nav>li {
		width: 100%;
		margin-bottom: 0;
		border-right: none;
		border-top: #EEE 1px solid;
		border-bottom: none;
		text-align: left;
	}

	.foot-nav .nav>li a:before {
		display: none;
	}

	.foot-nav .under-contents {
		border-top: none;
		padding: 4vmin 0;
		display: block;
	}

	.foot-nav .nav>li>a::after {
		background: url("../img/common/ico_arrow_next_blue.svg") no-repeat center center;
		width: 6px;
	}

	.foot-nav .under-contents h2 {
		margin-bottom: 3.2vmin;
	}

	.foot-copy {
		text-align: center;
	}

	.pageup {
		display: none;
	}
}

/*************************************************************************************************************************

■ スマホ(600px以下)向けスタイル

*************************************************************************************************************************/

@media screen and (max-width:600px) {

	/******************************************************************** structure
*/
	.wrapper {
		width: 92%;
	}

	/******************************************************************** header
*/
	.mv {
		height: 56vmin;
	}

	.breadcrumb {
		margin: 0;
		line-height: 1.2;
		font-size: 3.2vmin;
	}

	/******************************************************************** globalNav
*/
	.nav a span {
		display: none;
	}

	.nav-button {
		top: 3.2vmin;
	}

	.nav-wrap .nav {
		padding-top: calc(6.4vmin + 44px);
	}

	.nav a,
	.fixed .nav a {
		font-size: 4.8vmin;
	}

	.nav li.has-child .child li a {
		padding: 0.6em 1.5em;
	}

	.nav>li>a:after,
	.nav li.has-child .child li a:after {
		width: 8px;
	}

	/******************************************************************** container
*/
	.mv-contents h2 {
		font-size: 7.2vmin;
	}

	.txt {
		font-size: 4vmin;
	}

	.btn {
		width: 88%;
		margin: 0 auto;
	}

	.btn a,
	.btn02 a,
	.btn03 a {
		display: block;
		line-height: 56px;
	}

	.btn a {
		font-size: 4.8vmin;
	}

	.ttl-area .en {
		font-size: 3.2vmin;
	}

	.ttl-area h2 {
		font-size: 6.4vmin;
		margin-bottom: 0.4em;
	}

	.card {
		margin-bottom: 8vmin;
	}

	.card h3 {
		font-size: 4.8vmin;
		padding: 1.2rem 1.6rem 1.2rem 2rem;
	}

	.card ul li a {
		font-size: 3.6vmin;
		line-height: 44px;
	}

	.box-module h3 {
		font-size: 4.8vmin;
	}

	/******************************************************************** footer
*/

	.info-area ul {
		display: block;
	}

	.info-area ul li {
		width: 100%;
		margin: 0 auto 4.8vmin;
		border-top: #CCC 1px solid;
		border-right: none;
		padding-top: 4.8vmin;
	}

	.info-area ul li:last-child {
		padding-bottom: 4.8vmin;
		border-bottom: #CCC 1px solid;
	}

	.info-area ul li h3 {
		font-size: 5.6vmin;
		margin-bottom: 2.4vmin;
	}

	.info-area ul li .tel {
		display: none;
	}

	.info-area ul li .btn {
		display: block;
	}

	.info-area ul li .btn a {
		background: #333;
		font-size: 5.6vmin;
	}

	.info-area ul li .btn a:before {
		background: url("../img/common/ico_tel.svg") no-repeat center center;
		background-size: 100% auto;
		box-sizing: border-box;
		width: 16px;
		height: 28px;
		position: relative;
		left: inherit;
		top: inherit;
		display: inline-block;
		vertical-align: -0.4em;
		margin-right: 0.4em;
		right: inherit;
	}

	.foot-nav .upper-contents h2 {
		font-size: 4vmin;
	}

	.foot-nav .nav a {
		font-size: 4vmin;
		padding: 1em;
	}

	.foot-nav .nav li.has-child .child li a {
		font-size: 4.4vmin;
	}

	.foot-nav .under-contents .sub-nav {
		font-size: 4.8vmin;
	}

}