@charset "UTF-8";

/*--------------------------------------------------------------*/
/* CSS and Graphics are released under Creative Commons Licence */
/* https://www.webplus.jp/                                      */
/* Copyright (C) Kiyonobu Horita @ WEBPLUS Inc.                 */
/*--------------------------------------------------------------*/


/* ========================================================

　common

=========================================================== */

.pageSection .blk:not(.blk01),
.pageSection .box:not(.box01) {
    margin-top: 8.0rem;
}

.pageSection .blk > *:last-child,
.pageSection .blk > *:last-child > *:last-child,
.pageSection .blk > *:last-child > *:last-child > *:last-child,
.pageSection .note > *:last-child,
.pageSection .note > *:last-child > *:last-child,
.pageSection .note > *:last-child > *:last-child > *:last-child {
    margin-bottom: 0;
}

/*　テキスト関連
/*----------------------------------------------------------*/
.lowHeading h2 {
    position: relative;
    margin-bottom: 5.0rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid rgba(0, 60, 110, 1.0);
    font-size: 2.0rem;
}

.lowHeading h2 span {
    float: right;
    width: 100%;
    padding-top: 1.0rem;
    font-size: 1.2rem;
    text-transform: capitalize;
    text-align: right;
}

.lowHeading h2::after {
    display: block;
    position: absolute;
    bottom: -0.3rem;
    width: 30%;
    border-bottom: 3px solid rgba(255, 170, 0, 1.0);
    content: " ";
}

.pageSection .blk > h3,
.pageSection .box > h3 {
    margin-top: 4.0rem;
    margin-bottom: 2.0rem;
    padding: 0.75rem 0.75rem 0.5rem;
    border-top: 3px double rgba(0, 120, 200, 1.0);
    border-bottom: 3px double rgba(0, 120, 200, 1.0);
    color: rgba(0, 120, 200, 1.0);
    font-size: 1.8rem;
    font-weight: 500;
}

.pageSection .blk > h4,
.pageSection .box > h4 {
    margin-top: 3.0rem;
    margin-bottom: 2.0rem;
    padding: 0 0 0.5rem 0.5rem;
    border-bottom: 1px solid rgba(180, 180, 180, 1.0);
    font-size: 1.6rem;
    font-weight: 500;
}

.pageSection .blk > h5,
.pageSection .box > h5 {
    margin-top: 2.0rem;
    margin-bottom: 1.0rem;
    font-size: 1.6rem;
    font-weight: 400;
}

.pageSection .blk p,
.pageSection .box p {
    margin-bottom: 3.2rem;
}

.pageSection ul,
.pageSection ol {
    margin-left: 2.0rem;
}

.pageSection li {
    margin-bottom: 1.0rem;
}

/*　リンクリスト（マウスオーバー時の矢印あり）
/*----------------------------------------------------------*/
ul.arrowList {
    margin-left: 0;
    list-style: none;
}

.arrowList li {
    margin-bottom: 1.0rem;
}

.arrowList li::before {
    margin-right: 0.5rem;
    color: rgba(205, 70, 40, 1.0);
    font-family: "Font Awesome 5 Free";
    font-size: 1.4rem;
    font-weight: 700;
    content: "\f0da";
}

.arrowList a::after {
    visibility: hidden;
    position: relative;
    top: -0.15rem;
    font-family: "Font Awesome 5 Free";
    font-size: 1.4rem;
    font-weight: 700;
    content: "\f061";
    color: rgba(255, 255, 255, 1.0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.arrowList a:hover::after {
    visibility: visible;
    padding-left: 0.5rem;
    content: "\f061";
    color: rgba(205, 70, 40, 1.0);
}

/*　写真
/*----------------------------------------------------------*/
.pageSection .photo img {
    padding: 0.5rem;
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/*　プロセスフロー
/*----------------------------------------------------------*/
.processFlow div {
    position: relative;
    margin-bottom: 1.0rem;
}

.processFlow p {
    margin-bottom: 0;
    padding: 2.0rem 0.5rem;
    border-radius: 0.6rem;
    background-color: rgba(0, 120, 200, 1.0);
    color: rgba(255, 255, 255, 1.0);
    font-weight: 400;
    text-align: center;
}

/*　画像拡大
/*----------------------------------------------------------*/
/* アイコン */
.pageSection .zoom {
    display: block;
    position: relative;
}

.pageSection .zoom img:last-child {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
}

/* ポップアップ */
.pageSection .zoom figure {
    display: none;
    margin: 0;
}

.pageSection .zoom .inner {
    margin-left: 2.5%;
    margin-right: 2.5%;
    padding: 2.0rem 2.0rem 1.0rem;
    border-radius: 0.6rem;
    background-color: rgba(255, 255, 255, 1.0);
}

.pageSection .zoom aside {
    margin-top: 1.0rem;
    margin-bottom: 0;
    text-align: center;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.pageSection .zoom aside:hover {
    color: rgba(205, 70, 40, 1.0);
}

.pageSection .zoom figure:target {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.pageSection .zoom figure:target .overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: inherit;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.pageSection .zoom figure:target div {
    -webkit-animation: fadein 0.5s ease-in-out;
    animation: fadein 0.5s ease-in-out;
}

.pageSection .zoom figure:target img {
    opacity: 1.0;
}

@-webkit-keyframes fadein {

    0% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
        opacity: 0.2;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1.0;
    }

}

@keyframes fadein {

    0% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
        opacity: 0.2;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1.0;
    }

}

@media only screen and (max-width:767px) {

    .processFlow p br {
        display: none;
    }

    /* ボックス下の三角生成 */
    .processFlow div::before {
        position: absolute;
        top: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        border-top: 15px solid rgba(0, 120, 200, 1.0);
        border-right: 15px solid transparent;
        border-left: 15px solid transparent;
        content: '';
    }

    /* 最後のボックス下の三角をカット */
    .processFlow div:last-child::before {
        content: none;
    }

}

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

    .processFlow div {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        padding-left: 2.0rem;
        width: 100%;
    }

    .processFlow p {
        min-height: 10.0rem;
        text-align: left;
    }

    .processFlow div:first-child {
        padding-left: 0;
    }

    .processFlow div::after {
        position: absolute;
        top: 50%;
        right: -3.0rem; /* border高さ＋border幅 */
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        border: 15px solid transparent; /* border高さ */
        border-left: 15px solid rgba(0, 120, 200, 1.0); /* border幅 */
        content: "";
    }

    .processFlow div:last-child::after {
        content: none;
    }

}

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

    .pageSection .blk:not(.blk01),
    .pageSection .box:not(.box01) {
        margin-top: 10.0rem;
    }

    .lowHeading h2 {
        font-size: 2.4rem;
    }

    .pageSection .blk > h3,
    .pageSection .box > h3 {
        margin-top: 5.0rem;

        margin-bottom: 3.0rem;
        font-size: 2.0rem;
    }

    .pageSection .blk > h4,
    .pageSection .box > h4 {
        margin-top: 4.0rem;
        margin-bottom: 3.0rem;
        font-size: 1.8rem;
    }

    .pageSection .blk > h5,
    .pageSection .box > h5 {
        margin-top: 3.0rem;
        margin-bottom: 2.0rem;
        font-size: 1.6rem;
    }

    .pageSection ul,
    .pageSection ol {
        margin-left: 4.0rem;
    }

    ul.arrowList {
        margin-left: 2.0rem;
    }

}


/* ========================================================

　header

=========================================================== */

#masthead {
    position: relative;
    padding-top: 7.0rem;
}

#masthead img {
    width: 100%;
    height: auto;
}

#masthead .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#masthead .container {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
}

#masthead h2 {
    position: absolute;
    top: calc(7.0rem + 10%);
    left: 10%;
    color: rgba(255, 255, 255, 1.0);
    font-size: 2.4rem;
    font-weight: 500;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1.0);
}

#masthead aside {
    position: absolute;
    right: 10%;
    bottom: 10%;
    color: rgba(255, 255, 255, 1.0);
    text-transform: capitalize;
    text-align: right;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1.0);
}

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

    #masthead {
        padding-top: 8.0rem;
    }

    #masthead h2 {
        top: calc(7.0rem + 15%);
        font-size: 3.0rem;
    }

    #masthead aside {
        font-size: 1.8rem;
    }

}

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

    #masthead {
        padding-top: 10.0rem;
    }

}


/* ========================================================

　Service-1

=========================================================== */

#service01 .blk > figure {
    margin: 1.5rem 0;
    height: 9.25rem;
    overflow: hidden;
}

/*　ご依頼方法
----------------------------------------------------------- */
#service01 .blk02 figure {
    text-align: center;
}

#service01 .blk02 figcaption {
    color: rgba(0, 0, 0, 1.0);
    font-size: 1.4rem;
}

#service01 .blk02 img {
    border: 1px solid rgba(230, 230, 230, 1.0);
}

#service01 .blk02 .row div[class^="col-"]:nth-child(2) i {
    color: rgba(205, 70, 40, 1.0);
}

#service01 .blk02 .row div[class^="col-"]:nth-child(2) i:last-child {
    display: none;
}

/*　資料作成代行基本料金
----------------------------------------------------------- */
#service01 .blk03 table {
    border-collapse: separate;
    border-spacing: 0.5rem;
}

#service01 .blk03 tr:first-child th {
    background-color: rgba(230, 230, 230, 1.0);
    text-align: center;
}

#service01 .blk03 td {
    background-color: rgba(230, 240, 250, 1.0);
    text-align: right;
}

/*　ご依頼から納品までの流れ
----------------------------------------------------------- */
#service01 .flow {
    margin-left: 0;
    list-style: none;
}

#service01 .item {
    position: relative;
    min-height: 7.0rem;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
}

#service01 .item span {
    display: block;
    position: absolute;
    top: 50%;
    left: 1.5rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 1.0);
    background-color: rgba(180, 180, 180, 1.0);
    color: rgba(255, 255, 255, 1.0);
    font-size: 3.0rem;
    font-weight: 500;
    text-align: center;
    line-height: 3.6rem;
}

#service01 .item h5 {
    margin-left: 6.0rem;
    font-size: 2.2rem;
    font-weight: 400;
    text-align: left;
}

#service01 .flow li:nth-child(n+5) .item {
    background-color: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 1.0);
}

#service01 .flow li:nth-child(n+8) .item {
    background-color: rgba(0, 0, 0, 0.8);
}

#service01 .blk04 .note {
    margin: 0;
    padding: 1.5rem 2.0rem;
    border-radius: 0;
    background-color: rgba(230, 230, 230, 1.0);
    font-size: 1.6rem;
    text-align: justify;
    line-height: 2.4rem;
}

#service01 .blk04 .d-flex img {
    margin: 0 auto;
    padding-top: 1.0rem;
    width: 9.0rem;
    height: auto;
    opacity: 0.3;
}

/*　サブスクリプション
----------------------------------------------------------- */
#service01 .blk05 table {
    border-collapse: separate;
    border-spacing: 0.5rem;
}

#service01 .blk05 tr:first-child th {
    background-color: rgba(230, 230, 230, 1.0);
    text-align: center;
}

#service01 .blk05 td {
    background-color: rgba(230, 240, 250, 1.0);
    text-align: left;
}

#service01 .blk05 li {
    margin-bottom: 2.0rem;
}

#service01 .blk05 span {
    font-size: 1.4rem;
}

#service01 .blk05 td p {
    display: block;
    margin-top: 3.0rem;
    margin-bottom: 0;
    text-align: right;
}

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

    #service01 .blk > figure {
        height: 13.0rem;
    }

    #service01 .blk02 .row div[class^="col-"]:nth-child(2) i:first-child {
        display: none;
    }

    #service01 .blk02 .row div[class^="col-"]:nth-child(2) i:last-child {
        display: block;
    }

}

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

    #service01 .blk > figure {
        height: 11.0rem;
    }

    #service01 .item,
    #service01 .note {
        min-height: 6.0rem;
    }

    #service01 .flow li:nth-child(3) .item,
    #service01 .flow li:nth-child(3) .note {
        min-height: 8.0rem;
    }

    #service01 .flow li:nth-child(1) .item,
    #service01 .flow li:nth-child(1) .note,
    #service01 .flow li:nth-child(2) .item,
    #service01 .flow li:nth-child(2) .note,
    #service01 .flow li:nth-child(6) .item,
    #service01 .flow li:nth-child(6) .note {
        min-height: 10.5rem;
    }

    #service01 .item {
        float: left;
        width: 30.0rem;
    }

    #service01 .blk04 .note {
        margin-left: 31.0rem;
    }

    #service01 .blk04 li:last-child .item {
        float: inherit;
    }

    #service01 .blk04 .d-flex {
        clear: both;
        width: 30.0rem;
    }

    #service01 .blk05 tr:first-child th {
        min-width: 18.0rem;
    }

    #service01 .blk05 .table-responsive table {
        white-space: normal;
    }

}

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

    #service01 .blk > figure {
        height: 12.0rem;
    }

    #service01 th,
    #service01 td {
        padding: 1.0rem 5.0rem;
    }

    #service01 .flow li:nth-child(3) .item,
    #service01 .flow li:nth-child(3) .note {
        min-height: 6.0rem;
    }

    #service01 .flow li:nth-child(1) .item,
    #service01 .flow li:nth-child(1) .note,
    #service01 .flow li:nth-child(2) .item,
    #service01 .flow li:nth-child(2) .note,
    #service01 .flow li:nth-child(6) .item,
    #service01 .flow li:nth-child(6) .note {
        min-height: 8.0rem;
    }

    #service01 .blk05 ul {
        margin: 0;
    }

}


/* ========================================================

　Service-2

=========================================================== */

#service02 .blk01 .nav-tabs {
    margin: 0;
    margin-top: 6.0rem;
    margin-bottom: 6.0rem;
    list-style: none;
}

#service02 .blk01 .nav-tabs a {
    border-radius: 0;
    background-color: rgba(230, 230, 230, 1.0);
    color: rgba(51, 51, 51, 1.0);
    font-weight: 400;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#service02 .box03 li {
    font-weight: 400;
}

#service02 .box04 dl {
    margin-left: 2.0rem;
}

#service02 .box05 h5 {
    font-weight: 400;
}

#service02 .box05 h5::before,
#service02 .box06 h5::before {
    margin-right: 0.5rem;
    color: rgba(255, 170, 0, 1.0);
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f02e";
}

/*　研修実施までの流れ
----------------------------------------------------------- */
#service02 .flow {
    margin-left: 0;
    list-style: none;
}

#service02 .item {
    position: relative;
    min-height: 7.0rem;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
}

#service02 .item span {
    display: block;
    position: absolute;
    top: 50%;
    left: 1.5rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 1.0);
    background-color: rgba(180, 180, 180, 1.0);
    color: rgba(255, 255, 255, 1.0);
    font-size: 3.0rem;
    font-weight: 500;
    text-align: center;
    line-height: 3.6rem;
}

#service02 .item h5 {
    margin-left: 6.0rem;
    font-size: 2.0rem;
    font-weight: 400;
    text-align: left;
}

#service02 .flow .note {
    margin: 0;
    padding: 1.5rem 2.0rem;
    border-radius: 0;
    background-color: rgba(230, 230, 230, 1.0);
    font-size: 1.6rem;
    text-align: justify;
    line-height: 2.4rem;
}

#service02 .d-flex img {
    margin: 0 auto;
    padding-top: 1.0rem;
    width: 9.0rem;
    height: auto;
    opacity: 0.3;
}

/*　研修コンテンツ
----------------------------------------------------------- */
#service02 .box04 h5 {
    max-width: 36.0rem;
    padding: 1.5rem 1.0rem;
    border: 3px double rgba(180, 180, 180, 1.0);
    background-color: rgba(230, 240, 250, 1.0);
}

#service02 .box04 dt {
    margin-top: 2.0rem;
    margin-bottom: 0.5rem;
    color: rgba(0, 0, 0, 1.0);
    font-weight: 400;
}

#service02 .box04 dt::before {
    margin-right: 0.5rem;
    color: rgba(255, 170, 0, 1.0);
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f192";
}

#service02 .box04 table {
    min-width: 40.0rem;
    border-collapse: separate;
    border-spacing: 0.5rem;
}

#service02 .box04 th,
#service02 .box04 td {
    vertical-align: middle;
}

#service02 .box04 tr:first-child th {
    background-color: rgba(180, 180, 180, 1.0);
}

#service02 .box04 tr:nth-child(n+2) th {
    font-weight: 300;
    text-align: left;
}

#service02 .box04 tr:nth-child(n+2) th span {
    display: block;
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(180, 180, 180, 0.7);
    color: rgba(0, 0, 0, 1.0);
    font-weight: 500;
}

#service02 .box04 tr td:nth-child(even) {
    padding: 0;
}

#service02 .box04 tr td:nth-child(3) {
    background-color: rgba(0, 120, 200, 1.0);
    color: rgba(255, 255, 255, 1.0);
}

#service02 .box04 tr td:nth-child(5) {
    background-color: rgba(0, 60, 110, 1.0);
    color: rgba(255, 255, 255, 1.0);
}

#service02 .box04 td {
    background-color: rgba(255, 255, 255, 1.0);
}

#service02 .box04 table img {
    height: 7.0rem;
    opacity: 0.5;
}

/*　セミナーの概要
----------------------------------------------------------- */
#service02 .blk99 .inner,
#seminor .blk99 .inner {
    padding: 2.0rem 1.5rem !important;
    border: 1px solid rgba(230, 230, 230, 1.0);
    border-radius: 0.6rem;
    background-color: rgba(230, 230, 230, 0.25);
}

#service02 .blk99 h3,
#seminor .blk99 h3 {
    margin-bottom: 2.0rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(230, 230, 230, 1.0);
    text-align: center;
}

#service02 .blk99 h4,
#seminor .blk99 h4 {
    margin-top: 4.0rem;
    margin-bottom: 2.0rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(230, 230, 230, 1.0);
    background-color: transparent;
    text-align: center;
}

#service02 .blk99 a,
#seminor .blk99 a {
    font-weight: 300;
}

/*　基本料金
----------------------------------------------------------- */
#service02 .box05 table {
    min-width: 40.0rem;
    border-collapse: separate;
    border-spacing: 0.5rem;
}

#service02 .box05 tr:first-child th {
    background-color: rgba(230, 230, 230, 1.0);
    text-align: center;
}

#service02 .box05 tr:nth-child(n+2) th {
    vertical-align: middle;
}

#service02 .box05 tr:nth-child(odd) td:first-child,
#service02 .box05 tr:nth-child(even) td:nth-child(2) {
    text-align: left;
}

#service02 .box05 td {
    padding-bottom: 1.0rem !important;
    background-color: rgba(230, 240, 250, 1.0);
    text-align: right;
}

@media only screen and (max-width: 575px) {

    #service02 .blk01 .nav-tabs li:first-child {
        margin-bottom: 0.25rem;
    }

    #service02 .blk01 .nav-tabs a {
        border-color: rgba(230, 230, 230, 1.0);
    }

    #service02 .blk01 .nav-tabs a.active {
        border-color: rgba(205, 70, 40, 1.0);
        background-color: rgba(255, 255, 255, 1.0);
        color: rgba(205, 70, 40, 1.0);
    }

}

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

    #service02 .blk01 .nav-tabs a {
        border-bottom-color: rgba(205, 70, 40, 1.0);
        border-radius: 0.6rem 0.6rem 0 0;
    }

    #service02 .blk01 .nav-tabs a:hover {
        border-color: rgba(230, 230, 230, 1.0);
        border-bottom-color: rgba(0, 120, 200, 1.0);
        background-color: rgba(230, 230, 230, 0.7);
        color: rgba(0, 120, 200, 1.0);
    }

    #service02 .blk01 .nav-tabs a.active {
        border-color: rgba(205, 70, 40, 1.0);
        border-bottom-color: rgba(255, 255, 255, 1.0);
        background-color: rgba(255, 255, 255, 1.0);
        color: rgba(205, 70, 40, 1.0);
    }

    #service02 .box05 th {
        width: 30%;
    }

}

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

    #service02 .box02 .item,
    #service02 .box02 .note {
        min-height: 6.0rem;
    }

    #service02 .flow li:nth-child(2) .item,
    #service02 .flow li:nth-child(2) .note {
        min-height: 18.0rem;
    }

    #service02 .flow li:nth-child(3) .item,
    #service02 .flow li:nth-child(3) .note {
        min-height: 10.5rem;
    }

    #service02 .flow li:nth-child(6) .item,
    #service02 .flow li:nth-child(6) .note {
        min-height: 8.0rem;
    }

    #service02 .box02 .item {
        float: left;
        width: 30.0rem;
    }

    #service02 .box02 .note {
        margin-left: 31.0rem;
    }

    #service02 .box02 li:last-child .item {
        float: inherit;
    }

    #service02 .box02 .d-flex {
        clear: both;
        width: 30.0rem;
    }

    #service02 .blk02 .inner {
        padding: 3.0rem;
    }

    #service02 .box04 td {
        padding: 1.0rem;
    }

}

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

    #service02 .box04 table {
        white-space: normal;
    }

    #service02 .box04 tr td:nth-child(odd) {
        width: 20% !important;
    }

}

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

    #service02 .flow li:nth-child(2) .item,
    #service02 .flow li:nth-child(2) .note {
        min-height: 13.0rem;
    }

    #service02 .flow li:nth-child(3) .item,
    #service02 .flow li:nth-child(3) .note {
        min-height: 8.0rem;
    }

    #service02 .box05 th,
    #service02 .box05 td {
        padding: 1.0rem 5.0rem;
    }

}

/* ========================================================

　Service-3

=========================================================== */

#service03 .blk01 ul {
    margin-top: 3.0rem;
    margin-bottom: 3.0rem;
    color: rgba(0, 0, 0, 1.0);
    font-weight: 400;
}

/*　研修動画の構成イメージ
----------------------------------------------------------- */
#service03 .blk03 img {
    max-width: 62.0rem;
}

/*　対面研修との料金比較
----------------------------------------------------------- */
#service03 .blk04 .flow {
    margin-left: 0;
    list-style: none;
}

#service03 .blk04 .item {
    min-height: 7.0rem;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 2.0rem;
    font-weight: 400;
    text-align: center;
    line-height: 7.0rem;
}

#service03 .blk04 .flow .note {
    margin: 0;
    padding: 1.5rem 2.0rem;
    border-radius: 0;
    background-color: rgba(230, 230, 230, 1.0);
    font-size: 1.6rem;
    text-align: justify;
    line-height: 2.4rem;
}

#service03 .blk04 .d-flex img {
    margin: 0 auto;
    padding-top: 1.0rem;
    width: 9.0rem;
    height: auto;
    opacity: 0.3;
}

/* 表 */
#service03 .blk04 h5 {
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 2.0rem;
    text-align: center;
    line-height: 7.0rem;
}

#service03 .program th,
#service03 .program td {
    text-align: left;
}

#service03 .program th:first-child {
    background-color: rgba(0, 120, 200, 1.0);
    color: rgba(255, 255, 255, 1.0);
}

#service03 .program th:last-child {
    border: 1px solid rgba(230, 230, 230, 1.0);
    background-color: rgba(230, 240, 250, 1.0);
    color: rgba(51, 51, 51, 1.0);
}

#service03 .program td {
    border-bottom: 1px dashed rgba(180, 180, 180, 1.0);
}

#service03 .program tr:nth-child(5) td,
#service03 .program tr:nth-child(9) td,
#service03 .program tr:nth-child(13) td {
    margin-bottom: 1.0rem;
    border-bottom: none;
}

#service03 .comparison {
    margin-top: 3.0rem;
    margin-bottom: 1.0rem;
}

#service03 .comparison table {
    min-width: 60.0rem;
    border-collapse: separate;
    border-spacing: 0.5rem;
}

#service03 .comparison tr:first-child th {
    background-color: rgba(230, 230, 230, 1.0);
}

#service03 .comparison td {
    background-color: rgba(230, 240, 250, 1.0);
    text-align: right;
}

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

    /* eラーニング研修納品までのプロセス */
    #service03 .processFlow p {
        width: 100%;
        min-height: 14.0rem;
        margin: 0 auto;
        padding: 2.0rem 1.5rem;
        /*-webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
        writing-mode: vertical-lr;*/
    }

    #service03 .processFlow div::after {
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    #service03 .blk03 img {
        max-width: 100%;
    }

    #service03 .blk04 .item,
    #service03 .blk04 .note {
        min-height: 15.0rem;
    }

    #service03 .blk04 .item {
        float: left;
        width: 23.0rem !important;
    }

    #service03 .blk04 .note {
        margin-left: 24.0rem !important;
    }

    #service03 .blk04 .d-flex {
        clear: both;
        width: 23.0rem;
    }

    #service03 .program th:first-child {
        width: 23.0rem;
        border-right: 5px solid rgba(255, 255, 255, 1.0);
        border-bottom: 1px solid rgba(255, 255, 255, 1.0);
    }

}

@media all and (-ms-high-contrast:none) {

    /* IEハック */
    #service03 .processFlow p {
        height: 20.0rem;
    }

}


/* ========================================================

　Service-4

=========================================================== */

#service04 .blk01 div[class^="col-"]:first-child {
    margin-bottom: 2.0rem;
}

/*　サービス内容と基本料金
----------------------------------------------------------- */
#service04 dt {
    font-size: 1.8rem;
    font-weight: 500;
}

#service04 dt::before {
    margin-right: 0.5rem;
    color: rgba(255, 170, 0, 1.0);
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f02e";
}

#service04 dd {
    margin-top: 1.0rem;
}

#service04 dd .note {
    width: 60%;
    margin: 0 0 4.0rem 40%;
    padding: 1.0rem;
    text-align: center;
}

#service04 dd:last-child {
    margin-bottom: 0;
}

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

    #service04 div[class^="col-"] > figure {
        height: 23.5rem;
        overflow: hidden;
    }

    #service04 dd .note {
        width: 30%;
        margin: 0 0 4.0rem 70%;
    }

}

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

    #service04 div[class^="col-"] > figure {
        height: 28.0rem;
    }

}


/* ========================================================

　Seminor

=========================================================== */

#seminor .note {
    width: 80%;
    margin: 0 0 4.0rem 20%;
    padding: 1.0rem;
    text-align: center;
}

#seminor h4 {
    padding: 0.5rem 0.5rem 0.25rem;
    border-bottom-color: rgba(0, 60, 110, 1.0);
    background-color: rgba(230, 240, 250, 1.0);
    color: rgba(0, 60, 110, 1.0);
}

#seminor li {
    font-weight: 400;
}

#seminor .samplePic {
    margin-bottom: 4.0rem;
}

#seminor .samplePic figure {
    margin-bottom: 4.0rem;
    text-align: center;
}

#seminor .samplePic figure:last-child {
    margin-bottom: 0;
}

#seminor .samplePic img {
    width: 100%;
    max-width: 60.0rem;
    margin: 0 auto;
}

#seminor .slideshare p {
    font-size: 1.4rem;
}

#seminor iframe {
    width: 100%;
    max-width: 60.0rem;
    height: 48.0vh;
    border: none;
}

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

    #seminor .note {
        width: 50%;
        margin: 0 0 4.0rem 50%;
    }

}

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

    #seminor .note {
        width: 40%;
        margin: 0 0 4.0rem 60%;
    }

    #seminor .slideshare {
        text-align: center;
    }

    #seminor iframe {
        height: 49.3rem;
    }

}

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

    #seminor .note {
        width: 30%;
        margin: 0 0 4.0rem 70%;
    }

    #seminor iframe {
        height: 49.0rem;
    }

}


/* ========================================================

　Sample

=========================================================== */

#sample .blk .row h3 {
    margin-top: 5.0rem;
    margin-bottom: 2.0rem;
    border-bottom: 3px solid rgba(205, 70, 40, 1.0);
    color: rgba(205, 70, 40, 1.0);
    font-size: 2.0rem;
    font-weight: 500;
}

#sample figure a[href*="popup"] img:first-child {
    border: 1px solid rgba(230, 230, 230, 1.0);
}

#sample .blk .d-flex i {
    padding-top: 1.0rem;
    padding-bottom: 1.0rem;
    color: rgba(205, 70, 40, 1.0);
}

#sample .blk .d-flex .fa-arrow-right {
    display: none;
}

#sample .note {
    margin: 2.0rem 0;
    padding: 1.0rem;
    border-radius: 0.6rem;
    background-color: rgba(230, 240, 250, 1.0);
    color: rgba(0, 0, 0, 1.0);
    font-size: 1.4rem;
    text-align: justify;
    line-height: 2.0rem;
}

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

    #sample .blk .d-flex .fa-arrow-down {
        display: none;
    }

    #sample .blk .d-flex .fa-arrow-right {
        display: block;
    }

    #sample .note {
        padding: 1.5rem 2.0rem;
    }

}


/* ========================================================

　Company

=========================================================== */

/*　会社情報
----------------------------------------------------------- */
#company td {
    padding-bottom: 3.0rem;
}

#company td aside {
    display: block;
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

/*　山橋美穂の紹介
----------------------------------------------------------- */
/* 名前 */
#company .name {
    margin: 2.0rem 0 4.0rem;

}

#company .name h4 {
    margin-bottom: 0.5rem;
    color: rgba(0, 60, 110, 1.0);
}

#company .name h3 {
    margin-top: 2.0rem;
    font-size: 2.4rem;
    font-weight: 700;
}

#company .name h3 span {
    display: inline;
    font-size: 50%;
    font-weight: 500;
}

#company .name p {
    font-style: italic;
}

#company .mvp > div:first-child {
    margin-bottom: 2.0rem;
}

#company .mvp h5 {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
}

/* 略歴 */
#company dt {
    width: 8.0rem;
    font-size: 1.8rem;
    font-weight: 600;
}

#company dd {
    padding: 1.0rem 0;
    border-top: 2px dotted rgba(180, 180, 180, 1.0);
}

/* 資格 ＆ 関連サイト */
#company .blk03 h4 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

#company .blk03 ul {
    margin: 0;
    list-style: none;
}

#company .blk03 li {
    margin-bottom: 2.0rem;
}

#company .blk03 li:last-child {
    margin-bottom: 0;
}

#company .blk03 img:first-child {
    border: 1px solid rgba(230, 230, 230, 1.0);
}

#company .blk03 .box01 {
    margin-bottom: 4.0rem;
}

#company .blk03 .box02 li {
    padding-bottom: 2.0rem;
    border-bottom: 2px dotted rgba(180, 180, 180, 1.0);
}

#company .blk03 .box02 li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

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

    #company .blk02 h4 br {
        display: none;
    }

}

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

    #company table {
        border-collapse: separate;
        border-spacing: 0.5rem;
    }

    #company th {
        width: 20%;
    }

    #company td {
        width: 80%;
        padding-bottom: 1.0rem;
        border-bottom: 1px solid rgba(230, 230, 230, 1.0);
    }

    #company .blk02 .box02 {
        position: relative;
    }

    #company .name {
        position: absolute;
        top: 0;
        margin: 0;
        margin-top: 0.5rem;
    }

    #company .mvp {
        position: absolute;
        bottom: 0;
        width: inherit;
        margin: 0;
        margin-bottom: 0.5rem;
        padding-right: 1.5rem;
    }

    #company .mvp > div:first-child {
        margin-bottom: 0;
    }

    #company .mvp figure {
        margin: 0;
    }

    #company dt {
        clear: both;
        float: left;
        width: 12.0rem;
        margin: 0;
        padding: 1.0rem 2.5rem 1.0rem 0;
        text-align: right;
    }

    #company dt::after {
        margin-left: 0.5rem;
        color: rgba(180, 180, 180, 1.0);
        font-family: "Font Awesome 5 Free";
        content: "\f141";
    }

    #company dd {

        margin: 0;
        margin-left: 10.5rem;
        padding: 1.0rem 0 1.0rem 3.0rem;
        border: none;
        border-left: 4px solid rgba(180, 180, 180, 1.0);
    }

    #company dd::before {
        display: inline-block;
        position: relative;
        top: 0.25rem;
        left: -4.1rem;
        width: 1.8rem;
        height: 1.8rem;
        margin-right: -1.6rem;
        border: 3px solid rgba(0, 120, 200, 1.0);
        border-radius: 50%;
        background-color: rgba(120, 200, 250, 1.0);
        content: "";
        z-index: 100;
    }

    #company .blk03 .box01 {
        margin-bottom: 0;
    }

}


/* ========================================================

　Privacy

=========================================================== */

.privacy #privacyModal h2 {
    margin-bottom: 1.0rem;
    font-size: 2.4rem;
    line-height: 2.4rem;
    text-align: center;
}

.privacy #privacyModal .lead {
    text-align: center;
}

.privacy #privacyModal .note span {
    display: inline;
}

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

    .privacy #privacyModal h2 br,
    .privacy #privacyModal .lead br {
        display: none;
    }

}


/* ========================================================

　Sitemap

=========================================================== */

#sitemap h2 {
    margin-bottom: 5.0rem;
    font-size: 2.4rem;
    line-height: 2.4rem;
    text-align: center;
}

#sitemap ul {
    list-style: none;
}

#sitemap .page_item a::after {
    visibility: hidden;
    position: relative;
    top: -0.15rem;
    font-family: "Font Awesome 5 Free";
    font-size: 1.4rem;
    font-weight: 700;
    content: "\f061";
    color: rgba(255, 255, 255, 1.0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#sitemap .page_item a:hover::after {
    visibility: visible;
    padding-left: 0.5rem;
    content: "\f061";
    color: rgba(205, 70, 40, 1.0);
}

#sitemap #sitemap_list {
    margin-left: 0;
    margin-right: 0;
}


#sitemap .page_item::before {
    margin-right: 0.5rem;
    color: rgba(180, 180, 180, 1.0);
    font-family: "Font Awesome 5 Free";
    content: "\f02e";
}

#sitemap .children {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

#sitemap .children .page_item::before,
#sitemap .cat-item ul .cat-item::before {
    margin-right: 0.5rem;
    color: rgba(180, 180, 180, 1.0);
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f0da";
}

#sitemap .cat-item {
    margin-top: 4.0rem;
    padding-top: 4.0rem;
    border-top: 1px solid rgba(230, 230, 230, 1.0);
}

#sitemap .cat-item::before {
    margin-right: 0.5rem;
    color: rgba(180, 180, 180, 1.0);
    font-family: "Font Awesome 5 Free";
    content: "\f15c";
}

#sitemap .cat-item ul {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

#sitemap .cat-item ul .cat-item {
    position: relative;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

#sitemap_list .posts_in_category {
    position: absolute;
    top: 0.4rem;
    margin-left: 1.0rem;
}

#sitemap_list li .posts_in_category a {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    border: 1px solid rgba(230, 230, 230, 1.0);
    background: rgba(255, 255, 255, 1.0) url("../images/post_list.png") center center no-repeat;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}



/* ---- End of file --------------------------------------- */