@charset "utf-8";

/* Basic CSS elements */
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}

br.pc-only,
span.pc-only {
    display: none
}
br.sp-only,
span.sp-only{
    display: inline
}
div.pc-only,
p.pc-only,
figure.pc-only {
	display: none;
}
div.sp-only,
p.sp-only,
figure.sp-only {
	display: block;
}

.txt-red {
    color: #df0029;
}

.txt-center {
    text-align: center;
}
.txt-right {
    text-align: right;
}

/* common */
html {
	color: #222222;
}

body {
	min-width: 320px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
    letter-spacing: .03em;
    font-feature-settings: "palt";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

p,
ul,
ol,
dl,
th,
td,
figcaption,
address {
    line-height: 1.75;
}

figcaption {
    margin: 0.5em 0;
}

a,
a:link,
a:visited {
    color: #1262b3;
    text-decoration: none;
}
a:hover {
    color: #0051b6;
    text-decoration: underline;
}

figure {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    vertical-align: top;
}

small {
	font-size: smaller
}

ul,
ol {
	padding-left: 2.5em;
}

button {
    -webkit-appearance: none;
    border-width: 0;
}

select {
	height: 2em;
	border-radius: 0;
	padding-left: 1px;
}



.btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
	transition: background-color 0.2s ease;
    padding: 0.5em 1em;
    border-radius: 5px;
    font-weight: 700;
}
a.btn:hover {
    text-decoration: none;
}
.btn-main,
a.btn-main,
a.btn-main:visited,
a.btn-main:active {
    background: #0051b6;
    color: #ffffff;
}
.btn-main:hover,
a.btn-main:hover {
    opacity: 0.75;
}
.btn-navy,
a.btn-navy,
a.btn-navy:visited,
a.btn-navy:active {
    background: #005d89;
    color: #ffffff;
}
.btn-navy:hover,
a.btn-navy:hover {
    background: #0070a3;
    color: #ffffff;
}
.btn-gray,
a.btn-gray,
a.btn-gray:visited,
a.btn-gray:active {
    background: #4d4d4d;
    color: #ffffff;
}
.btn-gray:hover,
a.btn-gray:hover {
    background: #666666;
    color: #ffffff;
}

.btn-rarrow {
	position: relative;
    border: 2px solid #0051b6;
    color: #0051b6;
    transition: opacity 0.2s ease;
}
.btn-rarrow:after {
	content: '';
	position: relative;
	top: 50%;
	display: inline-block;
	width: 0;
	height: 0;
	margin: 0 -8px 1px 8px;
	border-top: 4px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 8px solid #0051b6;
}
.btn-rarrow:hover {
    opacity: 0.75;
}

.btn-larrow {
	position: relative;
}
.btn-larrow:before {
	content: '';
	position: relative;
	top: 50%;
	display: inline-block;
	width: 0;
	height: 0;
	margin: 0 5px 0 -10px;
	border-top: 5px solid transparent;
	border-right: 8px solid #ffffff;
	border-bottom: 5px solid transparent;
	border-left: 8px solid transparent;
}

p.note {
    margin-left: 1em;
    text-indent: -1em;
}

table.basic-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 4px;
}
table.basic-table tr th,
table.basic-table tr td {
    padding: 0.5em 0.75em;
    text-align: left;
    vertical-align: top;
}
table.basic-table tr th {
    width: 5em;
    background-color: #ececec;
}
table.basic-table tr td {
    background-color: #f2f2f2;
}
table.basic-table tr th a,
table.basic-table tr td a {
    color: #424242;
    text-decoration: underline;
}
table.basic-table tr th a:hover,
table.basic-table tr td a:hover {
    color: #0051b6;
}
table.basic-table tr td > ul,
table.basic-table tr td > ol {
	padding-left: 1.5em;
}
table.basic-table tr td dl dt {
    margin-top: 1em;
}
table.basic-table tr td dl dt:first-child {
    margin-top: 0;
}
table.basic-table tr td dl dd {
    margin-left: 1.5em;
}
table.basic-table tr td dl dd > ul,
table.basic-table tr td dl dd > ol {
	padding-left: 1em;
}
table.basic-table tr td p:first-child,
table.basic-table tr td ul:first-child,
table.basic-table tr td ol:first-child,
table.basic-table tr td dl:first-child {
	margin-top: 0;
}
table.basic-table tr td p:last-child,
table.basic-table tr td ul:last-child,
table.basic-table tr td ol:last-child,
table.basic-table tr td dl:last-child {
	margin-bottom: 0;
}

/* layout */

.wrapper {
    background-color: #ffffff;
}


.header-thg-logo {
    border-top: 3px solid #0092d1;
}
.header-thg-logo a {
    position: relative;
    width: 50%;
    min-width: 200px;
    height: 14px;
    margin: 0 auto;
    background: #0092d1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-thg-logo a:before {
    width: 50px;
    height: 14px;
    content: "";
    background: url(/lp/image-processing-tech/images/th_l.svg) no-repeat left bottom;
    background-size: cover;
    position: absolute;
    top: 0;
    left: -25px;
}
.header-thg-logo a:after {
    width: 50px;
    height: 14px;
    content: "";
    background: url(/lp/image-processing-tech/images/th_r.svg) no-repeat left bottom;
    background-size: cover;
    position: absolute;
    top: 0;
    right: -25px;
}
.header-thg-logo a img {
    width: 120px;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
header .logo img {
	height: 35px;
}
header .contact .btn {
    padding-top: 0.75em;
    padding-bottom: 0.75em;
}


.main-wrapper {
    margin: 0 10px;
}

.side-nav {
    margin-top: 20px;
}
.side-nav .group-title {
    margin: 0;
    padding: 10px 27px 9px;
    background-color: #f2f2f2;
    font-weight: bold;
}
.side-nav .group-title a {
    color: #222222;
}
.side-nav ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.side-nav ul li {
    border-bottom: 1px solid #ececec;
}
.side-nav ul li a {
    position: relative;
    display: block;
    padding: 8px 14px 7px 27px;
    color: #222222;
    line-height: 1.25;
}
.side-nav ul li a:hover {
    color: #0051b6;
    text-decoration: none;
}
.side-nav ul li a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15px;
    display: block;
    width: 0;
    height: 0;
    margin-top: -3px;
    border-top: 3px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 6px solid #666666;
}



.square-mark {
    display: flex;
	font-size: 16px;
}
.square-mark::before {
	content: '';
    flex: 0 0 4px;
    height: 20px;
    margin-right: 0.6em;
    background: #0051b6;
}

.main-content article h1 {
    font-size: clamp(18px, 4vw, 32px);
}

.main-content article h3 {
	padding: 0.5em 0;
	font-size: 16px;
	border-bottom: 2px solid #ececec;
	line-height: 1.25;
}

.main-content article > section,
.main-content article > aside {
	margin: 20px 0;
}

footer {
    margin-top: 30px;
    border-top: 1px solid #848484;
}
footer .link-info {
    text-align: center;
}
footer .link-info .btn {
    width: 240px;
    padding: 1em;
    font-size: 18px;
    font-weight: bold;
}



.main-content article .link-info {
	text-align: right;
}
.main-content article .link-info .btn {
	width: 220px;
	padding: 0.75em 0;
	line-height: 1;
}

.footer_bottom {
    background: #0092d1;
    text-align: center;
}
.footer_copyright {
    margin: 0;
    padding: 1em;
    color: #ffffff;
    font-size: min(12px, 2.6666vw);
}

@media print, screen and (min-width: 768px) {
    body {
        font-size: 16px;
    }

    br.pc-only,
    span.pc-only {
        display: inline
    }
    br.sp-only,
    span.sp-only{
        display: none
    }
    div.pc-only,
    p.pc-only,
    figure.pc-only {
        display: block;
    }
    div.sp-only,
    p.sp-only,
    figure.sp-only {
        display: none;
    }

    .header-thg-logo a {
        width: 40%;
        max-width: 600px;
        height: 28px;
    }
    .header-thg-logo a:before {
        width: 100px;
        height: 28px;
        left: -50px;
    }
    .header-thg-logo a:after {
        width: 100px;
        height: 28px;
        right: -50px;
    }
    .header-thg-logo a img {
        width: 205px;
    }

    header {
        position: relative;
        max-width: 1120px;
        margin: 0 auto;
    }
    header .logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }



    .main-wrapper {
        display: flex;
        flex-direction: row-reverse;
        gap: 40px;
        max-width: 1120px;
        margin: 40px auto 0;
        padding: 0 20px;
    }
    .two-col-layout .main-content {
        width: calc(100% - 320px);
    }
    .side-nav {
        flex-shrink: 0;
        width: 280px;
        margin-top: 0;
        font-size: 14px;
    }

    .main-content article > section,
	.main-content article > aside {
		margin: 40px 0;
	}
    .main-content article h1 {
        margin-top: 0;
    }
    .main-content article .square-mark {
        font-size: 20px;
    }
    .main-content article .square-mark:before {
        flex: 0 0 6px;
        height: 26px;
    }

	.main-content article h3 {
		font-size: 18px;
	}

	.main-content article .col4-wrapper {
		font-size: 0;
    }
    .main-content article .col4-wrapper .cell {
		display: inline-block;
		vertical-align: top;
    }
    .one-col-layout .main-content article .col4-wrapper .cell {
		width: 230px;
		margin-left: 20px;
    }
    .one-col-layout .main-content article .col4-wrapper .cell.cell-2-4 {
        width: 480px;
    }
    .one-col-layout .main-content article .col4-wrapper .cell.cell-3-4 {
        width: 730px;
    }
    .two-col-layout .main-content article .col4-wrapper .cell {
		width: 150px;
		margin-left: 20px;
    }
    .two-col-layout .main-content article .col4-wrapper .cell.cell-2-4 {
        width: 320px;
    }
    .two-col-layout .main-content article .col4-wrapper .cell.cell-3-4 {
        width: 490px;
    }
    .one-col-layout .main-content article .col4-wrapper .cell.cell-4-4,
    .two-col-layout .main-content article .col4-wrapper .cell.cell-4-4 {
        width: 100%;
    }
    .one-col-layout .main-content article .col4-wrapper .cell.cell-4-4,
    .two-col-layout .main-content article .col4-wrapper .cell.cell-4-4,
    .one-col-layout .main-content article .col4-wrapper .cell:first-child,
    .two-col-layout .main-content article .col4-wrapper .cell:first-child {
        margin-left: 0;
    }

    .main-content article .col3-wrapper {
		font-size: 0;
    }
    .main-content article .col3-wrapper .cell {
		display: inline-block;
		vertical-align: top;
    }
    .one-col-layout .main-content article .col3-wrapper .cell {
		width: 314px;
		margin-left: 19px;
    }
    .one-col-layout .main-content article .col3-wrapper .cell.cell-2-3 {
        width: 647px;
    }
    .two-col-layout .main-content article .col3-wrapper .cell {
		width: 206px;
		margin-left: 21px;
    }
    .two-col-layout .main-content article .col3-wrapper .cell.cell-2-3 {
        width: 433px;
    }
    .one-col-layout .main-content article .col3-wrapper .cell.cell-3-3,
    .two-col-layout .main-content article .col3-wrapper .cell.cell-3-3 {
        width: 100%;
    }
    .one-col-layout .main-content article .col3-wrapper .cell.cell-3-3,
    .two-col-layout .main-content article .col3-wrapper .cell.cell-3-3,
    .one-col-layout .main-content article .col3-wrapper .cell:first-child,
    .two-col-layout .main-content article .col3-wrapper .cell:first-child {
        margin-left: 0;
    }

    footer {
        margin-top: 40px;
        border-top: 1px solid #dddddd;
    }
    footer .link-info {
        margin: 40px 0 80px;
    }
    footer .link-info .btn {
        width: 320px;
        font-size: 20px;
    }
}
