@charset "UTF-8";
/* CSS Document */


/* 写真上の飛び出すメニュー ここから */
div#main_img p.txt11 {   /*両面印刷 1番目*/
 position: absolute;
 bottom: 5px;
 left: 200px;
 display:flex;
 align-items: center;
 justify-content: center;
 width: 200px;
 height: 80px;
 background-color: #49597e;
 text-align: center;
 color: #FEFEFE;
 font-size: 1em;
}

div#main_img p.txt12 {   /*連続・真空・捺染とは 2番目*/
 position: absolute;
 bottom: 5px;
 left: 400px;
 display:flex;
 align-items: center;
 justify-content: center;
 width: 200px;
 height: 80px;
 background-color: #49597e;
 text-align: center;
 color: #FEFEFE;
 font-size: 1em;
}

div#main_img p.txt13 {   /*ご依頼後の流れ 3番目*/
 position: absolute;
 bottom: 5px;
 left: 600px;
 display:flex;
 align-items: center;
 justify-content: center;
 width: 200px;
 height: 80px;
 background-color: #49597e;
 text-align: center;
 color: #FEFEFE;
 font-size: 1em;
}

div#main_img p.txt14 {   /*会社概要 4番目*/
 position: absolute;
 bottom: 5px;
 left: 800px;
 display:flex;
 align-items: center;
 justify-content: center;
 width: 200px;
 height: 80px;
 background-color: #49597e;
 text-align: center;
 color: #FEFEFE;
 font-size: 1em;
}

div#main_img p.txt15 {   /*メール 5番目*/
 position: absolute;
 bottom: 5px;
 left: 1000px;
 display:flex;
 align-items: center;
 justify-content: center;
 width: 200px;
 height: 80px;
 background-color: #49597e;
 text-align: center;
 color: #FEFEFE;
 font-size: 1em;
}
/* 写真上の飛び出すメニュー ここまで */

/* ナビメニュー マウスオーバー ここから */
/* まずは見た目 */
.gnavi__lists {
    display: flex;
    list-style-type: none!important;/*ポチ消す*/
}
.gnavi__list {
    width: 20%;
    height: 60px;
    background-color: #dde5ea;
    position: relative;
    transition: all .3s;
}

.gnavi__list:hover {
    background-color: #8bbde1;
}
.gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}
.gnavi__list:hover::before {
    background-color: #8bbde1;
}
.gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #1b4059;
    font-size: 15px;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
}
.gnavi__list:hover a {
    color: #fff;
}
/* まずは見た目　end */

/* ドロップダウン */
.dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: static;
    top: 60px;
    left: 0;
    list-style-type: none!important;/*ポチ消す*/
}
.gnavi__list:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
    background-color: #689abe;
    height: 60px;
    transition: all .3s;
    position: relative;
}
.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #3492d1;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
    background-color: #003558;
}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
}
/* ドロップダウン　end */
/* ナビメニュー マウスオーバー */



/* フッター nav */
nav#footer {
 margin: 0 auto;
 padding: 30px 0;
 background-color: #9181a0;
}

nav#footer table.footer {
 margin: auto;
}

nav#footer table.footer td {
 padding: 6px 20px;
 text-align: left;
 vertical-align:top;
 color: #FEFEFE;
 font-size: 85%;
 line-height: 2em;
 background-color: #9181a0;
 border-left: solid 2px #DDDDDD;
}

table.footer td.line {
 border-right: solid 2px #DDDDDD;
}

table.footer td p {
 line-height:1.4;
}

div#copy {
 text-align: center;
 font-size: 80%;
}

/* フッターのリンク設定 */
nav#footer a:link {
 color:#FEFEFE;
 text-decoration:none;
}

nav#footer a:visited {
 color:#EEEEEE;
 text-decoration:none;
}

nav#footer a:hover {
 color:#936eb2;
 font-weight: normal;
}
/* フッターのリンク設定　ここまで */
/* フッター nav　終 */
