@charset "UTF-8";

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --font-size-xxl: 220%;
    --font-size-xl: 200%;
    --font-size-l: 180%;
    --font-size-m: 150%;
    --font-size-s: 120%;
    --font-size-ss: 70%;
    --font-size-sss: 40%;
    --c-main: #081b76;
    --c-main-light: #153397;
    --c-main-secound: #0444ce;
    --c-secound: #000;
    --c-text: #191d29;
    --c-muted: #747988;
    --c-border: #dfe3eb;
    --c-yellow: #f3c914;
    --c-white: #fff;
    --c-subtext: #999;
    --c-text-light: #fff;
    --c-red: #bc1307;
    --bg-gray: #ddd;
    --mb-section: 80px;
    --mb-container: 60px;
    --mb-case: 30px;
    --mb-pack: 20px;
    --mb-item: 15px;
    --radius-s: 4px;
    --radius-m: 8px;
    --shadow-soft: 0 8px 24px rgba(8, 27, 118, .08);
    --box-width: 1200px;
}

/* ==========================================================================
   Base Layout
   ========================================================================== */
body {
    color: var(--c-text);
    background: #fff;
}
#wrapper {
    min-height: 100%;
}
.box,
.box_full {
    width: var(--box-width);
    min-width: var(--box-width);
    margin: 0 auto;
}
.sp {
    display: none;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* ==========================================================================
   Header
   ========================================================================== */
#htop {
    height: 28px;
    padding: 4px 0;
    background: var(--c-main);
}
#htop h1 {
    color: #fff;
    font-size: 11px;
    font-weight: 500;
}
#h_box {
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#h_left img {
    width: 180px;
}
#h_right {
    margin-left: auto;
}
.header-links {
    display: flex;
    align-items: center;
    gap: 50px;
}
.utility-nav {
    display: flex;
    align-items: center;
    gap: 29px;
}
.utility-nav a {
    position: relative;
    color: var(--c-main);
    display: block;
    min-width: 54px;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    transition: transform .25s ease, opacity .25s ease;
}
.utility-nav a:hover {
    opacity: 1;
    transform: translateY(-3px);
}
.utility-nav img {
    display: block;
    width: 25px;
    height: 25px;
    margin: 0 auto 5px;
    transition: transform .25s ease;
}
.utility-nav a:hover img {
    transform: scale(1.1);
}
.header-message {
    color: var(--c-main);
    font-size: 13px;
    line-height: 1.7;
    font-weight: bold;
}
.header-message span {
	display: block;
	font-size: 160%;
	color: #333;
}

/* Header Contact Button */
.contact-btn {
    position: relative;
    overflow: hidden;
    height: 48px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 30px;
    color: #fff !important;
    background: var(--c-main);
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(8, 27, 118, .18);
    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.contact-btn::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -42%;
    width: 30%;
    height: 250%;
    background: rgba(255, 255, 255, .26);
    transform: rotate(24deg);
    transition: left .48s ease;
}
.contact-btn:hover {
    opacity: 1;
    background: var(--c-main-light);
    box-shadow: 0 10px 22px rgba(8, 27, 118, .3);
    transform: translateY(-2px);
}
.contact-btn:hover::after {
    left: 112%;
}
.contact-btn:active {
    box-shadow: 0 3px 9px rgba(8, 27, 118, .2);
    transform: translateY(0);
}
.contact-btn img {
    position: relative;
    z-index: 1;
    width: 21px;
    height: 21px;
}
.contact-btn:focus-visible,
#page_index .link-grid a:focus-visible,
#mainNav li a:focus-visible,
.utility-nav a:focus-visible {
    outline: 3px solid #efc620;
    outline-offset: 3px;
}

/* Global Navigation */
#mainNav {
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    background: #fff;
}
#mainNav ul {
    display: flex;
    justify-content: center;
    height: 60px;
    align-items: center;
}
#mainNav li {
    border-left: 1px solid var(--c-border);
}
#mainNav li:last-child {
    border-right: 1px solid var(--c-border);
}
#mainNav li a {
    position: relative;
    display: block;
    padding: 0 25px;
    color: #111;
    font-weight: bold;
    line-height: 24px;
    transition: color .25s ease, opacity .25s ease;
}
#mainNav li a::after {
    content: "";
    position: absolute;
    right: 26px;
    bottom: -18px;
    left: 26px;
    height: 2px;
    background: var(--c-main);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .28s ease;
}
#mainNav li a:hover {
    color: var(--c-main);
    opacity: 1;
}
#mainNav li a:hover::after,
#mainNav li a:focus-visible::after {
    transform: scaleX(1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
/* Contact CTA */
.contact-cta {
    min-height: 358px;
    padding-top: 77px;
    color: #fff;
    background: #79818e url("./common/images/common/bg_cta.jpg") center bottom / cover no-repeat;
}
.contact-cta .contact-btn {
    min-width: 280px;
}
.contact-cta p {
    font-size: 18px;
    font-weight: bold;
}
.contact-cta h2 {
    margin: 7px 0 24px;
    font-size: 39px;
    line-height: 1.28;
    font-weight: 900;
}

#footer {   
    color: #fff;
    background: var(--c-main);
}
#footer_box {
    padding: 47px 0 42px;
    display: grid;
    grid-template-columns: 185px 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 32px;
}
#footer .footer-logo {
    width: 168px;
    grid-row: 1 / 3;
}
#footer .address {
    color: #fff;
    font-size: 13px;
    line-height: 1.7;
    grid-row: 1 / 3;
}
#footer .address strong {
    font-size: 16px;
}
#footer ul {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
    font-size: 12px;
    align-self: end;
}
#footer ul a {
    color: #fff;
}
#copyright {
    align-self: start;
    margin-top: 20px;
    color: #fff;
    font-size: 11px;
    text-align: right;
}

/* ==========================================================================
   Common Content Components
   ========================================================================== */
#main {
    display: block;
}

/* Section Spacing */
.section {
    margin-bottom: var(--mb-section);
}
.container {
    margin-bottom: var(--mb-container);
}
.case {
    margin-bottom: var(--mb-case);
}
.pack {
    margin-bottom: var(--mb-section);
}
.item {
    margin-bottom: var(--mb-section);
}
.mb_clear {
    margin-bottom: 0;
}
.mb_l {
    margin-bottom: var(--mb-container) !important;
}
.mb_m {
    margin-bottom: var(--mb-case) !important;
}
.mb_s {
    margin-bottom: var(--mb-item) !important;
}
.mt_l {
    margin-top: var(--mb-container) !important;
}
.mt_m {
    margin-top: var(--mb-case) !important;
}
.mt_s {
    margin-top: var(--mb-item) !important;
}
.section .container:last-child,
.container .case:last-child,
.case .pack:last-child,
.pack .item:last-child {
    margin-bottom: 0;
}

/* Text Utilities */
.txt_l {
    text-align: left !important;
}
.txt_c {
    text-align: center !important;
}
.txt_r {
    text-align: right !important;
}
.txt_b {
    font-weight: bold;
}
.txt_main {
    color: var(--c-main) !important;
}
.txt_sub {
    color: var(--c-subtext) !important;
}
.txt_small {
    font-size: 85%;
}
main p {
    margin-bottom: 20px;
}
main * p:last-child {
    margin-bottom: 0;
}

/* Tables and Forms */
.tb_style {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
}
.tb_style td,
.tb_style th {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}
.tb_style th {
    color: var(--c-text-light);
    background: var(--c-main);
}
.tb_line td,
.tb_line th {
    border: 1px solid var(--c-border);
}

/* Accordion */
.qa-list {
    border-top: 1px solid var(--c-border);
}
.qa-item {
    border-bottom: 1px solid var(--c-border);
}
.qa-item button {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 55px 20px 58px;
    border: 0;
    color: var(--c-main);
    background: transparent;
    font-size: 110%;
    font-weight: bold;
    line-height: 1.6;
    text-align: left;
    /*cursor: pointer;*/
}
.qa-item button::before {
    content: "Q";
    position: absolute;
    top: 18px;
    left: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    background: var(--c-main-secound);
    font-size: 90%;
}
.qa-item .trigger::after {
    content: "+";
    position: absolute;
    top: 19px;
    right: 16px;
    font-size: 125%;
    font-weight: normal;
}
.qa-item .trigger.active::after {
    content: "−";
}
.qa-item .acordion {
    position: relative;
    /*display: none;*/
    padding: 0 48px 20px 58px;
    line-height: 1.9;
}
.qa-item .acordion::before {
    content: "A";
    position: absolute;
    top: 1px;
    left: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    background: var(--c-muted);
    font-weight: bold;
    line-height: 1;
}
.tb_stripe tbody tr:nth-child(even) {
    background: #f4f7fc;
}
.tb_center td:nth-child(n+2),
.tb_center th {
    text-align: center;
}
.tb_form input[type="text"] {
    -webkit-appearance: none;
    border-radius: 0;
    padding: 5px;
    box-sizing: border-box;
}
.tb_form input[type="text"],
.tb_form input[type="email"],
.tb_form input[type="tel"],
.tb_form input[type="number"],
.tb_form select,
.tb_form textarea,
.form_control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-s);
    color: var(--c-text);
    background: #fff;
    font: inherit;
    line-height: 1.5;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.tb_form textarea,
textarea.form_control {
    min-height: 150px;
    resize: vertical;
}
.tb_form input:focus,
.tb_form select:focus,
.tb_form textarea:focus,
.form_control:focus {
    outline: none;
    border-color: var(--c-main);
    box-shadow: 0 0 0 3px rgba(8, 27, 118, .12);
}
.form_required {
    display: inline-block;
    margin-left: 8px;
    padding: 1px 7px;
    color: var(--c-text-light);
    background: var(--c-red);
    border-radius: var(--radius-s);
    font-size: 75%;
}
.form_note {
    color: var(--c-subtext);
    font-size: 85%;
}

/* Headings */
.title_main {
    font-size: var(--font-size-xl);
    color: var(--c-main);
    font-weight: bold;
    text-align: center;
    position: relative;
    padding-top: 90px;
    margin-bottom: var(--mb-case);
}
.title_main::before {
    content: "";
    background: var(--c-muted);
    width: 1px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 0;
}
.title_main span {
    display: block;
    font-size: var(--font-size-sss);
    color: var(--c-subtext);
    letter-spacing: 1px;
}
.title_sub {
    font-size: var(--font-size-l);
    font-weight: bold;
    margin-bottom: var(--mb-case);
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--c-secound);
}
.title_sub span {
    display: block;
    font-size: var(--font-size-ss);
}
.title_sub::before {
    content: "";
    background: var(--c-main);
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.title_sub::after {
    content: "";
    background: var(--c-main-secound);
    width: 2px;
    height: 25px;
    position: absolute;
    left: 0;
    top: 0;
}
.title_sec {
    font-size: var(--font-size-m);
    font-weight: bold;
    padding-left: 10px;
    margin-bottom: var(--mb-pack);
    color: var(--c-text);
    border-left: 2px solid var(--c-main);
}
.title_item {
    color: var(--c-main);
    font-size: var(--font-size-s);
    font-weight: bold;
    margin-bottom: var(--mb-item);
}
.title_page {
    font-size: var(--font-size-l);
    color: var(--c-main);
    margin-bottom: var(--mb-case);
    display: block;
    text-align: center;
}
.title_page span {
    font-size: var(--font-size-ss);
    display: block;
}
.title_num {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: var(--mb-case);
    padding: 0 0 17px;
    color: var(--c-main);
    border-bottom: 1px solid var(--c-border);
    font-size: var(--font-size-m);
    line-height: 1.4;
}
.title_num::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 78px;
    height: 3px;
    background: var(--c-main-secound);
}
.title_num em {
    display: inline-flex;
    flex: 0 0 58px;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--c-text-light);
    background: linear-gradient(135deg, var(--c-main) 0%, var(--c-main-secound) 100%);
    box-shadow: 0 7px 16px rgba(8, 27, 118, .16);
    font-size: 72%;
    font-style: normal;
    font-weight: bold;
    letter-spacing: .08em;
    line-height: 1;
}

/* Breadcrumb */
#topicPath {
    display: block;
    text-align: left;
    margin-bottom: var(--mb-section);
    padding-top: 20px;
}
#topicPath li {
    display: inline;
    font-size: var(--font-size-ss);
    color: var(--c-text);
    letter-spacing: 1px;
    margin-right: 5px;
}
#topicPath li a {
    color: var(--c-main);
    position: relative;
    display: inline-block;
    padding-right: 25px;
}
#topicPath li a::before {
    content: "→";
    position: absolute;
    bottom: -4px;
    right: 0px;   
    color: var(--c-main);
    font-size: 15px;
    transition: color .27s ease, transform .27s ease;
}
#topicPath li a:hover {
    opacity: .7;
}

/* Image and Flexible Layout */
.pic_l,
.pic_r {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 5%;
}
.container .msg {
    flex: 0 0 55%;
    word-break: break-all;
}
.container .img {
    flex: 0 0 40%;
}
.pic_l {
    flex-direction: row;
}
.pic_r {
    flex-direction: row-reverse;
}
.flex_box {
    display: flex;
    flex-wrap: wrap;
    gap: var(--mb-case);
}
.flex_center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex_between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--mb-pack);
}
.img_full {
    display: block;
    width: 100%;
    height: auto;
}
.img_round {
    overflow: hidden;
    border-radius: var(--radius-m);
}
.flow_picl,
.flow_picr {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.flow_picl .img {
    margin-right: 15px;
    margin-bottom: 5px;
}
.flow_picr {
    flex-direction: row-reverse;
}
.flow_picr .img {
    margin-left: 15px;
    margin-bottom: 5px;
}

/* Lists */
.list_dot {
    list-style: disc;
    margin-left: 17px;
}
.list_num {
    list-style: decimal;
    margin-left: 17px;
}
.list_dot li,
.list_num li {
    margin-bottom: 5px;
}
.list_link li {
    border-bottom: 1px solid var(--c-border);
}
.list_link a {
    position: relative;
    display: block;
    padding: 16px 36px 16px 0;
    color: var(--c-text);
}
.list_link a::after {
    content: "\2192";
    position: absolute;
    top: 50%;
    right: 8px;
    color: var(--c-main);
    transform: translateY(-50%);
    transition: transform .2s ease;
}
.list_link a:hover::after {
    transform: translate(5px, -50%);
}

/* Decoration Utilities */
.pad_sty {
    padding: 60px 0;
}
.txt_red {
    color: var(--c-red);
}
.hilight {
    background-color: var(--bg-gray);
    padding: 4%;
}
.is-fixed {
    background: var(--c-text-light);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
    transition: box-shadow .25s ease;
}
.box_sty {
    padding: var(--mb-case);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-m);
    background: var(--c-text-light);
}
.box_shadow {
    box-shadow: var(--shadow-soft);
}
.content-panel {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border: 0;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 9px 32px rgba(8, 27, 118, .07);
}
.content-panel--accent {
    background: linear-gradient(135deg, #fff 0%, #d4e0f7 100%);
}
.card_sty {
    padding: 18px;
    border-radius: 10px;
    background: #f7f9fd;
    transition: transform .25s ease, box-shadow .25s ease;
}
.card_sty:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(8, 27, 118, .09);
}
.card_line {
    padding: 20px;
    border: 1px solid #e2e8f4;
    border-radius: 12px;
    background: #fff;
}
.bg_gray {
    background: #f5f6f9;
}

/* Buttons */
.btn_sty,
.btn_line {
    min-width: 220px;
    padding: 15px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn_sty {
    color: var(--c-text-light) !important;
    background: var(--c-main);
}
.btn_sty span {
    color: var(--c-text-light);
    font-weight: bold;
    background: url(common/images/common/arrow09.png) no-repeat right center;
    background-size: 8px;
    padding-right: 20px;
}
.btn_sty:hover {
    background: #3168ac;
    opacity: 1;
    transform: translateY(-2px);
}
.btn_line {
    color: var(--c-main) !important;
    border: 1px solid var(--c-main);
    background: #fff;
}
.btn_line:hover {
    color: var(--c-text-light) !important;
    background: var(--c-main);
    opacity: 1;
    transform: translateY(-2px);
}
.btn_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--mb-pack);
}

/* Columns */
.collum2,
.collum3,
.collum4 {
    display: flex;
    flex-wrap: wrap;
    gap: 3.5%;
    list-style: none;
}
.collum2 > * {
    width: calc(50% - 1.75%);
    margin-bottom: 3.5%;
}
.collum3 > * {
    width: calc(33.333% - 2.333%);
    margin-bottom: 3.5%;
}
.collum4 {
    gap: 2.6%;
}
.collum4 > * {
    width: calc(25% - 1.95%);
    margin-bottom: 2%;
}
.collum3 .collum_span2 {
    width: calc(66.666% - 1.167%);
}

/* Embedded Media and Scroll */
.scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.youtube_box {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.youtube_box .video,
.youtube_box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Sub Page Main Visual */
#main_img_sub {
    background: url(common/images/common/bg_main.jpg) no-repeat center top;
    text-align: right;
    min-height: 250px;
}
#main_img_sub h2 {
    display: block;
    font-weight: 600;
    font-size: var(--font-size-xxl);
    color: var(--c-text-light);
    border-right: 1px solid var(--c-text-light);
    padding: 60px 40px 20px 0;
}
#main_img_sub h2 span {
    display: block;
    font-size: 50%;
}

/* Page Top Button */
#scTop {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 5%;
    right: 5%;
    background: url(common/images/common/pagetop.jpg) no-repeat right bottom;
    background-size: contain;
    opacity: 0;
    border: 0;
    cursor: pointer;
}

/* ==========================================================================
   Page: Index
   ========================================================================== */

/* Hero */
#main_img_wrap {
    background: url(common/images/index/bg_main.jpg) no-repeat center top;
}
#main_img_wrap h2{
    padding: 115px 0 50px 0;
    text-align: center;
}

/* Information and Main Links */
#page_index #information {
   
}
#page_index #information h2 {
    margin-bottom: 42px;
    color: var(--c-main);
    font-size: 46px;
    line-height: 1;
    text-align: center;
    font-weight: 700;
}
#page_index .news-list li {
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: start;
    border-bottom: 1px solid var(--c-border);
    padding: 19px 0;
    font-size: 15px;
}
#page_index .news-list time {
    color: var(--c-main);
    font-weight: bold;
}
#page_index .news-list a {
    color: #545b69;
}

#page_index .youtube_box {
	width: 100%;
	aspect-ratio: 16 / 9;
}
#page_index .youtube_box iframe {
	width: 100%;
	height: 100%;
}
#page_index .link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
    margin-bottom: 177px;
}
#page_index .link-grid a {
    position: relative;
    height: 132px;
    padding: 29px 29px 24px 104px;
    border: 1px solid var(--c-main-light);
    color: var(--c-main);
    background: #f8f8f8;
    transition: transform .27s ease, border-color .27s ease, box-shadow .27s ease, background-color .27s ease, opacity .27s ease;
}
#page_index .link-grid a:hover {
    opacity: 1;
    transform: translateY(-5px);
    border-color: var(--c-main);
    background: #fafbff;
    box-shadow: 0 13px 25px rgba(8, 27, 118, .1);
}
#page_index .link-grid img {
    position: absolute;
    left: 34px;
    top: 39px;
    width: 44px;
    height: 44px;
    transition: transform .27s ease;
}
#page_index .link-grid a:hover img {
    transform: scale(1.08);
}
#page_index .link-grid b {
    display: block;
    font-size: 110%;
    font-weight: bold;
}
#page_index .link-grid small {
    color: #a2a5ad;
    font-size: 70%;
    letter-spacing: .34em;
}
#page_index .link-grid span {
    position: absolute;
    bottom: 14px;
    right: 18px;
    color: #989da7;
    font-size: 21px;
    transition: color .27s ease, transform .27s ease;
}
#page_index .link-grid a:hover span {
    color: var(--c-main);
    transform: translateX(5px);
}

/* ==========================================================================
   Page: Item
   ========================================================================== */
#page_item {
    position: relative;
}
#page_item main {
    display: block;
}
#page_item .item-intro {
    position: relative;
    max-width: 930px;
    margin: 0 auto 48px;
    padding: 38px 48px 38px 62px;
    border-left: 5px solid var(--c-main);
    box-shadow: var(--shadow-soft);
    font-size: 110%;
    font-weight: 500;
}
#page_item .item-intro::before {
    content: "PRODUCTS";
    display: block;
    margin-bottom: 12px;
    color: var(--c-main);
    font-size: 72%;
    font-weight: bold;
    letter-spacing: .26em;
}
#page_item .item-intro p {
    margin: 0;
    line-height: 2;
}
#page_item .item-anchor {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 30px;
    border-radius: 18px;   
}
#page_item .item-anchor a {
    position: relative;
    min-height: 72px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--c-main);
    border: 1px solid var(--c-main);
    border-radius: 40px;
    color: #FFF;
    font-weight: bold;  
    text-align: center;
    transition: color .25s ease, background-color .25s ease, transform .25s ease;
}
#page_item .item-anchor a:nth-last-child(-n+3) {
    transform: translateX(55%);
}
#page_item .item-anchor a:hover {
    color: var(--c-text-light);
    border: 1px solid var(--c-main);
    color: var(--c-main);
    background: none;
    opacity: 1;
    transform: translateY(-3px);
}
#page_item .item-anchor a::after {
    content: "\2193";
    margin-top: 4px;
    color: #98a8c9;
    font-size: 120%;
    line-height: 1;
}
#page_item .item-anchor a:hover::after {
    color: #999;
}
#page_item .item-anchor a:nth-last-child(-n+3):hover {
    transform: translate(55%, -3px);
}
#page_item .item-anchor small {
    display: block;
    font-size: 80%;
}
#page_item .item-panel::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 12px;
    color: var(--c-main-light);
    font-size: 72%;
    font-weight: bold;
    letter-spacing: .34em;
    text-align: center;
}
#page_item figure {
    text-align: center;
}
#page_item figcaption {
    margin-top: 8px;
    color: var(--c-muted);
    font-size: 75%;
}
#page_item .product-detail {
    display: grid;
    grid-template-columns: 46% 1fr;
    gap: 45px;
    align-items: start;
    margin-bottom: 34px;
}
#page_item #ubolt .product-detail figure img,
#page_item #cap .cap-photo img {    
    box-shadow: 0 10px 24px rgba(8, 27, 118, .08);
    margin-bottom: 10px;
}
#page_item .product-detail figure img {
    width: 100%;
}
#page_item .product-copy p {
    margin-bottom: 28px;
}
#page_item .pdf-list li {
    margin-bottom: 8px;
    border: 1px solid #e0e7f5;
    border-radius: 6px;
    background: #fff;
}
#page_item .pdf-list a {
    position: relative;
    display: block;
    padding: 12px 56px 12px 16px;
    color: var(--c-main);
    font-weight: 500;
}
#page_item .pdf-list a::after {
    content: "PDF";
    position: absolute;
    top: 50%;
    right: 14px;
    padding: 1px 5px;
    color: #cf0000;
    border: 1px solid #cf0000;
    border-radius: 3px;
    font-size: 65%;
    transform: translateY(-50%);
}
#page_item .pdf-list a:hover {
    background: #f2f5fc;
    opacity: 1;
}


#page_item .cap-layout {
    display: grid;
    grid-template-columns: 43% 1fr;
    gap: 42px;
    margin-bottom: 32px;
}
#page_item .cap-photo {
    margin-bottom: 25px;
}
#page_item .cap-photo img {
    display: block;
    width: 100%;
}

#page_item .cap-info {
    padding-top: 65px;
}
#page_item .cap-info .pdf-list {
    margin: 25px 0 48px;
}
#page_item .size-table {
    width: 100%;
    border: 1px solid #dfe6f3;
    border-radius: 8px;
    overflow: hidden;
    background-color: #FFF;
}
#page_item .size-table th,
#page_item .size-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--c-border);
    font-weight: normal;
    text-align: center;
}
#page_item .size-table thead th {
    color: #FFF;
    background: var(--c-main);
    font-weight: bold;
}
#page_item .size-table tbody tr:nth-child(even) {
    background: #f8faff;
}
#page_item .press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 44px;
}
#page_item .press-grid .featured {
    grid-column: 1 / 3;
    width: 48%;
    margin: 0 auto 8px;
}
#page_item .press-grid img {
    display: block;
    width: 100%;
}
#page_item .item-feature {
    padding-top: 48px;
    text-align: center;
}
#page_item .item-feature img {
    width: min(70%, 720px);
    background: #fff;
}
#page_item .products-grid {
    align-items: center;
}
#page_item .products-grid img {
    display: block;
    width: 100%;
}
#page_item .product-description {
    margin: 0;
    padding: 30px;
    border-radius: 10px;
    color: #fff;
    background: var(--c-main);
    line-height: 2;
}
#page_item .item-summary {
    margin-bottom: 34px;
    padding: 18px 28px;
    border-radius: 6px;
    color: var(--c-main);
    background: rgba(8, 27, 118, .055);
    text-align: center;
}
#page_item #surface {
    background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}
#page_item .surface-list img {
    margin-bottom: 20px;
}
#page_item .surface-list p {
    margin-bottom: 0;
}
#page_item .item-anchor a:focus-visible,
#page_item .pdf-list a:focus-visible {
    outline: 3px solid #efc620;
    outline-offset: 3px;
}

/* ==========================================================================
   Page: Equipment
   ========================================================================== */
#page_equipment {
    position: relative;
}
#page_equipment main {
    display: block;
}
#page_equipment .factory-main,
#page_equipment .inspection-main {
    max-width: 900px;
    margin: 0 auto 30px;
}
#page_equipment .equipment-table-wrap {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
}
#page_equipment .equipment-table {
    background: #fff;
}
#page_equipment .equipment-table thead th {
    font-size: 105%;
}
#page_equipment .equipment-gallery {
    max-width: 980px;
    margin: 0 auto;
}
#page_equipment figcaption {
    margin-top: 10px;
    color: var(--c-main);
    font-weight: 500;
    text-align: center;
}
#page_equipment .inspection-device {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 42px;
    align-items: center;
    max-width: 960px;
    margin: 42px auto 0;
}
#page_equipment .inspection-device p {
    margin: 0;
    line-height: 2;
}

/* ==========================================================================
   Page: Voice
   ========================================================================== */
#page_voice .voice-question .title_num {
    align-items: flex-start;
}
#page_voice .voice-pair {
    align-items: stretch;
}
#page_voice .voice-pair > * {
    margin-bottom: 0;
}
#page_voice .voice-answer {
    padding: 28px 30px;
    border-color: rgba(8, 27, 118, .14);
    background: #fff;
}
#page_voice .voice-answer--service {
    background: #f6f8fd;
}
#page_voice .voice-answer .title_item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
#page_voice .voice-icon {
    display: block;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
}
#page_voice .voice-points li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 17px;
    line-height: 1.75;
}
#page_voice .voice-points li:last-child {
    margin-bottom: 0;
}
#page_voice .voice-points li::before {
    content: "";
    position: absolute;
    top: .72em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-main-secound);
}

/* ==========================================================================
   Page: Flow
   ========================================================================== */
#page_flow .flow-process {
    position: relative;   
    padding: 0 0 0 104px;
}

#page_flow .flow-process::before {
    content: "";
    position: absolute;
    top: 60px;
    bottom: 60px;
    left: 31px;
    width: 3px;
    background: linear-gradient(180deg, var(--c-main) 0%, var(--c-main-secound) 55%, var(--c-yellow) 100%);
}
#page_flow .flow-step {
    position: relative;
    margin-bottom: 34px;
}

#page_flow .flow-card {
    position: relative;
    overflow: visible;
    padding: 34px 38px;
}

#page_flow .flow-step:last-child {
    margin-bottom: 0;
}

#page_flow .flow-step:last-child::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 76px;
    bottom: 0;
    left: -75px;
    width: 7px;
    background: #fff;
}

#page_flow .flow-index {
    position: absolute;
    top: 22px;
    left: -104px;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: 64px;
    padding: 0 0 20px;
    color: var(--c-main);
    background: #fff;
    font-size: clamp(34px, 4vw, 44px);
    font-weight: bold;
    line-height: 1;
    letter-spacing: .06em;
}

#page_flow .flow-index::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 13px;
    height: 13px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--c-main-secound);
    transform: translateX(-50%);
    box-shadow: 0 0 0 2px rgba(8, 27, 118, 0.22);
}

#page_flow .flow-card::before {
    content: "";
    position: absolute;
    top: 66px;
    left: -42px;
    width: 42px;
    height: 2px;
    background: var(--c-border);
}

#page_flow .flow-step:last-child .flow-index::after {
    background: var(--c-yellow);
}

#page_flow .flow-detail {
    align-items: center;
    margin-bottom: 0;
}

#page_flow .flow-image {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #edf2fb;
}
#page_flow .flow-copy {
    line-height: 1.9;
}
#page_flow .flow-copy p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Page: Recruit
   ========================================================================== */
#page_recruit .recruit-interview {
    padding: 42px;
}
#page_recruit .recruit-profile {
    align-items: center;
}
#page_recruit .recruit-profile .img {
    flex-basis: 33%;
}
#page_recruit .recruit-profile .msg {
    flex-basis: 62%;
}
#page_recruit .recruit-profile img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #edf2fb;
}
#page_recruit .recruit-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 30px;
}
#page_recruit .recruit-facts div {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 126px;
    padding: 20px 14px 18px;
    border: 1px solid #d7e2fa;
    border-radius: 12px;
    background: linear-gradient(145deg, #fff 0%, #f2f6ff 100%);
    box-shadow: 0 3px 10px rgba(8, 27, 118, .05);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
#page_recruit .recruit-facts div:hover {
    border-color: var(--c-main-secound);
    box-shadow: 0 10px 20px rgba(8, 27, 118, .1);
    transform: translateY(-3px);
}
#page_recruit .recruit-facts dt {
    margin-bottom: 12px;
    color: var(--c-main);
    font-weight: bold;
    line-height: 1.55;
    text-align: center;
}
#page_recruit .recruit-facts dt::before {
    content: "";
    display: block;
    width: 38px;
    height: 38px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background-color: #e8efff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23081b76'  d='M12 3.1l2.7 5.65 6.2.84-4.5 4.34 1.12 6.18L12 17.16l-5.52 2.95 1.12-6.18-4.5-4.34 6.2-.84z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px 23px;
}
#page_recruit .recruit-facts dd {
    color: #3f4656;
    line-height: 1.65;
    text-align: center;
}
#page_recruit .recruit-table {
    line-height: 1.75;
}
#page_recruit .recruit-table th {
    width: 25%;
    color: var(--c-main);
    background: #f2f6ff;
    vertical-align: top;
}
#page_recruit .recruit-table td {
    background: #fff;
}
#page_recruit .recruit-message .container {
    align-items: flex-start;
}
#page_recruit .recruit-message .img {
    flex-basis: 38%;
}
#page_recruit .recruit-message .msg {
    flex-basis: 57%;
    line-height: 1.9;
}
#page_recruit .recruit-message img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: #edf2fb;
}
#page_recruit .recruit-signature {
    margin-top: 35px;
    font-weight: bold;
}

/* ==========================================================================
   Page: Company
   ========================================================================== */
#page_company .company-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(250px, .82fr);
    gap: 34px;
    align-items: start;
}
#page_company .company-data {
    padding: 0;
    overflow: hidden;
}
#page_company .company-table {
    line-height: 1.75;
}
#page_company .company-table th {
    width: 26%;
    color: var(--c-main);
    background: #f2f6ff;
    vertical-align: top;
}
#page_company .company-gallery figure {
    margin-bottom: 22px;
}
#page_company .company-gallery figure:last-child {
    margin-bottom: 0;
}
#page_company .company-gallery img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #edf2fb;
}
#page_company .company-gallery figcaption,
#page_company .company-team figcaption {
    margin-top: 8px;
    text-align: center;
}
#page_company .company-philosophy ol {
    margin: 0 0 30px 1.5em;
    line-height: 2;
	list-style: decimal;
}
#page_company .company-terms {
    padding-top: 28px;
    border-top: 1px solid var(--c-border);
    line-height: 1.9;
}
#page_company .company-history-table {
    line-height: 1.8;
}
#page_company .company-history-table th {
    width: 23%;
    color: var(--c-main);
    background: #f2f6ff;
    vertical-align: top;
}
#page_company .company-map-list > * {
    display: flex;
    flex-direction: column;
}
#page_company .company-map-list p {
    min-height: 3.5em;
    line-height: 1.75;
}
#page_company .company-map-sample {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    color: var(--c-main);
    background: linear-gradient(135deg, #edf2fb 0%, #d9e5f9 100%);
}
#page_company .company-map-sample iframe{
    width: 100%;
    height: 250px;
}
#page_company .company-team {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Page: Greeting
   ========================================================================== */
#page_greeting .greeting-split {
    display: grid;
    grid-template-columns: minmax(300px, .88fr) minmax(0, 1.42fr);
    gap: 42px;
    align-items: start;
}
#page_greeting .greeting-portrait {
    position: sticky;
    top: 100px;
}
#page_greeting .greeting-portrait figure {
    padding: 18px;
    border-radius: 6px 42px 6px 6px;
}
#page_greeting .greeting-label {
    margin-bottom: 18px;
    color: var(--c-main);
    font-size: 80%;
    font-weight: bold;
    letter-spacing: .28em;
}
#page_greeting .greeting-portrait img {
    aspect-ratio: 4 / 5.4;
    border-radius: 4px 25px 4px 4px;
    object-fit: cover;
    background: #edf2fb;
}
#page_greeting .greeting-portrait figcaption {
    margin-top: 12px;
    color: var(--c-subtext);
    font-size: 86%;
    text-align: right;
}
#page_greeting .greeting-letter {
    padding: 48px 50px;
    border-top: 5px solid var(--c-main);
}
#page_greeting .greeting-body {
    line-height: 2.15;
}
#page_greeting .greeting-body p {
    margin-bottom: 30px;
}
#page_greeting .greeting-lead {
    padding-bottom: 26px;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-main);
    font-size: 108%;
    font-weight: bold;
}
#page_greeting .greeting-highlight {
    padding: 0 .18em 3px;
    color: var(--c-main);
    background: linear-gradient(transparent 58%, rgba(246, 194, 39, .5) 58%);
    font-weight: bold;
}
#page_greeting .greeting-body blockquote {
    position: relative;
    margin: 38px 0;
    padding: 20px 30px;
    color: #fff;
    background: linear-gradient(135deg, var(--c-main) 0%, var(--c-main-secound) 100%);
    font-size: var(--font-size-l);
    font-weight: bold;
    text-align: center;
}
#page_greeting .greeting-body blockquote::before,
#page_greeting .greeting-body blockquote::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18%;
    height: 1px;
    background: rgba(255, 255, 255, .45);
}
#page_greeting .greeting-body blockquote::before {
    left: 25px;
}
#page_greeting .greeting-body blockquote::after {
    right: 25px;
}
#page_greeting .greeting-signature {
    margin-top: 40px;
    color: var(--c-main);
    font-weight: bold;
    line-height: 1.9;
    text-align: right;
}

/* ==========================================================================
   Page: Privacy
   ========================================================================== */
#page_privacy .privacy-document {
    max-width: 940px;
    margin-right: auto;
    margin-left: auto;
    padding: 58px 72px;
}
#page_privacy .privacy-intro {
    margin-bottom: 52px;
    padding: 26px 30px;
    border-left: 4px solid var(--c-main-secound);
    background: #f2f6ff;
    font-size: 108%;
    line-height: 2;
}
#page_privacy .privacy-block {
    margin-bottom: 40px;
    line-height: 2;
}
#page_privacy .privacy-exceptions {
    margin: 20px 0 0 1.8em;
    padding: 16px 22px;
    background: #f7f9fd;
    line-height: 1.9;
	list-style: decimal;
}
#page_privacy .privacy-exceptions li {
	margin-left: 22px;
}
#page_privacy .privacy-contact {
    margin-top: 52px;
    padding: 28px 32px;
    border-radius: 14px;
    line-height: 1.9;
}
#page_privacy .privacy-contact address {
    margin-top: 20px;
    color: var(--c-main);
    font-style: normal;
    font-weight: bold;
}

/* ==========================================================================
   Page: Sitemap
   ========================================================================== */
.page_sitemap ul {
    text-align: center;
}
.page_sitemap ul li {
    padding: 5px 0;
}
.page_sitemap ul a {
    color: var(--c-text);
    text-decoration: none;
    padding: 8px 8px 8px 15px;
    display: inline-block;
    background: url(common/images/common/arrow08.png) no-repeat left center;
    background-size: 6px;
}
.page_sitemap ul a span {
    display: inline-block;
    border-left: 1px solid #ccc;
    padding-left: 10px;
    margin-left: 10px;
    font-size: 80%;
    text-transform: uppercase;
    color: #999;
}
.page_sitemap ul a:hover {
    color: var(--c-main);
    letter-spacing: 3px;
}

#page_sitemap .sitemap-intro {
    text-align: center;
}
#page_sitemap .sitemap-intro p {
    color: var(--c-subtext);
}
#page_sitemap .sitemap-list {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    padding: 22px 42px;
}
#page_sitemap .list_link strong {
    display: block;
    color: var(--c-main);
    font-weight: bold;
}
#page_sitemap .list_link small {
    color: var(--c-subtext);
    font-size: 78%;
    letter-spacing: .14em;
}

/* ==========================================================================
   Accessibility: Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .utility-nav a,
    .utility-nav img,
    .contact-btn,
    .contact-btn::after,
    #mainNav li a,
    #mainNav li a::after,
    #page_item .item-anchor a,
    .card_sty,
    #page_index .link-grid a,
    #page_index .link-grid img,
    #page_index .link-grid span {
        transition: none;
    }
    .utility-nav a:hover,
    .contact-btn:hover,
    #page_item .item-anchor a:hover,
    .card_sty:hover,
    #page_index .link-grid a:hover,
    #page_index .link-grid a:hover img,
    #page_index .link-grid a:hover span {
        transform: none;
    }
}

/*フォーム系*/
.contact_btn{
	text-align:center;
}

.contact_btn input{
	padding:10px 40px;
	background-color:#000;
	border:none;
	color:#FFF;
	text-align:center;
	margin:10px 0;
	cursor: pointer;
	border-radius: 0;
	margin: 0 15px 0 25px;
	font-size: 16px;
}
.contact_btn input:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}
.contact_btn .wpcf7-spinner {
	margin: 0;
}

.contact_main{
	margin-bottom:10px;
}


.tb_form{
	width:100%;
	table-layout: auto;
	border-collapse: collapse;
	font-size: 90%;
}
.tb_form th {
	background: #f5f5f5;
	text-align: left;
}
.tb_form td {
	background: #fff;
}
.tb_form th span{
	color: #FF0000;
}
.tb_form td input[type=text],.tb_form td input[type=email],
.tb_form td textarea {
	-webkit-appearance: none;
	border-radius: 0;
	box-sizing: border-box;
	border: solid 1px #999;
}
.tb_form td textarea {
	width: 100%;
}
.wpcf7-radio .wpcf7-list-item:first-child {
	margin-left: 0!important;
}
.wpcf7-checkbox .wpcf7-list-item:first-child {
	margin-left: 0!important;
}
.info_chui {
	display: block;
	font-size: 80%;
}
.wpcf7-not-valid-tip {
	font-size: 80%;
}
.txt_att {
	font-size: 80%;
}
.tb_form td input[type=text].input_s {
	width: 80px;
	margin-right: 10px;
}
.tb_form td input[type=text].input_s2 {
	width: 120px;
	margin-right: 6px;
	margin-left: 6px;
}
.tb_form td ul li:first-child input[type=text].input_s2 {
	margin-left: 0;
}
.tb_form td dl {
	display: flex;
	margin-bottom: 8px;
}
.tb_form td dl:last-child {
	margin-bottom: 0;
}
.tb_form td dl dt {
	width: 100px;
}
.ul_li_form li {
	margin-bottom: 8px;
}
.ul_li_form li:last-child {
	margin-bottom: 0;
}
.ul_li_form li input[type=date]{
	margin-right: 20px;
}
.tb_form td tr td {
	border: none!important;
	padding: 0;
}
.tb_form td tr td:first-child {
	padding-right: 15px;
}
.tb_form .txt_att {
	display: block;
}
.tb_form td .ul_birth {
	display: flex;
}
.quiz_box {
	text-align: center;
}
.quiz_box span {
	display: block;
}
.quiz_box label span {
	font-size: 85%;
}

@media screen and (min-width: 769px){
.tb_form {
	border-top: solid 1px #ddd;
}
.tb_form th{
	font-weight: bold;
	padding: 15px;
	border-bottom: 1px solid #ddd;
	vertical-align: top;
	width: 25%;
	box-sizing: border-box;
}
.tb_form th span{
	color: #FF0000;
}
.tb_form td{
	border-bottom: 1px solid #ddd;
	padding: 15px;
	box-sizing: border-box;
}
.tb_form td input[type=text],
.tb_form td input[type=email] {
	width: 50%;
	padding: 3px;
}
}



@media screen and (max-width:768px){
.tb_form th{
	font-weight: bold;
	padding: 5px;
	width: 100%;
	display: block;
}
.tb_form td{
	border-bottom: 1px solid #CCCCCC;
	padding: 5px 0 10px;
	width: 100%;
	display: block;
}
/*フォーム系*/
.contact_btn input{
	-webkit-appearance: none;
	border-radius: 0;
}

.tb_form td input[type=text],
.tb_form td input[type=email] {
	width: 100%;
	box-sizing: border-box;
}
.tb_form td input[type=text].input_s2 {
	width: 100px;
	margin-right: 4px;
	margin-left: 4px;
}

}

/*------ page_topics ------*/
.page_topics .container li {
	padding: 15px 0;
	border-top: 1px dotted #999;
	font-size: 15px;
}
.page_topics .container li:first-child {
	border-top: none;
}
.page_topics .container li a{
	text-decoration:none;
	color: #000;
	overflow: hidden;
	display: block;
}
.page_topics .container li span{
	float:left;
	width: 73%;
}
.page_topics .container li span.txt_date{
	font-weight: 700;
	width: 26%;
}

/*------ news nav ------*/
.nav-links {
	overflow: hidden;
}
.nav-links a span {
	display: block;
	padding: 10px 30px;
	background: #000;
	color: #FFF;
}
.nav-links a span:hover {
	background:#666;
}
.nav-links a span.prev {
	float: left;
}
.nav-links a span.next {
	float: right;
}

.pagination {
	margin-top: 30px;
	text-align: center;
}
.pagination .current,
.pagination  a {
	display: inline-block;
	padding: 4px 12px;
	margin: 0 3px;
}

.pagination  a {
	border: solid 1px #CCC;
	text-decoration: none;
	color: #999;
}
.pagination .current{
	background: #000;
	border: solid 1px #000;
	color: #FFF;
}
.pagination  a:hover{
	background: #666;
	border: solid 1px #666;
	color: #FFF;
}
