<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ---------------------------------------
   general
	 --------------------------------------- */
body {
	font-family: YuGothic,'Yu Gothic','Yu Gothic UI','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	color: #333;
}
.pc {
	display: block!important;
}
.sp {
	display: none!important;
}
.wrapper {
	max-width: 1200px;
	width:90%;
	margin: 0 auto;
}
a {
	text-decoration: none;
	transition: .3s ease-in-out;
		-moz-transition: all .3s ease-in-out; /* Firefox 4 */
		-webkit-transition: all .3s ease-in-out; /* Safari and Chrome */
		-o-transition: all .3s ease-in-out; /* Opera */
}
a:hover {
	transition: .3s ease-in-out;
		-moz-transition: all .3s ease-in-out; /* Firefox 4 */
		-webkit-transition: all .3s ease-in-out; /* Safari and Chrome */
		-o-transition: all .3s ease-in-out; /* Opera */
}
* {
	box-sizing: border-box;
}
ul {
	padding: 0;
	list-style: none;
}
.overflow {
	overflow-x: hidden;
	overflow-y: scroll;
		-ms-overflow-style: none;    /* IE, Edge 対応 */
    scrollbar-width: none;       /* Firefox 対応 */
}
.overflow::-webkit-scrollbar {  /* Chrome, Safari 対応 */
  display:none;
}
.cf:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width:860px) {
	.pc {
		display: none!important;
	}
	.sp {
		display: block!important;
	}
}

/* --------------------------------------
   header
	 -------------------------------------- */
.header {
	background: #B3D8D8;
	color: #fff;
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	display: flex;
	justify-content: space-between;
	font-family: 'メイリオ', Meiryo,sans-serif;
}
.header-left {
	display: flex;
	z-index: 1000;
}
.header-logo {
	position: absolute;
	width: 140px;
	height: 120px;
	padding: 20px;
	background: #B3D8D8;
}
.title-1 {
	width: 310px;
	margin: 0 0 0 140px;
	line-height: 80px;
}

@media screen and (max-width:1040px) {
	.title-1 {
		display: none;
	}
}
@media screen and (max-width:860px) {
	.header-logo {
		width: 80px;
		height: 80px;
		padding: 17.5px 10px;
	}
	.title-1 {
		display: block;
		width: 220px;
		margin: 0 0 0 80px;
	}
}

@media screen and (min-width:861px) {
	.gnav {
		display: flex!important;
		margin: 0;
		padding: 0;
	}
	.gnav li {
		display: block;
	}
	.gnav &gt; li &gt; a {
		display: block;
		width: 140px;
		line-height: 80px;
		text-align: center;
		color: #fff;
		font-size: 20px;
		position: relative;
	}
	.gnav .nav-down:after {
		display: block;
		content:'';
		position: absolute;
		bottom: 10px;
		left: 65px;
		width: 7px;
		height: 6px;
		background-image: url(../img/common/arrow.svg);
	}
	.gnav &gt; li:nth-of-type(3) a {
		width:160px;
	}
	.gnav &gt; li &gt; a:hover {
		background: #A1CBCB;
	}
	.gnav &gt; li:hover .subnav {
		height: 160px;
		opacity: 1;
	}
	.subnav {
		padding: 0;
		background: #A1CBCB;
		height: 0;
		opacity: 0;
		overflow:hidden;
		position: absolute;
		transition: all .3s ease-in-out;
			-moz-transition: all .3s ease-in-out; /* Firefox 4 */
			-webkit-transition: all .3s ease-in-out; /* Safari and Chrome */
			-o-transition: all .3s ease-in-out; /* Opera */
	}
	.subnav li a {
		display: block;
		min-width: 140px;
		height: 40px;
		line-height: 40px;
		padding: 0 20px;
		border-bottom: 2px solid #fff;
		color: #fff;
	}
	.subnav li:nth-of-type(1) a {
		border-top: 2px solid #fff;
	}
	.subnav li:last-of-type a {
		border-bottom: none;
	}
	.subnav li a:hover {
		background: #86B8B8;
	}
	.gnav .contact a {
		background: #00A1B2;
	}
	.gnav .contact span {
		display: block;
		width: 140px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		font-weight: bold;
		background: #47BBC8;
		position: absolute;
		right: 0;
	}
	.gnav .contact a:hover {
		background: #028E9D;
	}
}

@media screen and (max-width:860px) {
	.gnav-sp {
		margin: 80px auto 0;
		width: 90%;
	}
	.gnav-sp &gt; li &gt; a, .nav-down-sp {
		display: block;
		height: 80px;
		line-height: 80px;
		width: 100%;
		border-bottom: 2px solid #fff;
		color: #fff;
		cursor: pointer;
		font-size: 20px;
	}
	.nav-down-sp span {
		display: block;
		position: relative;
	}
	.nav-down-sp span:before,
	.nav-down-sp span:after {
		content:'';
		display: block;
		width: 25px;
		height: 2px;
		background: #fff;
		position: absolute;
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
	}
	.nav-down-sp span:after {
		transform: translateY(-50%) rotate(90deg);
		tansition: .5s;
	}
	.nav-down-sp span.active:after {
		transform: rotate(0);
		transition: .5s;
			-moz-transition: all .5s; /* Firefox 4 */
			-webkit-transition: all .5s; /* Safari and Chrome */
			-o-transition: all .5s; /* Opera */
	}

	.subnav-sp {
		display: none;
		border-bottom: 2px solid #fff;
		padding: 10px 0;
	}
	.subnav-sp li a {
		display: block;
		width: 100%;
		height: 40px;
		line-height: 40px;
		color: #fff;
	}
	.gnav-sp .contact-btn {
		display: block;
		background: #00A1B2;
		border-bottom: none;
		margin-bottom: 20px;
	}
	.gnav-sp .contact-tel {
		margin-top: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 24px;
		font-weight: bold;
		border-bottom: none;
	}


	#gnav-btn {
	  width:45px;
		position: fixed;
		top: 27px;
		right: 15px;
		height: 35px;
		cursor: pointer;
		z-index:1002;
	}
	#gnav-btn div {
		position: relative;
		width: 100%;
	}
	#gnav-btn span {
		width: 41px;
		height: 2px;
		left: 0;
		display: block;
		background: #00A1B2;
		position: absolute;
		transition: all .3s ease-in-out;
			-moz-transition: all .3s ease-in-out; /* Firefox 4 */
			-webkit-transition: all .3s ease-in-out; /* Safari and Chrome */
			-o-transition: all .3s ease-in-out; /* Opera */
	}
	#gnav-btn div :nth-child(1) {
		top: 0;
	}
	#gnav-btn div :nth-child(2) {
		top: 12px;
	}
	#gnav-btn div :nth-child(3) {
		top: 24px;
	}
	.open #gnav-btn div :nth-child(1) {
	  top:13px;
	  transform: rotate(45deg);
	}
	.open #gnav-btn div :nth-child(2) {
	  top: 15px;
	  width: 0;
	  left: -50%;
	}
	.open #gnav-btn div :nth-child(3) {
	  top:13px;
	  transform: rotate(-45deg);
	}
	.header-right {
		background: #B3D8D8;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 990;
		text-align: center;
		opacity: 0;
		transform: translateX(100%);
		transition: all .3s ease-in-out;
			-moz-transition: all .3s ease-in-out; /* Firefox 4 */
			-webkit-transition: all .3s ease-in-out; /* Safari and Chrome */
			-o-transition: all .3s ease-in-out; /* Opera */
	}
	.open .header-right {
		opacity: 1;
		transform: translateX(0);
	}
}
/* --------------------------------------
   2column
	 -------------------------------------- */
.wrapper-2column {
	max-width: 1200px;
	width: calc(100% - 200px);
	margin: 0 auto;
}
@media screen and (max-width:1500px) {
	.wrapper-2column {
		margin-right: 150px;
	}
}
@media screen and (max-width:1400px) {
	.wrapper-2column {
		margin: 0 150px 0 50px;
	}
}
@media screen and (max-width:860px) {
	.wrapper-2column {
		width: 90%;
		margin: 0 auto;
	}
}
/* --------------------------------------
   side-nav
	 -------------------------------------- */
.side-nav {
	position: fixed;
	top: 140px;
	right: 10px;
	width: 130px;
	color: #333;
	z-index: 1000;
}
.side-nav img {
	width: 100%;
}
/*@media screen and (max-width:1040px) {
	.side-nav {
		width: 130px;
	}
}*/
@media screen and (max-width: 860px) {
	.side-nav {
		display: none;
	}
}
.side-nav .widgettitle {
	text-align: center;
	margin-top: 0;
}
.side-nav .widget ul{

}
.side-nav .widget li {
	display: block;
	line-height: 40px;
	border: 1px solid #ADA060;
	background: #fff;
	margin-bottom: 5px;
}
.side-nav .widget li a {
	position: relative;
	display: block;
	width: 100%;
	line-height: 40px;
	padding-left: 40px;
	color: #333;
}
.page-item-49 a:before, .page-item-51 a:before, .page-item-53 a:before, .page-item-55 a:before {
	position: absolute;
	display: inline-block;
	content:'';
	width: 25px;
	height: 25px;
	top: 7px;
	left: 10px;
	background-size: contain;
}
.page-item-49 a:before {
	background-image: url(../img/aisatu.png);
}
.page-item-51 a:before {
	background-image: url(../img/gaiyou.png);
}
.page-item-53 a:before {
	background-image: url(../img/enkaku.png);
}
.page-item-55 a:before {
	background-image: url(../img/access.png);
}
/* --------------------------------------
   footer
	 -------------------------------------- */
footer {
	background: #B3D8D8;
}
.ftr-wrapper {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	font-family: 'メイリオ', Meiryo,sans-serif;
	padding-top: 40px;
}
.ftr-address {
	font-style: normal;
	color: #00A1B2;
}
.ftr-address-title {
	font-size: 18px;
}
.ftr-address-title:before {
	content:'';
	display: inline-block;
	width: 25px;
	height: 25px;
	margin: 0 5px -5px 0;
	background: url(../img/common/logo_s.svg);
}
.ftr-contact {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}
.ftr-contact-text {
	margin-bottom: 0;
}
.ftr-contact-tel {
	display: block;
	font-size: 24px;
	margin: 10px 0 20px 0;
	color: #fff;
}
.ftr-contact-tel:before {
	content:'';
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 0 10px -5px 0;
	background: url(../img/common/tel.svg);
}
.ftr-contact-btn {
	display: block;
	width: 180px;
	height: 50px;
	background: #00A1B2;
	color: #fff;
	font-size: 20px;
	line-height: 50px;
	text-align: center;
}
.ftr-contact-btn:hover {
	background: #028E9D;
}
.ftr-nav {
	text-align: center;
	color: #fff;
}
.ftr-nav a {
	color: #fff;
}
.ftr-bottom {
	background: #fff;
	color: #00A1B2;
	margin: 0;
	text-align: center;
}
@media screen and (max-width:860px) {
	.ftr-wrapper {
		display: block;
		padding-top: 20px;
	}
	.ftr-contact {
		text-align: center;
	}
	.ftr-contact-btn {
		margin: 0 auto 30px;
	}
	.ftr-nav,
	.ftr-bottom {
		font-size: 12px;
		line-height: 20px;
		margin: 0;
	}
}
/* --------------------------------------
   top
	 -------------------------------------- */
#is-loading {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #FFF;
	z-index: 10001;
}
#loading .logo_s {
  position: absolute;
  top: 50%;
  left: 50%;
	transform: translate(-50%,-50%);
  width: 400px;
 	z-index: 10002;
}
#loading .logo_text {
	position: absolute;
	top: 75%;
	left: 50%;
	transform: translate(-50%,-75%);
	width: 400px;
	z-index: 10002;
}
.top {
	position: relative;
	height: 100vh;
	background-image: url(../img/top/background.jpg);
	background-size: cover;
	background-position: center;
}
@media screen and (min-width:861px) {
	.top, #is-loading {
		min-height: 800px;
	}
}
.top .logo {
	width: 400px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.top .logo img {
	filter: drop-shadow(5px 5px 7px rgba(0,0,0,.7));
}
.top .text {
	position: absolute;
	top: 15%;
	right: 10%;
	color: #00A1B2;
	font-size: 26px;
	font-weight: bold;
	letter-spacing: 0.6em;
	line-height: 46px;
	display: inline-block;
	text-align: right;
}
.top .text .big {
	font-size: 56px;
}
@media screen and (max-width:860px) {
	#loading .logo_s {
	  width: 60%;
		max-width: 350px;
	}
	#loading .logo_text {
		width: 60%;
		max-width: 350px;
	}
	.top{
		background-image: url(../img/top/background-sp.png);
		background-position: center;
	}
	.top .logo {
		width: 60%;
		max-width: 350px;
	}
	.top .text {
		right: auto;
		left: 5%;
		letter-spacing: 0.3em;
		font-size: 18px;
		text-align: left;
	}
	.top .text .big {
		font-size: 28px;
	}
}
@media screen and (max-height:850px) and (min-width:861px){
	#loading .logo_s {
	  width: 350px;
	}
	#loading .logo_text {
		width: 350px;
	}
	.top .logo {
		width: 350px;
	}
	.top .text {
		font-size: 20px;
	}
	.top .text .big {
		font-size: 40px;
	}
}

.top-news {
	margin-top: -180px;
}
.top-news .wrapper {
	position: relative;
	z-index: 2;
	background: #fff;
	padding: 40px 40px 0;
}
.top-news h2 {
	font-size: 32px;
	color: #00A1B2;
	border-bottom: 2px solid #00A1B2;
	line-height: 36px;
	margin: 0 40px 40px;
}

@media screen and (max-width:860px) {
	.top-news {
		margin-top :-120px;
	}
	.top-news .wrapper {
		padding: 20px 20px 0;
	}
	.top-news h2 {
		font-size: 20px;
		margin: 0 0 20px;
	}
}

.top-concept {
	background: linear-gradient(to top, #fff 20%, #B3D8D8);
	padding: 60px 0;
}
.top-concept .copy {
	position: relative;
	height: 66px;
	background: rgba(255, 255, 255, .5);
	width: 80%;
	margin-left: calc(-50vw + 50%);
}
.top-concept .copy p {
	font-size: 24px;
	letter-spacing: 0.1em;
	color: #00A1B2;
	font-weight: bold;
	line-height: 38px;
	position: absolute;
	top: -40px;
	right: 0;
}
.top-concept .img {
	width: 100%;
	margin: 40px auto;
}
.top-concept img {
	width: 100%;
}
.top-concept .img img {
	display: block;
	margin: 0 auto;
}
.top-concept .text {
	max-width: 860px;
	width: 100%;
	margin: 0 auto;
	font-size: 18px;
	line-height: 50px;
	color: #04828F;
}
@media screen and (max-width:1040px) {
	.top-concept .copy {
		margin-left: 0;
	}
	.top-concept .copy p {
		left: 0;
	}
}
@media screen and (max-width: 860px) {
	.top-concept {
		padding: 60px 0 40px;
	}
	.top-concept .copy {
		height: 86px;
		max-width: 350px;
		width: 90%;
		margin-left: 0;
	}
	.top-concept .copy p {
		font-size:18px;
		left: 0;
	}
	.top-concept .text {
		font-size: 16px;
		line-height: 40px;
	}
}
.top-service a {
	position: relative;
	overflow: hidden;
	display: block;
}
.top-service a span {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	color: #fff;
	font-size: 26px;
	line-height: 32px;
	font-weight: bold;
	display: block;
	width: 100%;
	text-shadow: 0 0 10px rgba(0,0,0,.5);
}
.top-service a:hover img {
	transform: scale(1.1);
	transition-duration: 0.3s;
		-moz-transition-duration: all .3s; /* Firefox 4 */
		-webkit-transition-duration: all .3s; /* Safari and Chrome */
		-o-transition-duration: all .3s; /* Opera */
}

@media screen and (max-width:1040px) {
	.top-service a span {
		font-size: 20px;
		line-height: 26px;
	}
}
.top-service img, .top-service h2 {
	display: block;
	width: 100%;
}
.top-service {
	max-width: 1600px;
	width: 98%;
	margin: 0 auto 60px;
	display: grid;
	display: -ms-grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
		-ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	grid-gap: 20px;
	grid-template-rows: [row1] 45px [row2] auto;
		-ms-grid-rows: 45px auto;
	text-align: center;
}
.top-service .title {
	font-size: 20px;
	margin: 0;
	line-height: 40px;
}
.title-plan {
	grid-column: 1/4;
		-ms-grid-column: 1;
		-ms-grid-column-span: 3;
		-ms-grid-row: 1;
	color: #4490B3;
	border-bottom: 5px solid #4490B3;
	background: #D8E8EF;
}
.title-graphic {
	grid-column: 4/5;
		-ms-grid-column: 4;
	grid-row: 1/2;
		-ms-grid-row: 1;
	color: #D6A546;
	border-bottom: 5px solid #D6A546;
	background: #F9F0E0;
}
.title-prepress {
	grid-column: 5/6;
		-ms-grid-column: 5;
	grid-row: 1/2;
		-ms-grid-row: 1;
	color: #C06234;
	border-bottom: 5px solid #C06234;
	background: #F1DED4;
}
.title-print {
	grid-column: 6/7;
		-ms-grid-column: 6;
	grid-row: 1/2;
		-ms-grid-row: 1;
	color: #886D96;
	border-bottom: 5px solid #886D96;
	background: #E4DEE6;
}
.img-plan-1 {
	-ms-grid-column: 1;
	-ms-grid-row: 2;
}
.img-plan-2 {
	-ms-grid-column: 2;
	-ms-grid-row: 2;
}
.img-plan-3 {
	-ms-grid-column: 3;
	-ms-grid-row: 2;
}
.img-graphic {
	-ms-grid-column: 4;
	-ms-grid-row: 2;
}
.img-prepress {
	-ms-grid-column: 5;
	-ms-grid-row: 2;
}
.img-print {
	-ms-grid-column: 6;
	-ms-grid-row: 2;
}
@media screen and (max-width:1140px) {
	.top-service .title {
		font-size: 16px;
	}
}
@media screen and (max-width:1040px) {
	.top-service {
		grid-gap: 10px;
	}
}
@media screen and (max-width: 860px){
  .top-service {
    grid-template-columns: 1fr;
			-ms-grid-columns: 100%;
    grid-template-rows: auto;
			-ms-grid-rows: auto;
		width: 90%;
		margin-bottom: 40px;
  }
  .title-plan, .title-graphic, .title-prepress,	.title-print {
    grid-column: 1;
			-ms-grid-column: 1;
    grid-row: auto;
			-ms-grid-row: 1;
  }
	.title-graphic {
		-ms-grid-row: 5;
	}
	.title-prepress {
		-ms-grid-row: 7;
	}
	.title-print {
		-ms-grid-row: 9;
	}
	.img-plan-1, .img-plan-2,	.img-plan-3, .img-graphic, .img-prepress,	.img-print {
		-ms-grid-column: 1;
		-ms-grid-row: 2;
	}
	.img-plan-2 {
		-ms-grid-row: 3;
	}
	.img-plan-3 {
		-ms-grid-row: 4;
	}
	.img-graphic {
		-ms-grid-row: 6;
	}
	.img-prepress {
		-ms-grid-row: 8;
	}
	.img-print {
		-ms-grid-row: 10;
	}
}

.top-other .wrapper {
	display: flex;
	justify-content: space-around;
}
.top-other a {
	margin: 0 0 20px;
	display: block;
	max-width: 472px;
	width: 40%;
}
.top-other a:hover {
	box-shadow: 0 0 20px 0 #00A1B2;;
}
.top-other .block {
	background: #fff;
	border: 2px solid #00A1B2;
	position: relative;
}
.top-other .img {
	width: 210px;
	margin: 40px auto 80px;
}
.top-other .system-img {
	width: 148px;
}
.top-other .title {
	position: absolute;
	bottom: 0;
	right: 0;
	display: block;
	height: 0;
	color: #fff;
	width: 80%;
	line-height: 60px;
	font-size: 26px;
	font-weight: normal;
	text-align: center;
	border-bottom: 60px solid #00A1B2;
	border-left: 60px solid transparent;
	color: #fff;
	margin: 0;
}
@media screen and (max-width:860px) {
	.top-other .wrapper {
		display: block;
		/*padding: 40px 0;*/
	}
	.top-other a {
		width: 100%;
		margin: 0 auto 40px;
	}
	.top-other a:last-of-type {
		margin-bottom: 0;
	}
	.top-other .img {
		margin: 40px auto 40px;
	}
	.top-other .title {
		font-size: 20px;
		line-height: 40px;
		border-bottom: 40px solid #00A1B2;
		border-left: 40px solid transparent;
	}
}

.top-banner {
	background-color: #fbfaf5;
}
.top-banner .wrapper {
	display: flex;
	justify-content: center;
	padding: 30px;
	margin-top: 30px;
}
.top-banner a {
	text-decoration: none;
	letter-spacing: 0;
}
.top-banner img {
	max-width: 400px;
	border: 1px solid #eee;
}
@media screen and (max-width:860px) {
	.top-banner .wrapper {
		padding: 30px 0;
	}
	.top-banner a {
		width: 100%;
		margin: 0 auto;
	}
	.top-banner img {
		width: 100%;
		margin: 0 auto;
	}
}


/* --------------------------------------
   common
	 -------------------------------------- */
/* -----------title---------------- */
.title-2 {
	margin: 60px 0;
	position: relative;
	display: block;
	border: #00A1B2 solid 4px;
	height: 60px;
	line-height: 60px;
	font-size: 32px;
	font-weight: normal;
	color: #00A1B2;
	text-align: center;
}
.title-2:before,
.title-2:after{
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
}
.title-2:before{
  top: -4px;
  border-style: solid;
  border-color: transparent transparent transparent #00A1B2;
  border-width: 0 0 60px 60px;
}
.title-2:after{
  top: -6px;
	left: -5px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 0 0 61px 61px;
  z-index: 10;
}
.title-3 {
	margin: 60px 0 0 0;
	display: block;
	height: 0;
	color: #fff;
	width: 40%;
	min-width: 360px;
	line-height: 60px;
	font-size: 32px;
	font-weight: normal;
	text-align: center;
	border-bottom: 60px solid #00A1B2;
	border-left: 60px solid transparent;
}
.title-3 span {
	margin-right: 60px;
}
.title-3-block {
	display: flex;
}
.title-3-text {
	font-size: 20px;
	width: 60%;
	margin: 0 0 0 20px;
}
.clients .title-3, .system .title-3, .privacy .title-3 {
	font-size: 20px;
}
@media screen and (min-width:861px) {
	.title-3-text {
		margin-top: 4px;
	}
}
.title-3-block .title-3 {
	margin: 0;
}
.title-4 {
	margin: 40px 0 20px;
	font-size: 20px;
	display: inline-block;
	border-bottom: 5px solid #00A1B2;
}
@media screen and (max-width:1200px) {
	.title-3 {
		font-size: 20px;
	}
}
@media screen and (max-width:860px) {
	.title-2 {
		margin: 20px 0;
	}
	.title-3 {
		margin: 0;
		font-size: 18px;
		width: 50%;
		min-width: 250px;
		line-height: 40px;
		border-left: 40px solid transparent;
		border-bottom: 40px solid #00A1B2;
	}
	.title-3 span {
		margin-right: 40px;
	}
	.title-3-block {
		display: block;
	}
	.title-3-text {
		width: 95%;
		margin-top: 10px;
		font-size: 16px;
	}
	.clients .title-3, .system .title-3, .privacy .title-3 {
		font-size: 16px;
	}
}
@media screen and (max-width:480px) {
	.title-2 {
		font-size: 22px;
	}
	.title-3 {
		width: 60%;
	}
	.title-3-text {
		line-height: 24px;
	}
	.title-4 {
		margin-bottom: 10px;
	}
	.title-3.long span {
		margin: 0;
	}
}
/* ----------- button ---------------- */
.btn {
	overflow: hidden;
	width: 30%;
	height: 60px;
	margin: 60px auto;
}
.btn a {
	position: relative;
	display: block;
	width: 100%;
	border: 2px solid #00A1B2;
	color: #00A1B2;
	font-size: 18px;
	text-align: center;
	line-height: 56px;
}
.btn a:hover {
	background: #00A1B2;
	color: #fff;
}
.btn a:before {        /*白いひし型 */
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	right: 10%;
	width: 2px;
	height: 25px;
	margin-top: -4px;
	background: #00A1B2;
}
.btn a:after {        /*バックグラウンドと同じ色のひし型をずらして「before要素」を隠す */
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 50%;
	right: 10%;
	width: 2px;
	height: 25px;
	margin-top: -21px;
	background: #00A1B2;
}
.btn a:hover:before, .btn a:hover:after {
	background: #fff;
}
@media screen and (max-width:860px) {
	.btn {
		width: 100%;
	}
}

/* -----------block---------------- */
.container {
	margin-top: 140px;
	margin-bottom: 60px;
}
@media screen and (max-width:860px) {
	.container {
		margin-top: 100px;
		margin-bottom: 40px;
	}
}
/* --------------------------------------
	 service
	 -------------------------------------- */
.fadeIn {
	opacity: 0;
	transform : translate(-100%, 0);
	transition : all .5s;
		-moz-transition: all .5s; /* Firefox 4 */
		-webkit-transition: all .5s; /* Safari and Chrome */
		-o-transition: all .5s; /* Opera */
}
.fadeIn-r {
	opacity: 0;
	transform : translate(100%, 0);
	transition : all .5s;
		-moz-transition: all .5s; /* Firefox 4 */
		-webkit-transition: all .5s; /* Safari and Chrome */
		-o-transition: all .5s; /* Opera */
}
.fadeIn-b {
	opacity: 0;
	transform : translate(0, 50px);
	transition : all .5s;
		-moz-transition: all .5s; /* Firefox 4 */
		-webkit-transition: all .5s; /* Safari and Chrome */
		-o-transition: all .5s; /* Opera */
}
.fadeIn.scrollin, .fadeIn-r.scrollin, .fadeIn-b.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

/* ----------- plan ---------------- */

.plan .title-2 {
	border-color: #B65050;
	color: #B65050;
}
.plan .title-2:before {
	border-color: transparent transparent transparent #B65050;
}
.plan-content-1 .title-3 {
	border-bottom: 60px solid #B65050;
}
.plan-content-2 .title-3 {
	border-bottom: 60px solid #4490B3;
}
.plan-content-3 .title-3 {
	border-bottom: 60px solid #648957;
}
@media screen and (max-width:860px) {
	.plan-content-1 .title-3 {
		border-bottom: 40px solid #B65050;
	}
	.plan-content-2 .title-3 {
		border-bottom: 40px solid #4490B3;
	}
	.plan-content-3 .title-3 {
		border-bottom: 40px solid #648957;
	}
}

.plan .content-wrapper {
	margin: 40px 0 60px;
	display: flex;
	justify-content: space-between;
}
.plan-content-2 .content-wrapper {
	flex-direction: row-reverse;
}
.plan-img {
	min-width: 360px;
	width: 39.3%;
}
.plan-text .copy {
	font-size: 32px;
	line-height: 36px;
	padding-bottom: 10px;
	margin-right: -200%;
	padding-right: 200%;
	border-bottom: #707070 solid 2px;
}
.plan-content-2 .plan-text .copy {
	margin-right: 0;
	padding-right: 0;
	text-align: right;
	margin-left: -200%;
	padding-left: 200%;
}
@media screen and (min-width:861px) {
	.plan-text {
		width: 55%;
		margin-left: 20px;
	}
	.plan-content-2 .plan-text {
		margin: 0 20px 0 0;
	}
}
@media screen and (max-width:860px) {
	.plan .content-wrapper {
		margin: 20px 0 40px;
		display: block;
	}
	.plan-img {
		max-width: 437px;
		min-width: 0;
		width: 100%;
		margin: 0 auto;
	}
	.plan-text {
		width: 100%;
	}
	.plan-text .copy {
		font-size: 20px;
	}
}
.application .title-4 {
	font-size: 32px;
	font-weight: normal;
	margin: 0;
	display: inline-block;
	border-bottom: 5px solid #4490B3;
	line-height: 38px;
}
.application-bg {
	background: linear-gradient(to right, #fff 30%, #B4D2E1);
	margin:60px -200% 0;
	padding:60px 200%;
}
.application .text {
	margin: 40px 0;
}
.application-img {
	width: 45%;
}
@media screen and (max-width:860px) {
	.application-bg {
		padding-top: 40px;
		padding-bottom: 40px;
		margin-top: 40px;
	}
	.application .title-4 {
		font-size: 20px;
	}
	.application-img {
		width: 100%;
	}
}

/* -----------graphic---------------- */

.graphic .title-2 {
	border-color: #D6A546;
	color: #D6A546;
}
.graphic .title-2:before {
	border-color: transparent transparent transparent #D6A546;
}
.graphic .title-3 {
	border-bottom: 60px solid #D6A546;
}
@media screen and (max-width:860px) {
	.graphic .title-3 {
		border-bottom: 40px solid #D6A546;
	}
}

.img-box-wrapper h4 {
	border-bottom: 5px solid #D6A546;
}


.img-box-wrapper {
	display: flex;
	justify-content: space-between;
	margin: 20px 0;
}
.img-box-wrapper .item {
	width: 46%;
}
.img-box-wrapper .img-box img {
	width: 100%;
	cursor: pointer;
}
.img-box-wrapper .img-box-a{
	display: none;
}
.img-box-wrapper .img-box {
	position: relative;
}
.img-box-wrapper .img-box .massage {
	display: block;
	position: absolute;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	top: -25px;
	right: -25px;
	text-align: center;
	background: #00A1B2;
	color: #fff;
	line-height: 1.2;
	padding-top: 15px;
}
.img-box-wrapper .gousei .img-box img {
	cursor: none;
}
.img-box-wrapper .gousei .img-box{
	width: 75%;
}
.img-box-wrapper .gousei .gousei-a {
	margin-left: 25%;
}
@media screen and (min-width:861px) {
	.img-box-wrapper .content:nth-of-type(1) {
		margin-right: 4%;
	}
	.img-box-wrapper .content:nth-of-type(2) {
		margin-left: 4%;
	}
}

@media screen and (max-width:860px) {
	.img-box-wrapper {
		display: block;
		margin: 0;
	}
	.img-box-wrapper .item {
		width: 100%;
		margin: 20px 0;
	}
	.img-box-wrapper .img-box .massage {
		top: -15px;
		right: -15px;
	}
}
@media screen and (max-width:480px) {
	.img-box-wrapper .item {
		margin: 0;
	}
}
.img-box-before {
	width: 100%;
	height: auto;
	background: #B3D8D8;
	color: #3A5D61;
	text-align: center;
	line-height: 35px;
}
.img-box-after {
	width: 100%;
	height: auto;
	background: #3A5D61;
	color: #fff;
	text-align: center;
	line-height: 35px;
}

.degital-archive .title-4 {
	font-size: 32px;
	font-weight: normal;
	margin: 0;
	display: inline-block;
	border-bottom: 5px solid #D6A546;
	line-height: 38px;
}
.degital-archive-bg {
	background: linear-gradient(to right, #fff 30%, #D6A546);
	margin:60px -200% 0;
	padding:60px 200%;
}
@media screen and (min-width:861px) {
	.degital-archive {
		position: relative;
		height: 650px;
	}
	.degital-archive .text {
		position: absolute;
		top: 100px;
		right: 0;
		width: 45%;
	}
	.degital-archive .img-3 {
		position: absolute;
		width: 45%;
		top: 100px;
		left: 0;
		z-index: 3;
		box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	}
	.degital-archive .img-2 {
		position: absolute;
		width: 28%;
		top: 273px;
		right: 0;
		z-index: 2;
		box-shadow: 0 0 20px rgba(0, 0, 0, .2);
	}
	.degital-archive .img-1 {
		position: absolute;
		width: 25%;
		top: 450px;
		right: 250px;
		z-index: 3;
		box-shadow: 0 0 20px rgba(0, 0, 0, .2);
	}
	.degital-archive .arrow-bg {
		position: absolute;
		top: 380px;
		width: 100%;
		height: 0;
		margin-right: -200%;
		padding-right: 200%;
		border-bottom: 240px solid #D6A546;
		border-left: 240px solid transparent;
		z-index: 1;
	}
}

@media screen and (max-width:1040px) and (min-width:860px) {
	.degital-archive {
		height: 500px;
	}
	.degital-archive .img-1 {
		right: 200px;
	}
}
@media screen and (max-width:1040px) {
	.degital-archive .img-1 {
		top: 350px;
	}
	.degital-archive .arrow-bg {
		top: 280px;
	}
}

@media screen and (max-width:860px) {
	.degital-archive-bg {
		padding-top: 40px;
		padding-bottom: 40px;
		margin-top: 40px;
	}
	.degital-archive .title-4 {
		font-size: 22px;
	}
	.degital-archive .text {
		margin: 40px 0;
	}
	.degital-archive .img-1 {
		width: 47%;
	}
	.degital-archive .img-2 {
		width: 47%;
		float: right;
	}
	.degital-archive .img-3 {
		clear: both;
		width: 100%;
	}
	.degital-archive .arrow {
		margin: 10px auto;
	}
}

/* ----------- prepress ---------------- */
.prepress .title-2 {
	border-color: #C06234;
	color: #C06234;
}
.prepress .title-2:before {
	border-color: transparent transparent transparent #C06234;
}
.prepress .title-3 {
	border-bottom: 60px solid #C06234;
	margin: 0;
}
.prepress .title-4 {
	display: block;
	border-bottom: 2px solid #C06234;
	font-size: 32px;
	line-height: 36px;
}
@media screen and (max-width:860px) {
	.prepress .title-3 {
		border-bottom: 40px solid #C06234;
	}
	.prepress .title-4 {
		font-size: 20px;
		line-height: 26px;
	}
}

.prepress .item-block, .printing .item-block {
	margin: 40px 0 60px;
	display: flex;
	justify-content: space-between;
}
.prepress .item-block-re, .printing .item-block {
	flex-direction: row-reverse;
}
.prepress-img, .printing-img {
	width: 39.3%;
	min-width: 360px;
}
.prepress-text .copy, .printing-text .copy {
	font-size: 32px;
	padding-bottom: 10px;
	line-height: 36px;
}
.item-block-re .prepress-text .copy, .item-block-re .printing-text .copy {
	margin-right: 0;
}
@media screen and (min-width:861px) {
	.prepress-text {
		width: 55%;
		margin-left: 20px;
	}
	.item-block-re .prepress-text, .printing-text {
		width: 55%;
		margin: 0 20px 0 0;
	}
}
@media screen and (max-width:860px) {
	.prepress .item-block, .printing .item-block {
		margin: 20px 0 40px;
		display: block;
	}
	.prepress-img, .printing-img {
		max-width: 437px;
		min-width: 0;
		width: 100%;
		margin: 0 auto;
	}
	.prepress-text, .printing-text {
		width: 100%;
	}
	.prepress-text .copy, .printing-text .copy {
		font-size: 20px;
		line-height: 26px;
	}
}
/* ----------- printing ---------------- */
.printing .title-2 {
	border-color: #886E97;
	color: #886E97;
}
.printing .title-2:before {
	border-color: transparent transparent transparent #886E97;
}
.printing .title-3 {
	border-bottom: 60px solid #886E97;
}
.printing .title-4 {
	border-bottom: 2px solid #886E97;
	display: block;
	font-size: 32px;
	line-height: 36px;
}
@media screen and (max-width:860px) {
	.printing .title-3 {
		border-bottom: 40px solid #886E97;
	}
	.printing .title-4 {
		font-size: 20px;
	}
}
/* --------------------------------------
	 company
	 -------------------------------------- */
.company .title-2 {
	border-color: #ADA060;
	color: #ADA060;
}
.company .title-2:before {
	border-color: transparent transparent transparent #ADA060;
}
.company .title-3 {
	border-bottom: 60px solid #ADA060;
}
.company .title-4 {
	border-bottom: 5px solid #ADA060;
}
@media screen and (max-width:860px) {
	.company .title-3 {
		border-bottom: 40px solid #ADA060;
	}
}

/* ----------- greeting ---------------- */
.greeting .copy {
	font-size: 26px;
	border-bottom: #707070 solid 2px;
	margin: 30px auto;
	padding-bottom: 10px;
}
.greeting .text {
	margin-bottom: 60px;
}
.greeting .item-block {
	background: #EFECDF;
	padding-bottom: 20px;
	transform: skewX(-30deg);
	margin: 40px 0;
}
.greeting .item {
	transform: skewX(30deg);
	margin-right: 7%;
}
.greeting .name {
	text-align: right;
	font-size: 20px;
	font-weight: bold;
}
@media screen and (max-width:860px) {
	.greeting .text {
		margin-bottom: 40px;
	}
	.greeting .item-block{
		margin: 40px 0;
	}
}
/* ----------- outline ---------------- */
.outline dl {
	margin: 40px 0;
	line-height: 50px;
}
.outline dl dt {
	float: left;
	width: 30%;
	background: #EFECDF;
	padding-left: 30px;
}
.outline dl dd {
	margin-left: 250px;
}
.outline dl dt, .outline dl dd {
	margin-bottom: 10px;
}
.wrapper-flex {
	display: flex;
	justify-content: space-between;
}
.pd-system, .clients {
	width: 45%;
}
@media screen and (max-width: 860px) {
	.outline dl {
		margin: 20px 0 40px;
	}
	.outline dl dd {
		margin-left: 30px;
	}
	.wrapper-flex {
		display: block;
	}
	.pd-system, .clients {
		width: 100%;
		margin-top: 40px;
	}
	.pd-system .title-4, .clients .title-4 {
		margin-top: 20px;
	}
}
@media screen and (min-width:861px) {
	.outline dl dt {
		max-width: 216px;
	}
	.pd-system .title-3, .clients .title-3 {
		width: 80%;
	}
}
@media screen and (max-width:480px) {
	.outline dl {
		line-height: 30px;
	}
	.outline dl dt {
		float: none;
		width: 100%;
	}
	.outline dl dd {
		margin-left: 10%;
	}
}
.pd-system .title-4 {
	display: block;
	background: #EFECDF;
	line-height: 50px;
	padding-left: 30px;
	border-bottom: none;
}
.pd-system dl dt {
	float: left;
	width: 160px;
	border-top: 1px #787878 solid;
}
.pd-system dl dt:last-of-type {
	width: 100%;
	border-bottom: 1px #787878 solid;
}
.pd-system dl dd {
	width: calc(100% - 160px);
	margin-left: 160px;
	border-bottom: 1px #787878 solid;
}
.pd-system dl .lastdd {
	border-bottom: none;
}
.pd-system dl .firstdd {
	border-top: 1px #787878 solid;
}
.clients .title-3 .small {
	font-size: 14px;
	margin: 0;
}
.clients .title-4 {
	display: block;
	font-weight: normal;
	font-size: 20px;
	border-bottom: none;
}
.clients ul {
	margin-left: 20px;
}
/* ----------- access ---------------- */
.access .text{
	margin: 20px 0 40px;
}
@media screen and (max-width:860px) {
	.access .text {
		margin: 20px 0 40px;
	}
}

/* --------------------------------------
	 system
	 -------------------------------------- */
.system .content {
	margin-bottom: 80px;
}
.system .title-4 {
	font-size: 32px;
	border-bottom: 2px solid #00A1B2;
	display: block;
	line-height: 36px;
}
h5 {
	font-size: 20px;
	margin: 20px 0;
}
.system .wrapper-flex .item-block {
	width: 50%;
}
.system dl {
	display: flex;
	flex-wrap: wrap;
	line-height: 40px;
}
.system dt {
	width: 190px;
	background: #CCECF0;
	padding-left: 20px;
}
.system dd {
	width: calc(100% - 190px);
	margin-left: 0;
	padding-left: 10px;
}
.system dt, .system dd {
	margin-bottom: 5px;
}
.font-s {
	font-size: 14px;
}
.system img {
	margin-right: 20px;
	width: 230px;
}
@media screen and (max-width:860px) {
	.system .title-4 {
		font-size: 20px;
		line-height: 26px;
	}
	.system .wrapper-flex .item-block {
		width: 100%;
	}
}
@media screen and (max-width:480px) {
	.system dl {
		display: block;
	}
	.system dt, .system dd {
		width: 100%;
	}
	.system img {
		width: 100%;
	}
}
/* --------------------------------------
	 news
	 -------------------------------------- */
/* ----------- news-list ---------------- */
.list-block {
	padding: 0 40px;
}
.screen-reader-text {
	display: none;
}
.list-block dt {
	float: left;
}
.list-block dd {
	margin: 0 0 10px 150px;
}
.list-block dl {
	border-bottom: 1px solid #787878;
	margin-bottom: 40px;
}
.list-block a {
	color: #333;
}
.list-block .nav-links {
	text-align: center;
}
.list-block .page-numbers {
	padding: 5px 10px;
	margin: 0 2px;
}
.list-block .current {
	background: #00A1B2;
	color: #fff;
}
@media screen and (max-width:860px) {
	.list-block {
		padding: 0;
	}
	.list-block dt {
		float: none;
	}
	.list-block dd {
		margin: 0 0 20px 0px;
	}
	.list-block dl {
		margin-bottom: 20px;
	}
}

/* ----------- news-detail ---------------- */
.title-3-2 {
	font-size: 24px;
	color: #00A1B2;
	padding-bottom: 10px;
	border-bottom: 2px solid #00A1B2;
}
.detail-block {
	margin: 0 auto 60px;
}
.news-detail .date {
	font-size: 18px;
	color: #00A1B2;
}
.news-detail .content {
	margin: 40px auto 0;
}
/* --------------------------------------
   form
	 -------------------------------------- */
.form .content {
	max-width: 820px;
	width: 100%;
	margin: 0 auto;
}
.form .content .text {
	text-align: center;
}
.form .notice {
	color: red;
}
.form dl {
	line-height: 50px;
	margin: 0;
}
.form label {
	display: flex;
	flex-wrap: wrap;
}
.form label dt {
	width: 200px;
	height: 50px;
	background: #CCECF0;
	padding-left: 10px;
	margin-bottom: 20px;
}
.form label dd {
	width: 600px;
	margin-left: 20px;
	margin-bottom: 20px;
}
.form dd select {
	padding: 10px;
	height: 50px;
}
.form dd input {
	width: 100%;
	padding: 10px;
}
.form dd textarea {
	width: 100%;
	height: 200px;
	padding: 10px;
}
.form .privacy {
	text-align: center;
}
.form .privacy-box {
	border: 1px solid #787878;
}
.form .privacy-box-ttl {
	font-weight: bold;
	padding: 10px 0;
}
.form .privacy-box-text {
	font-size: 14px;
	text-align: left;
	padding: 0 30px 10px 10px;
	height: 200px;
	overflow-y: scroll;
}
.form .privacy-box-text li {
	margin: 10px;
}
.form .privacy-box-text dl {
	line-height: 26px;
	display: flex;
	flex-wrap: wrap;
}
.form .privacy-box-text dt, .form .privacy-box-text dd {
	padding-left: 5px;
	border: 1px solid #000;
}
.form .privacy-box-text dt:nth-of-type(2), .form .privacy-box-text dd:nth-of-type(2) {
	border-top: none;
}
.form .privacy-box-text dt {
	width: 20%;
}
.form .privacy-box-text dd {
	width: 80%;
	margin: 0;
	border-left: none;
}
@media screen and (max-width:860px) {
	.form .privacy-box-ttl {
		font-size: 14px;
	}
	.form .privacy-box-text {
		padding: 0 10px 10px 0;
	}
	.form .privacy-box-text li {
		margin: 10px 0;
	}
}
.form .btn-area {
	display: flex;
	justify-content: center;
}
.form-btn {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
	display: block;
	width: 250px;
	height: 60px;
	line-height: 60px;
	margin: 40px 20px;
	background: #00A1B2;
	color: #fff;
	font-size: 18px;
	transition: all .3s;
		-moz-transition: all .3s; /* Firefox 4 */
		-webkit-transition: all .3s; /* Safari and Chrome */
		-o-transition: all .3s; /* Opera */
}
.form-btn-2 {
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	display: block;
	width: 250px;
	height: 60px;
	line-height: 60px;
	margin: 40px 20px;
	border: 2px solid #00A1B2;
	background: #fff;
	color: #00A1B2;
	font-size: 18px;
	transition: all .3s;
		-moz-transition: all .3s; /* Firefox 4 */
		-webkit-transition: all .3s; /* Safari and Chrome */
		-o-transition: all .3s; /* Opera */
}
.form-btn:hover {
	opacity: .8;
}
.form-btn-2:hover {
	opacity: 1;
	background: #00A1B2;
	color: #fff;
}
@media screen and (max-width:860px) {
	.form label dt {
		width: 100%;
		margin-bottom: 10px;
	}
	.form label dd {
		width: 100%;
		margin: 0 0 10px;
	}
}
@media screen and (max-width:480px) {
	.form .btn-area {
		display: block;
	}
	.form-btn {
		width: 100%;
		margin: 20px 0;
	}
}
/* --------------------------------------
   privacy
	 -------------------------------------- */
.privacy .title-4 {
	font-size: 16px;
	border-bottom: 3px solid #00A1B2;
	margin: 0;
}
.privacy .shomei {
	text-align: right;
	margin-top: 40px;
}
.privacy table {
	border-collapse: collapse;
}
.privacy th, .privacy td {
	border: 1px solid #333;
	padding: 10px;
}
.privacy th {
	background: #eee;
}
.privacy .table-2 {
	margin-bottom: 16px;
}
@media screen and (max-width:860px) {
	.privacy .title-3 {
		width: 80%;
	}
	.privacy-about {
		margin: 40px 0;
	}
}
@media screen and (max-width:480px) {
	.privacy tr td:nth-child(1) {
		width: 40%;
	}
}
</pre></body></html>