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

/*
  基本設定
------------------------------------------------------------ */

html {
    height: 100%;
    width: 100%;
    font-family: "Rounded Mplus 1p", Verdana, Roboto, "Droid Sans", "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
    color: #555;
}
/* PC */
@media screen and ( min-width:1200px ) {
    html { font-size: 18px; }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    html { font-size: 14px; }
}
body {
    height: 100%;
    width: 100%;
}
main {
    height: 100%;
    width: 100%;
}
img {
	vertical-align: bottom;
    width: 100%;
}
a {
    text-decoration: underline;
}

/*
  キーフレーム
------------------------------------------------------------ */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        margin-top: 5%;
    }
    100% {
        opacity: 1;
        margin-top: 0;
    }
}
.fadeIn { animation: 1.5s fadeIn; }
.fadeSlideIn { animation: 2s fadeSlideIn; }

/*
  汎用クラス
------------------------------------------------------------ */

.lorange { color: #e2a704; }
.dorange { color: #d06c15; }
.bold { font-weight: 900; }
.en { font-family: 'Poiret One', serif; }
.nm { font-family: 'Source Serif Pro', serif; }


/*
  ナビゲーションメニュー
------------------------------------------------------------ */

#navi {
    position: fixed;
    height: 100%;
    top: 0;
    right: 0;
    background: #222;
    z-index: 9999;
    color: #fff;
    display: none;
}
#navi .close img {
    cursor: pointer;
}
#navi ul  {
    width: 100%;
    text-align: center;
}
#navi ul li {
    border-bottom: 1px solid #999;
}
#navi ul li:first-child {
    border-top: 1px solid #999;
}
#navi ul li a {
    color: #fff;
}
#navi ul li span {
    display: block;
}
/* PC */
@media screen and ( min-width:1200px ) {
    #navi {
        width: 30%;
    }
    #navi .close {
        width: 100%;
        text-align: right;
    }
    #navi .close img {
        margin: 1.35em;
        width: 26px;
    }
    #navi .logo {
        width: 25%;
        margin: 0 auto 45px auto;
    }
    #navi ul li span {
        font-size: 16px;
        padding: 30px 0;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    #navi {
        width: 40%;
        font-size: 90%;
    }
    #navi .close {
        width: 100%;
        text-align: right;
    }
    #navi .close img {
        margin: 10px;
        width: 10%;
    }
    #navi .logo {
        display: none;
    }
    #navi ul li span {
        padding: 10px 0;
    }
    @media (min-width: 768px) and (max-width: 1199px) {
        #navi .logo {
            display: block;
            width: 25%;
            margin: 0 auto 45px auto;
        }
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    #navi {
        width: 85%;
    }
    #navi .close {
        width: 100%;
        text-align: right;
    }
    #navi .close img {
        margin: 12px 14px;
        width: 10%;
    }
    #navi .logo {
        width: 35%;
        margin: 0 auto 20px auto;
    }
    #navi ul li span {
        padding: 15px 0;
    }
}


/*
  ヘッダー
------------------------------------------------------------ */

header {
    height: 100%;
    width: 100%;
    background-image: url(../images/head.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f0f0f0;
    
}
header .black {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.22);
}
header .headTxt h2 {
    width: 100%;
    text-align: center;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 2px #000;
}
header .headTxt h2 .sizeup {
    font-size: 200%;
    text-shadow: 2px 2px #fff;
}
/* PC */
@media screen and ( min-width:1200px ) {
    header .headObi {
        position: fixed;
        left: 50%;
        width: 1200px;
        margin-left: -600px;
        padding-top: 20px;
        z-index: 999;
        display: flex;
        height: 50px;
    }
    header .headObi h1 {
        width: 20%;
    }
    header .headObi h1 img {
        width: 100%;
    }
    header .headObi .menu {
        width: 80%;
        text-align: right;
    }
    header .headObi .menu img {
        width: 36px;
    }
    header .headTxt h2 {
        position: absolute;
        top: 35%;
        font-size: 40px;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    header {
        overflow: hidden;
    }
    header .headObi {
        position: fixed;
        width: 100%;
        display: flex;
        z-index: 999;
        padding-top: 10px;
        height: 10%;
    }
    header .headObi h1 {
        width: 50%;
    }
    header .headObi h1 img {
        width: 100%;
        margin-left: 10px;
    }
    header .headObi .menu {
        width: 50%;
        text-align: right;
    }
    header .headObi .menu img {
        width: 22%;
        margin-right: 10px;
    }
    header .headTxt h2 {
        position: absolute;
        top: 35%;
        font-size: 28px;
    }
    @media (min-width: 481px) and (max-width: 767px) {
        header .headTxt h2 {
            top: 32%;
        }
        header .headObi h1 img {
            width: 50%;
        }
        header .headObi .menu img {
            width: 11%;
        }
    }
    @media (min-width: 768px) and (max-width: 1199px) {
        header .headTxt h2 {
            top: 40%;
        }
        header .headObi h1 img {
            width: 50%;
        }
        header .headObi .menu img {
            width: 11%;
        }
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    header {
        overflow: hidden;
    }
    header .headObi {
        position: fixed;
        width: 100%;
        display: flex;
        z-index: 999;
        padding-top: 10px;
        height: 5%;
    }
    header .headObi h1 {
        width: 50%;
    }
    header .headObi h1 img {
        width: 100%;
        margin-left: 10px;
    }
    header .headObi .menu {
        width: 50%;
        text-align: right;
    }
    header .headObi .menu img {
        width: 22%;
        margin-right: 10px;
    }
    header .headTxt h2 {
        position: absolute;
        top: 40%;
        font-size: 18px;
        text-shadow: 1px 1px 1px #000;
    }
    header .headTxt h2 .sizeup {
        text-shadow: 1px 1px #fff;
    }
}


/*
  ヘッダーとセクションの子ページ用設定
------------------------------------------------------------ */

header.child {
    background: none;
    height: auto;
}
section.child .kugiri2 {
    width: 100%;
    margin: 0 auto;
    background: #d17834;
}
section.child .kugiri3 {
    width: 100%;
    margin: 0 auto;
    background: #e2a704;
}
/* PC */
@media screen and ( min-width:1200px ) {
    section.child2 {
        padding-top: 50px;
    }
    section.child .kugiri2 {
        height: 10px;
    }
    section.child .kugiri3 {
        height: 10px;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    @media (min-width: 768px) and (max-width: 1199px) {
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    .sphide {
        display: none;
    }
    section.child .kugiri2 {
        display: none;
    }
    section.child .kugiri3 {
        display: none;
    }
}


/*
  セクション：新着情報
------------------------------------------------------------ */

section {
    width: 100%;
}
section .kugiri .oya {
    display: table;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    line-height: 1;
}
section .kugiri .ko1 {
    display: table-cell;
    border-bottom: 1px solid #777;
}
section .kugiri .ko2 {
    display: table-cell;
    vertical-align: bottom;
}
section .kugiri .ko3 {
    display: table-cell;
}
section .kugiri .ko4 {
    display: table-cell;
    vertical-align: top;
    color: #777;
}
section .news {
    background: #f6f6f6;
}
section .news .content .cate {
    padding: 0.1em 0.75em;
    border-radius: 5px;
    text-align: center;
    color: #fff;
}
section .news .content .cate.red {
    background: #ce3636;
}
section .news .content .cate.blue {
    background: #0071bc;
}
/* PC */
@media screen and ( min-width:1200px ) {
    section .kugiri {
        width: 1200px;
        margin: 0 auto;
        padding: 50px 0;
    }
    section .kugiri .ko2 {
        width: 20%;
    }
    section .kugiri .ko4 {
        width: 20%;
    }
    section .news {
        width: 100%;
        background: #f6f6f6;
        padding: 50px 0;
    }
    section .news .content {
        width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
    }
    section .news .content:not(:nth-child(1)) {
        margin-top: 1em;
    }
    section .news .mgntop {
        margin-top: 25px;
    }
    section .news .content .date {
        padding: 0.2em 0;
        margin-right: 1em;
    }
    section .news .content .cate {
        width: auto;
        white-space: nowrap;
        font-size: 13px;
        margin-top: 0.2em;
        margin-right: 1em;
    }
    section .news .content .text {
        flex-basis: 100%;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    section .kugiri {
        margin: 30px 15px;
    }
    section .kugiri .ko2 {
        width: 40%;
    }
    section .kugiri .ko4 {
        width: 40%;
    }
    section .news {
        margin: 0 15px;
        padding: 15px;
        background: #f6f6f6;
    }
    section .news .content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    section .news .content:not(:nth-child(1)) {
        margin-top: 1em;
    }
    section .news .content .date {
        flex-basis: 100%;
    }
    section .news .content .cate {
        font-size: 12px;
        color: #fff;
        flex-basis: calc(15% - 1.5em - 1em);
        margin-right: 1em;
    }
    section .news .content .text {
        flex-basis: 85%;
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    section .kugiri {
        margin: 30px 15px;
    }
    section .kugiri .ko2 {
        width: 40%;
    }
    section .kugiri .ko4 {
        width: 40%;
    }
    section .news {
        margin: 0 15px;
        padding: 15px;
        background: #f6f6f6;
    }
    section .news .content {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    section .news .content:not(:nth-child(1)) {
        margin-top: 1em;
    }
    section .news .content .date {
        flex-basis: 100%;
    }
    section .news .content .cate {
        font-size: 12px;
        color: #fff;
        flex-basis: calc(25% - 1.5em - 1em);
        margin-right: 1em;
    }
    section .news .content .text {
        flex-basis: 75%;
    }
}


/*
  セクション：コンテンツ
------------------------------------------------------------ */

section.contents {
    width: 100%;
}
section.contents a {
    text-decoration: none;
}
section.contents div div div {
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
}
section.contents div div div .caption {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
}
section.contents div div div .caption p {
    width: 80%;
    height: 50%;
    margin: 0 auto;
    text-align: center;
}
section.contents div div div .caption p.jp {
    position: relative;
}
section.contents div div div .caption p.jp span {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
}
section.contents div div div p {
    width: 60%;
    height: 50%;
    margin: 0 auto;
    text-align: center;
}
section.contents div div div p.jp {
    position: relative;
}
section.contents div div div p.jp span {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
}
section.contents div div .company {
    background-image: url(../images/menu01.jpg);
}
section.contents div div .company .caption {
    background: #4eb778;
    right: 0;
}
section.contents div div .business {
    background-image: url(../images/menu02.jpg);
}
section.contents div div .business .caption {
    background: #0071bc;
    left: 0;
}
section.contents div div .recruit {
    background-image: url(../images/menu03.jpg);
}
section.contents div div .contact {
    background-image: url(../images/menu04.jpg);
}
/* PC */
@media screen and ( min-width:1200px ) {
    section.contents .wrap {
        width: 1200px;
        margin: 0 auto;
        padding: 50px 0;
        font-size: 22px;
    }
    section.contents div div div {
        background-repeat: no-repeat;
        background-size: cover;
        background-color: #fff;
        overflow: hidden;
    }
    section.contents div div .company {
        width: 575px;
        height: 550px;
        float: left;
        background-position: bottom right;
        margin-bottom: 50px;
    }
    section.contents div div .business {
        width: 575px;
        height: 200px;
        float: left;
        background-position: center center;
        margin: 0 0 0 50px;
    }
    section.contents div div .recruit {
        width: 575px;
        height: 125px;
        float: left;
        background-position: top center;
        margin: 50px 0 0 50px;
    }
    section.contents div div .contact {
        width: 575px;
        height: 125px;
        float: left;
        background-position: bottom center;
        margin: 50px 0 0 50px;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    section.contents .wrap {
        margin: 30px 15px;
    }
    section.contents div div div {
        height: 100px;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: #fff;
        overflow: hidden;
    }
    section.contents div div .company {
        background-position: center center;
        margin-bottom: 30px;
    }
    section.contents div div .business {
        background-position: center center;
        margin-bottom: 30px;
    }
    section.contents div div .recruit {
        height: 60px;
        background-position: center center;
        margin-bottom: 30px;
    }
    section.contents div div .contact {
        height: 60px;
        background-position: center center;
    }
    @media (min-width: 768px) and (max-width: 1199px) {
        section.contents div div {
            font-size: 22px;
        }
        section.contents div div .company {
            height: 200px;
        }
        section.contents div div .business {
            height: 200px;
        }
        section.contents div div .recruit {
            height: 125px;
        }
        section.contents div div .contact {
            height: 125px;
        }
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    section.contents .wrap {
        margin: 30px 15px;
    }
    section.contents div div div {
        height: 100px;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: #fff;
        overflow: hidden;
    }
    section.contents div div .company {
        background-position: center center;
        margin-bottom: 30px;
    }
    section.contents div div .business {
        background-position: center center;
        margin-bottom: 30px;
    }
    section.contents div div .recruit {
        height: 60px;
        background-position: center center;
        margin-bottom: 30px;
    }
    section.contents div div .contact {
        height: 60px;
        background-position: center center;
    }
}


/*
  セクション：会社概要
------------------------------------------------------------ */

section.overview {
    width: 100%;
    background: #fff;
}
section.overview .head {
    width: 100%;
    background-image: url(../images/child01.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f0f0f0;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    text-align: center;
}
section.overview .tbl table {
    border: 1px solid #dfdfdf;
    width: 100%;
}
section.overview .tbl table th {
    text-align: left;
    font-weight: 900;
}
section.overview .tbl table th .label {
    display: inline-block;
    padding-left: 0.5em;
    border-left: 5px solid #e2a704;
}
section.overview .tbl table td .name {
    background: #f6f6f6;
    font-style: italic;
}
section.overview .tbl table td p .googlemap {
    width: 100%;
    border: 0;
}
section.overview .tbl table td .strong {
    font-weight: 900;
    color: #e2a704;
    font-size: 120%;
}
/* PC */
@media screen and ( min-width:1200px ) {
    section.overview .head {
        padding: 3em 0;
        font-size: 36px;
    }
    section.overview .tbl {
        width: 1200px;
        margin: 0 auto;
    }
    section.overview .tbl table th,
    section.overview .tbl table td {
        padding: 20px 0;
    }
    section.overview .tbl table th.line,
    section.overview .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.overview .tbl table th {
        width: 20%;
    }
    section.overview .tbl table td {
        line-height: 2;
    }
    section.overview .tbl table th .label {
        margin-left: 2em;
    }
    section.overview .tbl table td .name {
        padding: 15px;
        margin-right: 2em;
    }
    section.overview .tbl table td .name span {
        font-size: 12px;
    }
    section.overview .tbl table td .map {
        margin-right: 2em;
    }
    section.overview .tbl table td .googlemap {
        height: 500px;
    }
    section.overview .tbl table td .mgn {
        margin-top: 20px;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    section.overview .head {
        padding: 3em 0 2em 0;
        font-size: 26px;
    }
    section.overview .tbl {
        margin: 0 15px;
    }
    section.overview .tbl table th,
    section.overview .tbl table td {
        display: block;
    }
    section.overview .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.overview .tbl table th {
        padding: 1em 1em 0 1em;
    }
    section.overview .tbl table td {
        padding: 0.5em 1em 1em 1em;
    }
    section.overview .tbl table td .name {
        padding: 15px;
    }
    section.overview .tbl table td .name span {
        font-size: 12px;
    }
    section.overview .tbl table td .googlemap {
        height: 300px;
    }
    @media (min-width: 768px) and (max-width: 1199px) {
        section.overview .head {
            padding: 5em 0 4em 0;
        }
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    section.overview .head {
        padding: 3em 0 2em 0;
        font-size: 26px;
    }
    section.overview .tbl {
        margin: 0 15px;
    }
    section.overview .tbl table th,
    section.overview .tbl table td {
        display: block;
    }
    section.overview .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.overview .tbl table th {
        padding: 1em 1em 0 1em;
    }
    section.overview .tbl table td {
        padding: 0.5em 1em 1em 1em;
    }
    section.overview .tbl table td .name {
        padding: 15px;
    }
    section.overview .tbl table td .name span {
        font-size: 12px;
    }
    section.overview .tbl table td .googlemap {
        height: 300px;
    }
}

/*
  セクション：代表挨拶：元ミッション
------------------------------------------------------------ */

section.mission {
    width: 100%;
    background: #fff;
}
section.mission .box {
    background: #f6f6f6;
    margin: 0 auto;
}
/* PC */
@media screen and ( min-width:1200px ) {
    section.mission .box {
        display: flex;
        width: 1200px;
    }
    section.mission .box .text {
        order: 1;
        margin: 2em;
        line-height: 1.8;
    }
    section.mission .box .photo {
        order: 2;
        margin: 2em 2em 2em 0;
    }
    section.mission .box .photo img {
        width: 380px;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    section.mission .box {
        margin: 0 15px;
    }
    section.mission .box .text {
        padding: 15px;
        font-size: 90%;
    }
    section.mission .box .text  .spbr{
        display: none;
    }
    section.mission .box .photo {
        width: 100%;
        text-align: center;
        padding-top: 15px;
    }
    section.mission .box .photo img {
        width: 30%;
    }
    @media (min-width: 768px) and (max-width: 1199px) {
        section.mission .box {
            display: flex;
        }
        section.mission .box .text {
            order: 1;
            margin: 2em;
            line-height: 1.8;
        }
        section.mission .box .photo {
            order: 2;
            margin: 2em 2em 2em 0;
        }
        section.mission .box .photo img {
            width: 80%;
        }
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    section.mission .box {
        margin: 0 15px;
    }
    section.mission .box .text {
        padding: 15px;
        font-size: 90%;
    }
    section.mission .box .text  .spbr{
        display: none;
    }
    section.mission .box .photo {
        width: 100%;
        text-align: center;
        padding-top: 15px;
    }
    section.mission .box .photo img {
        width: 40%;
    }
}


/*
  セクション：沿革
------------------------------------------------------------ */

section.history {
    width: 100%;
    background: #fff;
}
section.history .tbl table {
    border: 1px solid #dfdfdf;
    width: 100%;
}
section.history .tbl table th {
    text-align: left;
    font-weight: 900;
}
section.history .tbl table th .label {
    display: inline-block;
    padding-left: 0.5em;
    border-left: 5px solid #e2a704;
}
section.history .tbl table td .name {
    background: #f6f6f6;
    font-style: italic;
}
section.history .tbl table td .name {
    background: #f6f6f6;
    font-style: italic;
}
section.history .tbl table td a {
    text-decoration: underline;
}
/* PC */
@media screen and ( min-width:1200px ) {
    section.history .tbl {
        width: 1200px;
        margin: 0 auto 50px;
    }
    section.history .tbl table th,
    section.history .tbl table td {
        padding: 20px 0;
    }
    section.history .tbl table th.line,
    section.history .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.history .tbl table th {
        width: 20%;
    }
    section.history .tbl table td {
        line-height: 2;
    }
    section.history .tbl table th .label {
        margin-left: 2em;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    section.history .head {
        padding: 3em 0 2em 0;
        font-size: 26px;
    }
    section.history .tbl {
        margin: 0 15px 15px 15px;
    }
    section.history .tbl table th,
    section.history .tbl table td {
        display: block;
    }
    section.history .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.history .tbl table th {
        padding: 1em 1em 0 1em;
    }
    section.history .tbl table td {
        padding: 0.5em 1em 1em 1em;
    }
    section.history .tbl table td .name {
        padding: 15px;
    }
    section.history .tbl table td .name span {
        font-size: 12px;
    }
    @media (min-width: 768px) and (max-width: 1199px) {
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    section.history .head {
        padding: 3em 0 2em 0;
        font-size: 26px;
    }
    section.history .tbl {
        margin: 0 15px 15px 15px;
    }
    section.history .tbl table th,
    section.history .tbl table td {
        display: block;
    }
    section.history .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.history .tbl table th {
        padding: 1em 1em 0 1em;
    }
    section.history .tbl table td {
        padding: 0.5em 1em 1em 1em;
    }
    section.history .tbl table td .name {
        padding: 15px;
    }
    section.history .tbl table td .name span {
        font-size: 12px;
    }
}


/*
  セクション：システム開発
------------------------------------------------------------ */

section.development {
    width: 100%;
    background: #fff;
}
section.development .head {
    width: 100%;
    background-image: url(../images/child02.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f0f0f0;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    text-align: center;
}
section.development .tbl table {
    border: 1px solid #dfdfdf;
    width: 100%;
}
section.development .tbl table th {
    text-align: left;
    font-weight: 900;
    vertical-align: top;
}
section.development .tbl table th .label {
    display: inline-block;
    padding-left: 0.5em;
    border-left: 5px solid #e2a704;
}
section.development .infini {
    background: #d17834;
}
section.development .infini .wrap .name {
    border-bottom: 1px solid #fff;
    text-align: center;
    font-weight: 900;
    color: #fff;
}
section.development .infini .wrap2 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}
section.development .infini .wrap2 p {
    text-align: center;
    color: #fff;
    font-weight: 900;
}
section.development .infini .wrap2 p.first {
    background: #e2a704;
    padding: 15px;
}
section.development .infini .wrap2 p.second {
    background: #8a2be2;
    padding: 15px;
}
section.development .infini .wrap2 p.third {
    background: #0cb0e0;
    padding: 15px;
}
section.development .infini .wrap3 {
    border-top: 1px solid #fff;
}
section.development .infini .wrap3 .text {
    background: #f6f6f6;
}
/* PC */
@media screen and ( min-width:1200px ) {
    section.development .head {
        padding: 3em 0;
        font-size: 36px;
    }
    section.development .tbl {
        width: 1200px;
        margin: 0 auto 50px;
    }
    section.development .tbl table th,
    section.development .tbl table td {
        padding: 20px 0;
    }
    section.development .tbl table th.line,
    section.development .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.development .tbl table th {
        width: 25%;
        line-height: 2;
    }
    section.development .tbl table td {
        line-height: 2;
    }
    section.development .tbl table th .label {
        margin-left: 2em;
    }
    section.development .tbl table td img {
        width: auto;
    }
    section.development .infini {
        width: 1080px;
        margin: 0 auto;
    }
    section.development .infini .wrap .name {
        text-align: center;
        padding: 30px 0;
        margin: 0 50px;
    }
    section.development .infini .wrap .name span {
        font-size: 88px;
    }
    section.development .infini .wrap2 {
        padding: 30px 50px;
    }
    section.development .infini .wrap2 p {
        font-size: 20px;
    }
    section.development .infini .wrap2 p img {
        width: 90%;
        height: auto;
    }
    section.development .infini .wrap2 .plus {
        font-size: 64px;
    }
    section.development .infini .wrap3 {
        margin: 0 50px;
        padding: 30px 0;
    }
    section.development .infini .wrap3 .text {
        padding: 30px;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    section.development .head {
        padding: 3em 0 2em 0;
        font-size: 26px;
    }
    section.development .tbl {
        margin: 0 15px 15px 15px;
    }
    section.development .tbl table th,
    section.development .tbl table td {
        display: block;
    }
    section.development .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.development .tbl table th {
        padding: 1em 1em 0 1em;
    }
    section.development .tbl table td {
        padding: 0.5em 1em 1em 1em;
    }
    section.development .infini {
        margin: 0 15px;
    }
    section.development .infini .wrap .name {
        text-align: center;
        padding: 15px 0;
        margin: 0 15px;
    }
    section.development .infini .wrap .name span {
        font-size: 36px;
    }
    section.development .infini .wrap2 {
        padding: 15px;
    }
    section.development .infini .wrap2 p {
        font-size: 10px;
    }
    section.development .infini .wrap2 p img {
        width: 90%;
        height: auto;
    }
    section.development .infini .wrap2 .plus {
        font-size: 36px;
    }
    section.development .infini .wrap3 {
        margin: 0 15px;
        padding: 15px 0;
    }
    section.development .infini .wrap3 .text {
        padding: 15px;
    }
    @media (min-width: 768px) and (max-width: 1199px) {
        section.development .head {
            padding: 5em 0 4em 0;
        }
        section.development .tbl table th,
        section.development .tbl table td {
            display: table-cell;
            padding: 20px 0;
        }
        section.development .tbl table th.line,
        section.development .tbl table td.line {
            border-bottom: 1px solid #dfdfdf;
        }
        section.development .tbl table th {
            width: 35%;
            line-height: 2;
        }
        section.development .tbl table td {
            line-height: 2;
        }
        section.development .tbl table th .label {
            margin-left: 2em;
        }
        section.development .tbl table td img {
            width: auto;
        }
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    section.development .head {
        padding: 3em 0 2em 0;
        font-size: 26px;
    }
    section.development .tbl {
        margin: 0 15px 15px 15px;
    }
    section.development .tbl table th,
    section.development .tbl table td {
        display: block;
    }
    section.development .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.development .tbl table th {
        padding: 1em 1em 0 1em;
    }
    section.development .tbl table td {
        padding: 0.5em 1em 1em 1em;
    }
    section.development .infini {
        margin: 0 15px;
    }
    section.development .infini .wrap .name {
        text-align: center;
        padding: 15px 0;
        margin: 0 15px;
    }
    section.development .infini .wrap .name span {
        font-size: 36px;
    }
    section.development .infini .wrap2 {
        padding: 15px;
    }
    section.development .infini .wrap2 p {
        font-size: 10px;
    }
    section.development .infini .wrap2 p img {
        width: 90%;
        height: auto;
    }
    section.development .infini .wrap2 .plus {
        font-size: 24px;
    }
    section.development .infini .wrap3 {
        margin: 0 15px;
        padding: 15px 0;
    }
    section.development .infini .wrap3 .text {
        padding: 15px;
    }
}


/*
  セクション：コールセンター事業
------------------------------------------------------------ */

section.callcenter {
    width: 100%;
    background: #fff;
}
section.callcenter .box {
    background: #f6f6f6;
    margin: 0 auto;
}
section.callcenter .box .point {
    border-top: 1px solid #777;
}
section.callcenter .box .point .last {
    margin-top: 1em;
    font-weight: normal;
    color: #555;
}
/* PC */
@media screen and ( min-width:1200px ) {
    section.callcenter .box {
        width: 1140px;
        margin: 0 auto;
        padding: 30px;
    }
    section.callcenter .box .icon {
        width: 100px;
        height: 100px;
        margin: 0 auto;
        background: #3cb371;
        border-radius: 100%;
        padding: 20px;
    }
    section.callcenter .box .text {
        margin: 30px 90px;
    }
    section.callcenter .box .point {
        margin: 0 30px;
        padding: 30px 60px 0;
    }
    section.callcenter .box .point li {
        font-weight: 900;
        color: #3cb371;
        font-size: 120%;
    }
    section.callcenter .box .point .last {
        text-align: right;
        font-size: 90%;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    section.callcenter .box {
        margin: 0 15px;
        padding: 15px;
    }
    section.callcenter .box .icon {
        width: 100px;
        height: 100px;
        margin: 0 auto;
        background: #3cb371;
        border-radius: 100%;
        padding: 20px;
    }
    section.callcenter .box .text {
        margin: 15px 0;
    }
    section.callcenter .box .point {
        padding-top: 15px;
    }
    section.callcenter .box .point li {
        font-weight: 900;
        color: #3cb371;
    }
    @media (min-width: 768px) and (max-width: 1199px) {
        section.callcenter .box .text {
            margin: 15px 60px;
        }
        section.callcenter .box .point {
            margin: 0 30px;
            padding: 15px 30px 0;
        }
        section.callcenter .box .point li {
            font-size: 120%;
        }
        section.callcenter .box .point .last {
            text-align: right;
            font-size: 90%;
        }
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    section.callcenter .box {
        margin: 0 15px;
        padding: 15px;
    }
    section.callcenter .box .icon {
        width: 100px;
        height: 100px;
        margin: 0 auto;
        background: #3cb371;
        border-radius: 100%;
        padding: 20px;
    }
    section.callcenter .box .text {
        margin: 15px 0;
    }
    section.callcenter .box .point {
        padding-top: 15px;
    }
    section.callcenter .box .point li {
        font-weight: 900;
        color: #3cb371;
    }
}


/*
  セクション：自社メディア
------------------------------------------------------------ */

section.media .tbl table {
    border: 1px solid #dfdfdf;
    width: 100%;
}
section.media .tbl table th {
    text-align: left;
    font-weight: 900;
    vertical-align: middle;
}
section.media .tbl table th .label {
    display: inline-block;
    padding-left: 0.5em;
    border-left: 5px solid #e2a704;
}
/* PC */
@media screen and ( min-width:1200px ) {
    section.media .tbl {
        width: 1200px;
        margin: 0 auto 50px;
    }
    section.media .tbl table th,
    section.media .tbl table td {
        padding: 20px 0;
    }
    section.media .tbl table th.line,
    section.media .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.media .tbl table th {
        width: 25%;
    }
    section.media .tbl table td {
        line-height: 2;
    }
    section.media .tbl table th .label {
        margin-left: 2em;
    }
    section.media .tbl table td img {
        width: auto;
        max-height: 50px;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    section.media .tbl {
        margin: 0 15px 15px 15px;
    }
    section.media .tbl table th,
    section.media .tbl table td {
        display: block;
    }
    section.media .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.media .tbl table th {
        padding: 1em 1em 0 1em;
    }
    section.media .tbl table td {
        padding: 0.5em 1em 1em 1em;
    }
    @media (min-width: 768px) and (max-width: 1199px) {
        section.media .tbl table th,
        section.media .tbl table td {
            display: table-cell;
            padding: 20px 0;
        }
        section.media .tbl table th.line,
        section.media .tbl table td.line {
            border-bottom: 1px solid #dfdfdf;
        }
        section.media .tbl table th {
            width: 35%;
        }
        section.media .tbl table td {
            line-height: 2;
        }
        section.media .tbl table th .label {
            margin: 0 1em 0 2em;
            white-space: nowrap;
        }
        section.media .tbl table td img {
            width: auto;
            max-height: 50px;
        }
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    section.media .tbl {
        margin: 0 15px 15px 15px;
    }
    section.media .tbl table th,
    section.media .tbl table td {
        display: block;
    }
    section.media .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.media .tbl table th {
        padding: 1em 1em 0 1em;
    }
    section.media .tbl table td {
        padding: 0.5em 1em 1em 1em;
    }
}


/*
  セクション：採用情報
------------------------------------------------------------ */

section.recruit {
    width: 100%;
    background: #fff;
}
section.recruit .head {
    width: 100%;
    background-image: url(../images/child03.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f0f0f0;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    text-align: center;
}
section.recruit .wrap p {
    border: 1px solid #e2a704;
}
section.recruit .wrap p span {
    color: #e2a704;
    font-size: 120%;
    font-weight: 900;
}
/* PC */
@media screen and ( min-width:1200px ) {
    section.recruit .head {
        padding: 3em 0;
        font-size: 36px;
    }
    section.recruit .wrap {
        width: 1200px;
        margin: 0 auto;
    }
    section.recruit .wrap p {
        padding: 35px;
        margin: 35px 0;
        line-height: 2;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    section.recruit .head {
        padding: 3em 0 2em 0;
        font-size: 26px;
    }
    section.recruit .wrap {
        margin: 0 15px;
    }
    section.recruit .wrap p {
        padding: 15px;
        margin: 15px 0;
    }
    @media (min-width: 768px) and (max-width: 1199px) {
        section.recruit .head {
            padding: 5em 0 4em 0;
        }
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    section.recruit .head {
        padding: 3em 0 2em 0;
        font-size: 26px;
    }
    section.recruit .wrap {
        margin: 0 15px;
    }
    section.recruit .wrap p {
        padding: 15px;
        margin: 15px 0;
    }
}


/*
  セクション：お問い合わせ
------------------------------------------------------------ */

section.contact {
    width: 100%;
    background: #fff;
}
section.contact .head {
    width: 100%;
    background-image: url(../images/child04.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f0f0f0;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    text-align: center;
}
section.contact .tbl table {
    border: 1px solid #dfdfdf;
    width: 100%;
}
section.contact .tbl table th {
    text-align: left;
    font-weight: 900;
}
section.contact .tbl table th .label {
    display: inline-block;
    padding-left: 0.5em;
    border-left: 5px solid #e2a704;
}
section.contact .tbl table td .name {
    background: #f6f6f6;
    font-style: italic;
}
section.contact .tbl table td .name {
    background: #f6f6f6;
    font-style: italic;
}
section.contact .tbl table td a {
    text-decoration: underline;
}
/* PC */
@media screen and ( min-width:1200px ) {
    section.contact .head {
        padding: 3em 0;
        font-size: 36px;
    }
    section.contact .tbl {
        width: 1200px;
        margin: 50px auto;
    }
    section.contact .tbl table th,
    section.contact .tbl table td {
        padding: 20px 0;
    }
    section.contact .tbl table th.line,
    section.contact .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.contact .tbl table th {
        width: 20%;
    }
    section.contact .tbl table td {
        line-height: 2;
    }
    section.contact .tbl table th .label {
        margin-left: 2em;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    section.contact .head {
        padding: 3em 0 2em 0;
        font-size: 26px;
    }
    section.contact .tbl {
        margin: 15px;
    }
    section.contact .tbl table th,
    section.contact .tbl table td {
        display: block;
    }
    section.contact .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.contact .tbl table th {
        padding: 1em 1em 0 1em;
    }
    section.contact .tbl table td {
        padding: 0.5em 1em 1em 1em;
    }
    section.contact .tbl table td .name {
        padding: 15px;
    }
    section.contact .tbl table td .name span {
        font-size: 12px;
    }
    @media (min-width: 768px) and (max-width: 1199px) {
        section.contact .head {
            padding: 5em 0 4em 0;
        }
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    section.contact .head {
        padding: 3em 0 2em 0;
        font-size: 26px;
    }
    section.contact .tbl {
        margin: 15px;
    }
    section.contact .tbl table th,
    section.contact .tbl table td {
        display: block;
    }
    section.contact .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.contact .tbl table th {
        padding: 1em 1em 0 1em;
    }
    section.contact .tbl table td {
        padding: 0.5em 1em 1em 1em;
    }
    section.contact .tbl table td .name {
        padding: 15px;
    }
    section.contact .tbl table td .name span {
        font-size: 12px;
    }
}


/*
  セクション：プライバシーポリシー
------------------------------------------------------------ */

section.privacy {
    width: 100%;
    background: #fff;
}
section.privacy .head {
    width: 100%;
    background-image: url(../images/child05.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f0f0f0;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    text-align: center;
}
section.privacy .wrap .label {
    display: block;
    padding-left: 0.5em;
    border-left: 5px solid #e2a704;
}
section.privacy .wrap p.indent {
    text-indent: 1em;
}
section.privacy .wrap p.right {
    text-align: right;
}
section.privacy .wrap p a {
    text-decoration: underline;
}
/* PC */
@media screen and ( min-width:1200px ) {
    section.privacy .head {
        padding: 3em 0;
        font-size: 36px;
    }
    section.privacy .wrap {
        width: 1200px;
        margin: 0 auto;
        padding: 50px 0;
        line-height: 1.8em;
    }
    section.privacy .wrap .label2 {
        margin-top: 30px;
    }
    section.privacy .wrap p {
        padding: 30px 0;
    }
    section.privacy .wrap ul {
        margin-left: 2em;
    }
    section.privacy .wrap ul.pdg {
        padding: 30px 0;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    section.privacy .head {
        padding: 3em 0 2em 0;
        font-size: 26px;
    }
    section.privacy .wrap {
        padding: 25px;
        line-height: 1.8em;
    }
    section.privacy .wrap .label2 {
        margin-top: 15px;
    }
    section.privacy .wrap p {
        padding: 15px;
    }
    section.privacy .wrap ul {
        margin-left: 1em;
    }
    section.privacy .wrap ul.pdg {
        padding: 15px;
    }
    @media (min-width: 768px) and (max-width: 1199px) {
        section.privacy .head {
            padding: 5em 0 4em 0;
        }
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    section.privacy .head {
        padding: 3em 0 2em 0;
        font-size: 26px;
    }
    section.privacy .wrap {
        padding: 20px;
        line-height: 1.8em;
    }
    section.privacy .wrap .label2 {
        margin-top: 15px;
    }
    section.privacy .wrap p {
        padding: 15px;
    }
    section.privacy .wrap ul {
        margin-left: 1em;
    }
    section.privacy .wrap ul.pdg {
        padding: 15px;
    }
}


/*
  セクション：約款
------------------------------------------------------------ */

section.yakkan {
    width: 100%;
    background: #fff;
}
section.yakkan .head {
    width: 100%;
    background-image: url(../images/child06.jpg);
    background-position: center bottom -100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f0f0f0;
    color: #fff;
    text-shadow: 2px 2px 2px #000;
    text-align: center;
}
section.yakkan .tbl table {
    border: 1px solid #dfdfdf;
    width: 100%;
}
section.yakkan .tbl table th {
    text-align: left;
    font-weight: 900;
    vertical-align: top;
}
section.yakkan .tbl table th .label {
    display: inline-block;
    padding-left: 0.5em;
    border-left: 5px solid #e2a704;
}
/* PC */
@media screen and ( min-width:1200px ) {
    section.yakkan .head {
        padding: 3em 0;
        font-size: 36px;
    }
    section.yakkan .tbl {
        width: 1200px;
        margin: 0 auto 50px;
    }
    section.yakkan .tbl table th,
    section.yakkan .tbl table td {
        padding: 20px 0;
    }
    section.yakkan .tbl table th.line,
    section.yakkan .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.yakkan .tbl table th {
        width: 25%;
        line-height: 2;
    }
    section.yakkan .tbl table td {
        line-height: 2;
    }
    section.yakkan .tbl table th .label {
        margin-left: 2em;
    }
    section.yakkan .tbl table td img {
        width: auto;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    section.yakkan .head {
        padding: 3em 0 2em 0;
        font-size: 26px;
    }
    section.yakkan .tbl {
        margin: 0 15px 15px 15px;
    }
    section.yakkan .tbl table th,
    section.yakkan .tbl table td {
        display: block;
    }
    section.yakkan .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.yakkan .tbl table th {
        padding: 1em 1em 0 1em;
    }
    section.yakkan .tbl table td {
        padding: 0.5em 1em 1em 1em;
    }
    @media (min-width: 768px) and (max-width: 1199px) {
        section.yakkan .head {
            padding: 5em 0 4em 0;
        }
        section.yakkan .tbl table th,
        section.yakkan .tbl table td {
            display: table-cell;
            padding: 20px 0;
        }
        section.yakkan .tbl table th.line,
        section.yakkan .tbl table td.line {
            border-bottom: 1px solid #dfdfdf;
        }
        section.yakkan .tbl table th {
            width: 35%;
            line-height: 2;
        }
        section.yakkan .tbl table td {
            line-height: 2;
        }
        section.yakkan .tbl table th .label {
            margin-left: 2em;
        }
        section.yakkan .tbl table td img {
            width: auto;
        }
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    section.yakkan .head {
        padding: 3em 0 2em 0;
        font-size: 26px;
    }
    section.yakkan .tbl {
        margin: 0 15px 15px 15px;
    }
    section.yakkan .tbl table th,
    section.yakkan .tbl table td {
        display: block;
    }
    section.yakkan .tbl table td.line {
        border-bottom: 1px solid #dfdfdf;
    }
    section.yakkan .tbl table th {
        padding: 1em 1em 0 1em;
    }
    section.yakkan .tbl table td {
        padding: 0.5em 1em 1em 1em;
    }
}


/*
  フッター
------------------------------------------------------------ */

footer {
    width: 100%;
    background: #f6f6f6;
    text-align: center;
}
footer .banner {
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .banner img {
    height: 100px;
    width: auto;
}
/* PC */
@media screen and ( min-width:1200px ) {
    footer {
        clear: both;
        padding: 50px 0;
    }
    footer .info .logo img {
        width: 100px;
    }
    footer .info .address {
        margin-top: 1em;
    }
    footer .text {
        margin-top: 50px;
        color: #e2a704;
        text-shadow: 1px 1px 2px #ccc;
    }
    footer .banner {
        margin-top: 50px;
    }
    footer .banner img.mgnleft {
        margin-left: 50px;
    }
    footer .copy {
        margin-top: 50px;
    }
}
/* タブレットやスマホ横向きなど */
@media (min-width: 481px) and (max-width: 1199px) {
    footer {
        padding: 30px 0;
        font-size: 12px;
    }
    footer .info .logo img {
        width: 15%;
    }
    @media (min-width: 768px) and (max-width: 1199px) {
        footer .info .logo img {
            width: 10%;
        }
    }
    footer .info .address {
        margin-top: 1em;
    }
    footer .text {
        margin-top: 30px;
        color: #e2a704;
        text-shadow: 1px 1px 2px #ccc;
    }
    footer .banner {
        margin-top: 30px;
    }
    footer .banner img.mgnleft {
        margin-left: 30px;
    }
    footer .copy {
        margin-top: 30px;
    }
}
/* スマホ */
@media screen and ( max-width:480px ) {
    footer {
        padding: 30px 0;
        font-size: 12px;
    }
    footer .info .logo img {
        width: 25%;
    }
    footer .info .address {
        margin-top: 1em;
    }
    footer .text {
        margin-top: 30px;
        color: #e2a704;
        text-shadow: 1px 1px 2px #ccc;
    }
    footer .banner {
        margin-top: 30px;
    }
    footer .banner img.mgnleft {
        margin-left: 30px;
    }
    footer .copy {
        margin-top: 30px;
    }
}


/*
  俺：スマホのみ
------------------------------------------------------------ */

footer #ore {
    position: absolute;
    width: 20%;
    bottom: 0;
    left: -12%;
    z-index: 999;
}
footer #ore2 {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: none;
}
footer #ore2 img.face {
    width: 20%;
}
footer #ore2 img.comment {
    width: 80%;
    margin-bottom: 2%;
}
/* iPad以上やPC等は俺ひょっこりは消す */
@media screen and ( min-width:768px ) {
    footer #ore {
        display: none;
    }
    footer #ore2 {
        display: none;
    }
}




/*
  追加設定 /business コールセンター営業情報
------------------------------------------------------------ */
section.callcenter .saleWrap{
    width: 1140px;
    margin: 0 auto;
}
.salesbox{
    margin: 100px auto 0 auto;
    padding: 30px;
}
.salesbox h2{color:#FF6F00; font-weight:bold; text-align: center; font-size:28px; margin:60px 0;} 
.salesbox .salesReq ul{display: flex; width:100%; margin:10px auto 60px auto;justify-content:space-around;}
.salesbox .salesReq ul li{ background-color:#FF6F00;width:22%;color:#fff;padding:1%;box-shadow: 0 0 4px gray; text-align: center;}

.cap02{margin:60px auto; text-align: center; font-size:20px; font-weight:bold;}

.salesbox .salesPoint ol {display: flex;width:100%; margin:10px auto 60px auto;justify-content:space-around; text-align: center;}
.salesbox .salesPoint ol li{ font-size:20px; border:6px solid #07A245; border-radius:10px; position: relative; line-height:2.0;width:28%;padding:1%;
 color:#07A245;}
.salesbox .salesPoint ol li div{ display: block;background-color:#fff; color:#000; text-align: center; margin-top:-30px; margin-bottom:20px; font-size:18px;}
.salesbox .salesPoint ol li div span{
 height:50px;
 width:50px;
 border-radius:50%;
 line-height:50px;
 text-align:center;
    background-color:#07A245;
    color:#fff;
    font-size:42px;
    margin:0 10px;
    display: inline-block;
}
.pricetbl{width:100%; border-left:1px solid #ddd; border-top:1px solid #ddd; font-size:14px;}
.pricetbl th,.pricetbl td{padding:8px; border-bottom:1px solid #ddd;  border-right:1px solid #ddd;}
.pricetbl th{ background-color:#ddd;}
.pricetbl td{ text-align: center;}
.pricetbl td.tblitm{ background-color:#ede0bf; text-align: left; width:28%;}

section.callcenter .box .text.Bldemp{margin: 60px auto;}
.Bldemp{ background-color:#FF6F00; color:#fff; font-size:22px; padding:20px; text-align: center; font-weight:bold;}

.salesbox &gt; p:last-child { margin-top: 1em; }

@media screen and (min-width: 1200px){

}

@media (max-width: 1199px) {
section.callcenter .saleWrap{
    width:100%;

}
section.callcenter .salesbox {
    margin: 0 15px;
    padding: 15px;
}
.salesbox .salesReq ul li{ width:20%;}
.salesbox .salesPoint ol li{ width:20%;}

}


@media (max-width: 896px) {

.salesbox .salesReq ul,
.salesbox .salesPoint ol{display: block; width:100%; }
.salesbox .salesReq ul li{width: 96%;padding:1%; margin-bottom:30px;}
    
.salesbox .salesPoint ol li{ font-size:16px; border:6px solid #07A245; border-radius:10px; line-height:1.4;width:100%;padding:1%;width: 96%; margin-bottom:30px;}
.salesbox .salesPoint ol li div{ margin-top:10px; margin-bottom:20px; font-size:18px;}

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