@charset "utf-8";

/* ========================================
    リセットcss
========================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: ''; content: none;}
input, textarea,{margin: 0; padding: 0;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;}
caption, th{text-align: left;}
a:focus {outline:none;}


/* ========================================
    全体設定
========================================= */
:root{
	--primary:#007FC5;
	--light-blue:rgba(0,127,197,0.1);
	--blue-link:#007ad2;
}
*{
	box-sizing: inherit;
}
html{
	font-size: 62.5%;
	line-height: normal;
	font-family: "Century Gothic",Arial,'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	box-sizing: border-box;
}
a {
	text-decoration:none;
	color: #000;
}
a:hover {
	opacity: 0.7;
}
p {
	font-size: 16px;
}
/* ========================================
    スマホ一応対応
========================================= */
@media print, screen and (max-width:739px){
    html{
        display: block;
        margin: 8px;
    }
    body{
    display: block;
    padding: 0px;
    width: 1200px;
    height: auto;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    }
}

/* ========================================
    ヘッダー
========================================= */
#header {
        position: fixed;
    z-index: 9;
    background: #fff;
    width: 100%;
}
#header .hdr_pc {
	margin:0 auto;
	display: flex;
	justify-content: space-between;
    align-items: center;
}
#header .hdr_pc .hdr_left {
    padding: 24px 0 26px;
}
#header .hdr_pc .hdr_right .menu {
	display: flex;
}
#header .hdr_pc .hdr_right .menu li {
	text-align: center;
	position: relative;
}
#header .hdr_pc .hdr_right .menu li a,
#header .hdr_pc .hdr_right .menu li p {
	color: var(--primary);
    font-size: 16px;
    font-weight: bold;
    display: block;
    padding: 22px 5px 21px;
    min-width: 105px;
}
#header .hdr_pc .hdr_right .menu li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

#header .hdr_pc .hdr_right .menu li a:hover::after {
  transform: scale(1, 1);
}

#header .hdr_pc .hdr_right .menu li ul {
	top: 100%;
	left: 0;
	position: absolute;
	z-index: 9999;
	visibility: hidden;
	perspective: 400px;
}
#header .hdr_pc .hdr_right .menu li:hover ul {
	visibility: visible;
}
#dropdown-menu {
    background: #fff;

}
#dropdown-menu li {
    width: 200px;
}


/* ========================================
    メイン画像
========================================= */
.keyimg img {
    width: 100%;
    width: 100%;
    height: calc(100vh - 84px);
    text-align: center;
    padding-top: 84px;
}


/* ========================================
    お知らせ
========================================= */
#notice, #product_whitebg, #recruit, #contact_form {
	padding: 80px 0;
}
#notice a {
    color: var(--blue-link);
}
h2 {
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	color: var(--primary);
    padding-bottom: 30px;
}
.description {
	text-align: center;
	letter-spacing: 1px;
}
.newsDl {
    display: flex;
    border-bottom: 1px dotted;
    padding: 20px 0;
}
.news_content {
    border: 1px solid #cccccc;
    height: 400px;
    padding: 20px 80px;
    overflow-y: scroll;
}
.news_content dt, .news_content dd {
	font-size: 16px;
}
.news_content dd b {
	font-weight: bold;
}
.news_content dt {
	min-width: 160px;
}
.link {
	font-size: 16px;
	color: var(--blue-link);
}


/* ========================================
    製品
========================================= */
#product {
    background-color: rgba(0,127,197,0.1);
    padding: 80px 0;
    
}

h3 {
	font-size: 18px;
	font-weight: bold;
	color: var(--blue-link);
	padding-bottom: 10px;
}
#product .single-product .product-img img:hover {
    opacity: 0.7;
}
#product .product-txt {
    padding: 30px 5px;
    text-align: center;
    background: #fff;
}
#product .product-img {
    height: 300px;
    background: #fff;
}
#product .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#product_whitebg .product-txt {
	padding: 30px 15px;
	background: rgba(0,127,197,0.1);
    height: 193px;
}
#product_whitebg .product-txt h3 {
    text-align: center;
}
#product_whitebg .product-txt p {
    text-align: left;
}
#product_whitebg .product-img {
	height: 250px;
    background: var(--primary);
}
#product_whitebg .product-img img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail {
    background: #fff;
    display: block;
    padding: 20px 20px;
    margin: 40px auto 80px;
    width: 220px;
    font-size: 18px;
    font-weight: bold;
    color: var(--blue-link);
    text-align: center;
    border: 1px solid var(--blue-link);
}


/*--------------------------------------------
		Footer / フッター
--------------------------------------------*/

#footer {
	width: 100%;
    background-color: #f5f5f5;
}
#footer .ftr01 {
    padding: 60px 0;
}
#footer .ftr_pc {
	padding: 60px 0;
	margin:0 auto;
    display: flex;
    justify-content: space-between;
}
#footer .ftr_logo {
    margin-bottom: 40px;
}
#footer  .ftr_right ul {
    display: flex;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: bold;
}
#footer  .ftr_right ul li{
	margin-right: 30px;
}
#footer  .ftr_right ul li:last-child{
	margin-right: 0;
}
#footer  .ftr_right ul li a{
	font-weight: bold;
	display: block;
}
#footer  .ftr_right ul li a:hover {
	color: var(--primary);
}
#footer  .ftr_right ul.snsArea {
    justify-content: flex-end;
    margin-bottom: 0;
}
#footer  .ftr_right ul.snsArea li {
    margin-right: 20px;
}
#footer  .ftr_right ul.snsArea li:last-child {
    margin: 0;
}
#footer  .ftr_right ul.snsArea li a{
    padding: 0;
}
#footer  .ftr_right ul.snsArea img {
    width: 35px;
}
#footer #copyright {
    font-size: 13px;
    text-align: center;
    padding: 20px 0;
    background-color: #004999;
    color: #fff;
}
#footer .ftr_access {
	font-size: 16px;
}
#footer #copyright a, #eco a {
	text-decoration: underline;
}




/*--------------------------------------------
        会社概要
--------------------------------------------*/
.ttl_bg {
    background-color: var(--primary);
    height: 260px !important;
    width: 100%;
    height: calc(100vh - 84px);
    text-align: center;
    padding-top: 84px;
    display:flex;
}
.ttl_bg h2 {
    font-size: 40px;
    color: #fff;
    margin: auto;
    padding-bottom: 0;
    letter-spacing: 3px;
}
.left_ttl {
    font-size: 30px;
    color: var(--primary);
    font-weight: bold;
    padding-bottom: 30px;
}
.left_ttl span {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    display: block;
}
table {
    width: 100%;
}
table th {
    background-color: var(--light-blue);
    width: 22%;
    padding: 14px 0 14px 0;
    border-top: 1px dotted #7f7e7e;
    letter-spacing: 2px;
    font-size: 16px;
    
    vertical-align: middle;
    text-align: center;
}
tr:last-child th,td{
    border-bottom: 1px dotted #7f7e7e;
}
table td {
    padding: 14px 0 14px 60px;
    border-top: 1px dotted #7f7e7e;
    font-size: 16px;
    
    vertical-align: top;
}
#greybg {
    background: #f5f5f5;
    padding: 80px 0;
}
.margin-btt {
    margin-bottom: 24px;
}
.sngl {
    background: #fff;
}
.primary-color {
    color: var(--primary);
    font-weight: bold;
}
#greeting {
    font-size: 16px;
    padding-top: 80px;
}
.signature {
    font-size: 22px;
    font-family: HG行書体;
    font-weight: bold;
    color: #333;
}
.border-btt {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 54px;
}
.timeline {
    list-style: none;
    /*padding-top: 54px;*/
}
.timeline > li {
    overflow: hidden;
    margin: 0;
    position: relative;
}
.timeline p {
    margin-top: 40px;
}
.timeline-date {
    width: 170px;
    float: left;
    margin-top: 20px;
}
.timeline-content {
    float: left;
    border-left: 3px #e5e5d1 solid;
    padding-left: 80px;
}
.timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--blue-link);
    position: absolute;
    left: 165px;
    top: 48px;
    border-radius: 100%;
}
.timeline p {
    margin-top: 40px;
}
.text-center {
    text-align: center;
}
#achievements {
    table-layout: fixed;
}
#achievements th {
    background-color: var(--light-blue);
    width: 22%;
    padding: 14px 0 14px 32px;
    border-top: 1px dotted #7f7e7e;
    letter-spacing: 2px;
    font-size: 16px;
    vertical-align: middle;
    text-align: left;
}
#achievements td {
    padding: 14px 0 14px 32px;
    border-top: 1px dotted #7f7e7e;
    font-size: 16px;
    vertical-align: top;
}


/*営業品目*/
#message {
    padding: 60px 0;
    text-align: center;
}
#message .ttl {
    font-size: 3rem;
    line-height: 1.5;
    font-weight: bold;
    color: var(--blue-link);
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 20px;
    letter-spacing: 2px;
}
#message .ttl span {
    color: #E60012;
    font-size: 3rem;
    line-height: 1.5;
    font-weight: bold;
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 20px;
    letter-spacing: 2px;
}
#message .ttl:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  background: #999;
}
#form h3, #printing h3, #roll-paper h3, #supplies h3, .ondemand h3 {
    margin-bottom: 30px;
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1.2px;
}
.ondemand h3 {
    height: 82px;
}
#form h3 span, #printing h3 span, #roll-paper h3 span, #supplies h3 span {
    display: block;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: normal;
    color: #3282b8;
    margin-top: -4px;
}

#form .info .tArea,
#printing .info .tArea{
    padding: 7%;
    background-color: #fff;
    font-size: 16px;
    margin-bottom: 50px;
    height: 850px;
}
.ondemand .info .tArea {
    padding: 7%;
    background-color: #fff;
    font-size: 16px;
    margin-bottom: 50px;
    height: 1000px;
}
.imgArea {
    text-align: center;
    margin-bottom: 20px;
}

#printing {
    padding-top:0;
}

#roll-paper,
#supplies{
    padding-top: 0px;
}

#roll-paper .info .tArea,
#supplies .info .tArea{
    padding: 7%;
    background-color: #fff;
    font-size: 16px;
    height: 850px;
}
/*プライバシーポリシー*/
#privacy{
    padding-top: 80px;
}
#privacy h3 {
    line-height: 1.4;
    font-weight: bold;
    position: relative;
    background-color: #f2f2f2;
    margin-bottom: 20px;
    padding: 8px 10px 6px;
    font-size: 20px;
    color: #111;
}
#privacy h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 4.5em;
    border-bottom: 2px solid #c03;
    left: 0;
    bottom: 0;
    z-index: 2;
}
#privacy p {
    margin-bottom: 40px;
}
#privacy .privacy_sign {
    text-align: right;
}
#sdgs {
    padding: 80px 0 0;
}
#sdgs .sdgs_head {
    text-align: center;
    padding-bottom: 80px;
}
#sdgs h3 {
    font-size: 30px;
}
#sdgs h4 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
#sdgs .serif {
    font-size: 30px;
    font-family: serif;
    padding-top: 40px;
}
#sdgs .sdgs_body {
    padding-bottom: 80px;
}
#sdgs .sdgs_body img {
    padding: 20px 0;
}
#sdgs .sdgs_inner {
    background: #f5f5f5;
    padding: 40px;
    height: 100%;
}
#sdgs .sdgs_body_col {
    margin-bottom: 40px;
}
