<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* ────────────────────── *
 *                                              *
 * メインビジュアル                             *
 *                                              *
 * ────────────────────── */

#mainvisual {
    clear: both;
    width: 100%;
    position: relative;
}
#mainvisual img {
    width: 100%;
    max-width: none;
}

/* ────────────────────── *
 *                                              *
 * コンテンツ                                   *
 *                                              *
 * ────────────────────── */

.contents {
    padding: 120px 0 140px;
}

/* ────────────────────── *
 *                                              *
 * 見出し                                       *
 *                                              *
 * ────────────────────── */

.contents h2 {
    text-align: center;
    margin: 0 auto 60px;
}
.contents p.read {
    font-size: 25px;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto 60px;
}

/* ────────────────────── *
 *                                              *
 * サービス内容                                 *
 *                                              *
 * ────────────────────── */

.contents .service {
    background: #efefef;
    padding: 100px;
    margin: 0 auto 150px;
    position: relative;
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.contents .service:before {
    content: "";
    background: rgb(177,149,79);
    background: -moz-linear-gradient(left,  rgba(177,149,79,1) 0%, rgba(114,78,39,1) 100%);
    background: -webkit-linear-gradient(left,  rgba(177,149,79,1) 0%,rgba(114,78,39,1) 100%);
    background: linear-gradient(to right,  rgba(177,149,79,1) 0%,rgba(114,78,39,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b1954f', endColorstr='#724e27',GradientType=1 );
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    position: absolute;
    right: 50%;
    top: 50%;
    z-index: -1;
    transform: translate(50%, -50%);
    pointer-events: none;
}
.contents .service:after {
    content: "";
    background: #efefef;
    width: calc(100% - 100px - 4px);
    height: calc(100% - 100px - 4px);
    position: absolute;
    right: 50%;
    top: 50%;
    z-index: -1;
    transform: translate(50%, -50%);
    pointer-events: none;
}
.contents .service .image {
    width: 45%;
    position: relative;
    flex-shrink: 0;
}
.contents .service .image span.caption {
    font-size: 10px;
    position: absolute;
    right: 5px;
    bottom: 5px;
}
.contents .service .image span.caption.c-white {
    color: #fff;
}
.contents .service .detail {
    width: 50%;
    flex-shrink: 0;
}
.contents .service .detail p.txt {
    font-size: 20px;
    line-height: 1.75;
    margin-bottom: 20px;
    text-align: justify;
    text-justify: inter-ideograph;
}

</pre></body></html>