<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*reset*/
*, *::before, *::after {
    font-size: 16px; line-height: 1.5em;
}
:root{
    --main-vertical-margin: 10vh;
    --title-range:45px;
    --footer-background-color: #1f2937;
}
h1 {
    font-size: 20px;
    line-height: 2em;
}
h2 {
    font-size: 18px;
    line-height: 2em;
}
body, p, div {
    font: 16px 'Noto Sans JP', 'Yu Gothic', Meiryo, 'Hiragino Kaku Gothic Pro', sans-serif;
}
img{
    object-fit: cover;
}
header {
    grid-template-rows: var(--header-height) 1fr;
}
nav{
    display: none;
}
figcaption {
    text-align:center;
}
body p {
    font-size: 16px;
    line-height: 1.7em;
}
/*structure*/
.grid-base {
    display: grid;
    position: relative;
    grid-template-columns: repeat(12, 1fr);
}
.grid-all {
    grid-column: 1 / 13;
    /*background-color:magenta;*/
}
.grid-base &gt; * {
    grid-column: 1 / 13;
}
.flex-gap {
    display: flex;
    flex-direction: column;
    gap: 10vh;
}
.flex-half-gap {
    display: flex;
    flex-direction: column;
    gap: 5vh;
}
.flex-quarter-gap{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/*component*/
.main-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 0.7rem 0.7rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.page-contents{
    padding: 0 var(--main-horizontal-padding-sp);
    margin: var(--main-vertical-margin) 0;
}
.page-contents figure img{
    width: 100%;
    height: auto;
}
.button-link {
    padding: 0 1em;
    display: inline-block;
    border-radius: 0.2em;
    background: #303030;
    color: white;
    text-decoration: none;
}
.sub-column{
    display: none;
}
/*appearance*/
main.grid-base{
    grid-row-gap: 1em;
}
main article.grid-base{
    grid-row-gap: 1.5em;
}
.--gap-- {
    padding-top: 15px;
    padding-bottom: 15px;
    gap: 15px;
}
.--half_gap-- {
    gap:20px 0;
}
.grid-base h1 {
    font-size: 1.75em;
    line-height: 1.4em;
    margin:0.5em 0;
}
.grid-base h2 {
    font-size: clamp(18px,4vw,1.2em);
    line-height: 1.5em;
    text-align: start;
    margin:0.5em;
}
.grid-base h3 {
    font-size: 1.25em;
    line-height: 2.8em;
}
.section-title h1{
    font-size: 2.5rem;
    padding-bottom: 0.5em;
}
.section-title h2{
    font-size: 1.5em;
}
.sp-indent{
    grid-column: 2 / 13;
}
.--sp-hidden-- {
    display: none;
}
.--title--{
    margin-bottom: 1em;
}

/*responsive*/
@media (max-width: 430px){
    .font-small{
        font-size: 3vw;
    }
}
/*res_image*/
.sokutei_res_img{
    content: url('../../files/image/sokutei_res.svg');
}
.hosei_res_image{
    content: url("../../files/image/hosei_res.svg");
}
.usecase2_res_image{
    content: url("../../files/image/usecase2_ex_res.svg");
}
.usecase4_res_image{
    content: url("../../files/image/usecase4_ex_res.svg");
}
.index_6_res_image{
    content: url("../../files/image/index_6_res.svg");
}
.tech2_res_image{
    content: url("../../files/tech2_res.svg");
}</pre></body></html>