@charset "UTF-8";

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


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

　Grobal Setting

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

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    font-size: 62.5%; /* ブラウザのルートフォントサイズである16pxを、1rem＝10pxにリセット */
    -webkit-text-size-adjust: 100%; /* モバイル時に機能するフォントの自動調整を100％に */
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


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

　body

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

body {
    width: 100%;
    height: 100%;
    color: rgba(51, 51, 51, 1.0);
    font: normal 300 1.6em/2.4rem 'Montserrat', 'Noto Sans CJK JP', 'Noto Sans JP', 'メイリオ', 'Meiryo', 'sans-serif';
    word-wrap: break-word;
    letter-spacing: 0.0625rem;
    overflow-x: hidden;
}


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

　Default Link Color

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

a:link,
a:visited {
    color: rgba(0, 120, 200, 1.0);
    text-decoration: none;
    outline: none;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

a:hover,
a:focus {
    color: rgba(205, 70, 40, 1.0);
}

a:active,
a.active {
    color: rgba(230, 0, 20, 1.0);
}


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

　section & h1～h6 & Other Text

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

/*　section
----------------------------------------------------------- */
.pageSection {
    padding: 8.0rem 0;
}

.pageSection .heading {
    text-align: center;
}

.pageSection .heading h2 {
    font-size: 2.4rem;
    font-weight: 700;
}

.pageSection .heading h3 {
    margin-bottom: 4.0rem;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
}

.pageSection .heading aside {
    margin: 1.0rem auto;
    width: 10.0rem;
    height: 0.1rem;
}

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

    .pageSection {
        padding: 10.0rem 0;
    }

    .pageSection .heading h2 {
        font-size: 3.0rem;
    }

}

/*　text
----------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0; /* すべての head の余白をゼロに */
    font-weight: 400;
}

p,
li {
    margin-bottom: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

em {
    font-style: normal;
}

u::before,
u::after {
    content: "　";
}

.att {
    color: rgba(255, 0, 0, 1.0);
    font-size: 1.4rem;
}

.note {
    margin: 5.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;
}

.note span {
    display: block;
    color: rgba(0, 0, 0, 1.0);
    font-weight: 500;
}

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

    .note {
        padding: 2.0rem;
    }

}

/*　table
----------------------------------------------------------- */
.pageSection table {
    width: 100%;
    margin: 0;
}

.pageSection .table-responsive {
    clear: both;
    border: none;
    text-align: center;
}

.pageSection .table-responsive table {
    white-space: nowrap;
}

.pageSection th {
    padding: 1.0rem;
    background-color: rgba(230, 230, 230, 0.5);
    color: rgba(0, 0, 0, 1.0);
    font-weight: 400;
    vertical-align: top;
}

.pageSection td {
    padding: 1.0rem;
    vertical-align: top;
}


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

    .pageSection table:not(.noBlk) th,
    .pageSection table:not(.noBlk) td {
        display: block;
        width: 100%;
    }

    .pageSection tr:last-child td {
        padding-bottom: 0 !important;
    }

    .pageSection .table-responsive::-webkit-scrollbar {
        height: 0.5rem;
    }

    .pageSection .table-responsive::-webkit-scrollbar-track {
        border-radius: 0.6rem;
        background-color: rgba(240, 240, 240, 1.0);
    }

    .pageSection .table-responsive::-webkit-scrollbar-thumb {
        border-radius: 0.6rem;
        background-color: rgba(100, 100, 100, 1.0);
    }

}

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

    .pageSection th,
    .pageSection td {
        padding: 1.0rem 2.0rem;
    }

}

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

　footer

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

#footer {
    padding: 2.0rem 0 7.0rem;
    background-color: rgba(0, 0, 0, 1.0);
    color: rgba(204, 204, 204, 1.0);
    font-size: 1.4rem;
    text-align: center;
}

#footer ul {
    margin-bottom: 2.0rem;
}

#footer li {
    margin: 0 auto;
    width: 18.0rem;
    list-style-type: none;
    text-align: left;
}

#footer a {
    color: rgba(204, 204, 204, 1.0);
}

#footer a:hover {
    color: rgba(255, 255, 255, 1.0);
}

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

    #footer li {
        width: inherit;
        display: inline-block;
    }

    #footer li:first-child {
        margin-right: 8.0rem;
    }

    #footer br {
        display: none;
    }

}

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

    #footer {
        padding: 5.0rem 0 11.0rem;
    }

}

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

    #footer {
        padding: 5.0rem 0;
    }

}


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

　Fixed Menu

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

/*　rightFixed
----------------------------------------------------------- */
#rightFixed {
    display: none;
}

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

    #rightFixed {
        display: block;
        position: fixed;
        bottom: 2.0rem;
        right: 2.0rem;
        z-index: 1042;
    }

    /*　Contact / SNS */
    #rightFixed .contact {
        width: 13.0rem;
        padding: 1.5rem 0;
        border-radius: 0.6rem;
        background-color: rgba(230, 230, 230, 1.0);
        text-align: center;
        -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    }

    #rightFixed h5 {
        margin-bottom: 0.5rem;
        color: rgba(0, 120, 200, 1.0);
        font-size: 1.6rem;
        font-weight: 700;
    }

    #rightFixed ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    #rightFixed li {
        display: inline-block;
        width: 4.0rem;
        height: 4.0rem;
        border-radius: 0.6rem;
        background-color: rgba(255, 255, 255, 1.0);
    }

    #rightFixed li:first-child {
        margin-right: 1.0rem;
    }

    #rightFixed i {
        margin-top: -0.3rem;
        font-size: 4.6rem;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    #rightFixed i[class*="phone-"] {
        color: rgba(255, 165, 0, 1.0);
    }

    #rightFixed i[class*="envelope-"] {
        color: rgba(0, 55, 105, 1.0);
    }

    #rightFixed i[class*="facebook-"] {
        color: rgba(24, 119, 242, 1.0);
    }

    #rightFixed i[class*="youtube-"] {
        color: rgba(255, 0, 0, 1.0);
    }

    #rightFixed a:hover i {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
    }

    /*　Scroll to Pagetop */
    .scroll-to-top {
        width: 6.0rem;
        margin: 2.0rem auto 0;
    }

    .scroll-to-top a img {
        width: 100%;
        height: auto;
        opacity: 0.7;
    }

    .scroll-to-top a:hover img {
        opacity: 1.0;
    }

}

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

    /* IEハック */
    #rightFixed i {
        margin-top: 0;
    }

}

/*　bottomFixed
----------------------------------------------------------- */
#bottomFixed {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0, 60, 110, 0.9);
    padding: 1.0rem 0 0.75rem;
}

#bottomFixed ul {
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

#bottomFixed li {
    display: inline-block;
    margin-right: 2.5rem;
}

#bottomFixed li:last-child {
    margin-right: 0;
}

#bottomFixed i {
    color: rgba(255, 255, 255, 1.0);
    font-size: 3.0rem;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

#bottomFixed i:hover {
    color: rgba(255, 240, 0, 1.0);
}

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

    #bottomFixed {
        padding: 1.5rem 0 1.0rem;
    }

    #bottomFixed li {
        margin-right: 4.0rem;
    }

}

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

    #bottomFixed {
        display: none;
    }

}


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

　Modal Window

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

.modalWindow .modal-dialog {
    max-width: 100vw;
    margin: 1.0rem;
}

.modalWindow .modal-content {
    padding-top: 6.0rem;
    padding-bottom: 6.0rem;
}

.modalWindow .modal-content h2 {
    margin-bottom: 1.0rem;
    font-size: 2.4rem;
    line-height: 2.4rem;
    text-align: center;
}

.modalWindow .modal-content .lead {
    text-align: center;
}

.modalWindow .button {
    margin-top: 5.0rem;
    text-align: center;
}

.modalWindow .btn {
    margin: 0 auto;
}

.modalWindow .close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3.0rem;
    height: 3.0rem;
    background-color: transparent;
    cursor: pointer;
}

.modalWindow .close-modal:hover {
    opacity: 0.3;
}

/* PrivacyPolicy */
#privacyModal .note span {
    display: inline;
}

#privacyModal dt {
    margin-bottom: 1.0rem;
    color: rgba(0, 0, 0, 1.0);
    font-weight: 400;
}

#privacyModal dd {
    margin-bottom: 5.0rem;
    font-size: 1.4rem;
    line-height: 2.0rem;
}

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

#privacyModal ul,
#privacyModal ol {
    margin: 1.0rem 0 1.0rem 3.0rem;
    line-height: 3.0rem;
}

/* Phone */
#phoneModal .note {
    text-align: center;
}

#phoneModal .note span {
    color: rgba(0, 60, 110, 1.0);
    font-size: 2.4rem;
    font-weight: 700;
}

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

    .modalWindow .modal-content h2 br,
    .modalWindow .modal-content .lead br {
        display: none;
    }

    #phoneModal p {
        text-align: center;
    }

    #phoneModal .note span {
        font-size: 3.6rem;
    }

}

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

    .modalWindow .modal-dialog {
        max-width: 64.0rem;
        margin: 2.0rem auto;
    }

}

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

    .modalWindow .modal-dialog {
        max-width: 80.0rem;
    }

}

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

    .modalWindow .modal-dialog {
        max-width: 110.0rem;
    }

}


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

　loop

=========================================================== */
.postLoops article {
    clear: both;
    margin-bottom: 1.5rem;
}

.postLoops .inner {
    height: 100%;
    padding: 1.0rem;
    border: 1px solid rgba(230, 230, 230, 1.0);
    background-color: rgba(255, 255, 255, 1.0);
}

.postLoops .main a {
    display: block;
}

/*　category
/*-------------------------------------------*/
.postLoops .cate {
    height: 2.4rem;
}

.postLoops .cate a {
    display: block;
    position: relative;
    left: -2.0rem;
    width: 100%;
    max-width: 20.0rem;
    background-color: rgba(180, 180, 180, 1.00);
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.2rem;
    text-align: center;
    line-height: 2.4rem;
    opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.postLoops .cate a::before {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    margin-right: -0.5rem;
    border: 12px solid rgba(180, 180, 180, 1.00);
    border-left: 0;
    border-right: 5px solid transparent;
}

.postLoops .cate a:hover {
    opacity: 1.0;
}

/* ポイント */
#points .postLoops .cate a {
    background-color: rgba(205, 70, 40, 1.00);
}

#points .postLoops .cate a::before {
    border: 12px solid rgba(205, 70, 40, 1.00);
    border-left: 0;
    border-right: 5px solid transparent;
}

#archive .cate a[href*="points"] {
    background-color: rgba(205, 70, 40, 1.00);
}

#archive .cate a[href*="points"]::before {
    border: 12px solid rgba(205, 70, 40, 1.00);
    border-left: 0;
    border-right: 5px solid transparent;
}

/* お知らせ */
.postLoops .cate.notice a {
    background-color: rgba(255, 170, 0, 1.00);
}

.postLoops .cate.notice a::before {
    border: 12px solid rgba(255, 170, 0, 1.00);
    border-left: 0;
    border-right: 5px solid transparent;
}

/* セミナー情報 */
.postLoops .cate.seminors a {
    background-color: rgba(0, 120, 200, 1.00);
}

.postLoops .cate.seminors a::before {
    border: 12px solid rgba(0, 120, 200, 1.00);
    border-left: 0;
    border-right: 5px solid transparent;
}

/* スタッフブログ */
.postLoops .cate.blog a {
    background-color: rgba(255, 150, 200, 1.00);
}

.postLoops .cate.blog a::before {
    border: 12px solid rgba(255, 150, 200, 1.00);
    border-left: 0;
    border-right: 5px solid transparent;
}

/* Ｑ＆Ａ*/
.postLoops .cate.faq a {
    background-color: rgba(40, 170, 60, 1.00);
}

.postLoops .cate.faq a::before {
    border: 12px solid rgba(40, 170, 60, 1.00);
    border-left: 0;
    border-right: 5px solid transparent;
}

/* お客様の声 */
.postLoops .cate.message a {
    background-color: rgba(90, 70, 60, 1.00);
}

.postLoops .cate.message a::before {
    border: 12px solid rgba(90, 70, 60, 1.00);
    border-left: 0;
    border-right: 5px solid transparent;
}

/* 出版・メディア・アプリ */
.postLoops .cate.publication a {
    background-color: rgba(170, 140, 190, 1.00);
}

.postLoops .cate.publication a::before {
    border: 12px solid rgba(170, 140, 190, 1.00);
    border-left: 0;
    border-right: 5px solid transparent;
}

/*　date
/*-------------------------------------------*/
.postLoops .date {
    color: rgba(0, 0, 0, 1.0);
    font-size: 1.4rem;
}

.postLoops .new {
    color: rgba(255, 0, 0, 1.0);
    font-weight: 500;
}

/*　head
/*-------------------------------------------*/
.postLoops h3 {
    margin: 1.0rem 0;
}

.postLoops a h3 {
    color: rgba(0, 0, 0, 1.0);
    font-size: 1.6rem;
    line-height: 2.0rem;
}

.postLoops a:hover h3 {
    color: rgba(205, 70, 40, 1.0);
}

.postLoops a h3::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;
}

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

/* セミナー情報の種別 */
.postLoops h3 span {
    position: relative;
    top: -0.15rem;
    margin-right: 1.0rem;
    color: rgba(0, 120, 200, 1.0);
    font-size: 1.4rem;
    font-weight: 500;
}

/*　thumbnail
/*-------------------------------------------*/
.postLoops figure {
    float: left;
    max-width: 10.0rem;
    margin-right: 1.0rem;
    margin-bottom: 0;
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.postLoops img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0.5rem;
}

/*　Excerpt
/*-------------------------------------------*/
.postLoops .main p {
    margin-top: 1.0rem;
    color: rgba(102, 102, 102, 1.0);
    font-size: 1.3rem;
    line-height: 1.8rem;
}

.postLoops .main p span {
    color: rgba(0, 0, 0, 1.0);
    font-weight: 400;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.postLoops .main a:hover p span {
    color: rgba(205, 70, 40, 1.0);
}

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

    .postLoops article {
        margin-bottom: 3.0rem;
    }

}

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

    .postLoops .inner {
        padding: 1.5rem;
    }

    .postLoops .cate a {
        display: inline-block;
        left: -2.5rem;
    }

    .postLoops figure {
        max-width: 12.0rem;
    }

}


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

　Sidebar

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

#sidebar {
    margin-top: 5.0rem;
}

#sidebar .inner {
    position: -webkit-sticky;
    position: sticky;
    top: 7.0rem;
}

#sidebar .nav-tabs {
    margin: 0;
    margin-bottom: 1.0rem;
}

#sidebar h4 {
    margin-bottom: 1.5rem;
    padding: 1.0rem 0;
    background-color: rgba(180, 180, 180, 1.0);
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
}

#sidebar a {
    color: rgba(0, 0, 0, 1.0);
}

#sidebar a:hover {
    color: rgba(205, 70, 40, 1.0);
}

/*　お問い合わせ
----------------------------------------------------------- */
#sidebar .contact {
    display: none;
}

/*　関連記事、人気記事
----------------------------------------------------------- */
#sidebar div[id*="tab9"]:nth-child(-n+2) .row div {
    clear: both;
    position: relative;
    margin-bottom: 1.0rem;
    border-bottom: 1px dashed rgba(180, 180, 180, 1.0);
}

#sidebar div[id*="tab9"]:nth-child(-n+2) div a {
    display: block;
    min-height: 8.0rem;
}

#sidebar figure {
    float: left;
    width: 8.0rem;
    margin-right: 1.0rem;
}

#sidebar figure img {
    width: 100%;
    height: auto;
}

#sidebar h3 {
    font-size: 1.3rem;
    overflow: hidden;
    zoom: 1;
}

#sidebar a h3::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;
}

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

#sidebar .date {
    position: absolute;
    right: 0;
    bottom: 0.75rem;
    color: rgba(180, 180, 180, 1.0);
    font-size: 1.3rem;
}

/*　カテゴリー
----------------------------------------------------------- */
#sidebar .category ul {
    margin: 0;
    list-style: none;
}

#sidebar .category .cat01 {
    padding-top: 1.0rem;
    border-top: 2px solid rgba(180, 180, 180, 1.0);
}

#sidebar .category .cat02 {
    padding-bottom: 1.0rem;
    border-bottom: 2px solid rgba(180, 180, 180, 1.0);
}

#sidebar .category li {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 1.4rem;
}

#sidebar .category li a::before {
    margin-right: 0.25rem;
    color: rgba(180, 180, 180, 0.7);
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f105";
}

#sidebar .category a {
    display: block;
    font-size: 1.4rem;
}

#sidebar .cat .children {
    margin-left: 1.4625rem;
}

#sidebar .cat .children li {
    border-bottom: 1px dashed rgba(180, 180, 180, 1.0);
}

#sidebar .cat .children li a::before {
    content: "\f0da";
}

/*　バナー
----------------------------------------------------------- */
#sidebar .banner {
    margin-top: 2.0rem;
}

#sidebar .banner .row > div {
    margin-bottom: 1.0rem;
}

#sidebar .banner .row > div:last-child {
    margin-bottom: 0;
}

#sidebar .banner a {
    display: block;
    position: relative;
}

#sidebar .banner a img {
    -webkit-box-shadow: none;
    box-shadow: none;
}

#sidebar .banner a:hover img {
    border-color: rgba(205, 70, 40, 1.0);
}

#sidebar .banner .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 120, 200, 0.5);
    opacity: 1.0;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

#sidebar .banner a:hover .layer {
    opacity: 0;
}

#sidebar .banner .icons img {
    position: absolute;
    width: 1.0rem;
    height: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-animation: scaleIn 2.0s infinite ease-in-out;
    animation: scaleIn 2.0s infinite ease-in-out;
}

#sidebar .banner .icons img:nth-child(1) {
    top: 1.0rem;
    left: 1.0rem;
}

#sidebar .banner a:hover .icons img:nth-child(1) {
    top: 2.0rem;
    left: 2.0rem;
}

#sidebar .banner .icons img:nth-child(2) {
    top: 1.0rem;
    right: 1.0rem;
}

#sidebar .banner a:hover .icons img:nth-child(2) {
    top: 2.0rem;
    right: 2.0rem;
}

#sidebar .banner .icons img:nth-child(3) {
    bottom: 1.0rem;
    left: 1.0rem;
}

#sidebar .banner a:hover .icons img:nth-child(3) {
    bottom: 2.0rem;
    left: 2.0rem;
}

#sidebar .banner .icons img:nth-child(4) {
    bottom: 1.0rem;
    right: 1.0rem;
}


#sidebar .banner a:hover .icons img:nth-child(4) {
    bottom: 2.0rem;
    right: 2.0rem;
}

#sidebar .banner h2 {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    color: rgba(255, 255, 255, 1.0);
    font-size: 2.0rem;
    font-weight: 500;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1.0);
}

#sidebar .banner a[href*="service01"] h2 {
    line-height: 3.2rem;
}

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

    #sidebar .date {
        right: 1.5rem;
    }

    #sidebar h3 {
        margin-right: 1.5rem;
    }

    #sidebar .category .cat01 {
        padding-top: 0;
        border-top: none;
    }

    #sidebar .category .cat02 {
        padding-bottom: 0;
        border-bottom: none;
    }

}

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

    #sidebar {
        margin-top: 0;
    }

    #sidebar .nav-link {
        border: 1px solid rgba(230, 230, 230, 1.0);
        border-radius: 0;
        background-color: rgba(230, 230, 230, 1.0);
    }

    #sidebar .nav-link.active {
        border: 1px solid rgba(255, 255, 255, 1.0);
        background-color: rgba(255, 255, 255, 1.0);
        color: rgba(205, 70, 40, 1.0);
    }

    #sidebar .contact {
        display: block;
        margin-bottom: 2.0rem;
    }


    #sidebar .contact a img {
        border: 1px solid rgba(0, 120, 200, 1.00);
    }

    #sidebar .contact a:hover img {
        border: 1px solid rgba(205, 70, 40, 1.0);
    }

    #sidebar .category .cat01 {
        padding-top: 1.0rem;
        border-top: 2px solid rgba(180, 180, 180, 1.0);
    }

    #sidebar .category .cat02 {
        padding-bottom: 1.0rem;
        border-bottom: 2px solid rgba(180, 180, 180, 1.0);
    }

}

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

    #sidebar .category li {
        margin-top: 0.5rem;
        font-size: inherit;
    }

    #sidebar .cat .children {
        margin-left: 1.6625rem;
    }

}


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

　Other

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

hr {
    margin: 5.0rem 0;
    background-color: rgba(230, 230, 230, 1.0);
}

::-moz-selection {
    background-color: rgba(255, 250, 160, 1.0);
    text-shadow: none;
}

::selection {
    background-color: rgba(255, 250, 160, 1.0);
    text-shadow: none;
}

/*　breadCrumb
----------------------------------------------------------- */
#breadCrumb {
    padding: 1.0rem 0;
    background-color: rgba(230, 230, 230, 1.0);
}

#breadCrumb p {
    font-size: 1.4rem;
    line-height: 1.8rem;
    word-wrap: normal;
}

#breadCrumb span::before {
    margin-left: 0.75rem;
    margin-right: 0.25rem;
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 700;
}

#breadCrumb span:first-child::before {
    content: none;
}

#breadCrumb span:first-child span::before {
    content: "\f015";
}

/*　image
/*-------------------------------------------*/
img {
    -webkit-backface-visibility: hidden; /* 画像をシャープに */
    backface-visibility: hidden;
}

img::-moz-selection {
    background: transparent; /* ページ上で画像を選択した時の背景色 */
}

img::selection {
    background: transparent; /* ページ上で画像を選択した時の背景色 */
}

img::-moz-selection {
    background: transparent; /* ページ上で画像を選択した時の背景色 */
}

a img {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover img {
    opacity: 0.7;
}

/*　パーティション
/*-------------------------------------------*/
.divider {
    width: 100%;
    height: 1.0rem;
    background: url("../images/footer.png") center center repeat;
}

/*　marker
----------------------------------------------------------- */
.yel.mkr {
    background-image: -o-linear-gradient(rgb(255, 255, 255, 1.0) 50%, rgb(255, 242, 0, 0.7) 50%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgb(255, 255, 255, 1.0)), color-stop(50%, rgb(255, 242, 0, 0.7)));
    background-image: linear-gradient(rgb(255, 255, 255, 1.0) 50%, rgb(255, 242, 0, 0.7) 50%);
    background-color: rgba(255, 242, 0, 0.7);
}

.blu.mkr {
    background-image: -o-linear-gradient(rgb(255, 255, 255, 1.0) 50%, rgb(26, 165, 219, 0.5) 50%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgb(255, 255, 255, 1.0)), color-stop(50%, rgb(26, 165, 219, 0.5)));
    background-image: linear-gradient(rgb(255, 255, 255, 1.0) 50%, rgb(26, 165, 219, 0.5) 50%);
    background-color: rgba(26, 165, 219, 0.5);
}

.red.mkr {
    background: -o-linear-gradient(rgb(255, 255, 255, 1.0) 50%, rgb(241, 93, 69, 0.25) 50%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgb(255, 255, 255, 1.0)), color-stop(50%, rgb(241, 93, 69, 0.25)));
    background: linear-gradient(rgb(255, 255, 255, 1.0) 50%, rgb(241, 93, 69, 0.25) 50%);
    background-color: rgba(241, 93, 69, 0.25);
}

/*　button
/*-------------------------------------------*/
.btn {
    padding: 1.25rem 2rem;
    border: 0;
    font-size: 1.4rem;
    outline: none;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.btn:hover {
    opacity: 0.7;
}

.btn.btnBlue {
    background-color: rgba(0, 120, 200, 1.0);
    color: rgba(255, 255, 255, 1.0);
}

.more {
    margin-top: 2.0rem;
    text-align: center;
}

.more a {
    display: block;
    position: relative;
    width: 20.0rem;
    margin: 0 auto;
    padding: 1.0rem;
    z-index: 1;
}

.more a::after {
    visibility: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 20.0rem;
    height: 0.1rem;
    margin: auto;
    border-radius: 0.6rem;
    background-color: rgba(255, 170, 0, 1.0);
    content: '.';
    color: transparent;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.more a:hover:after {
    visibility: visible;
    height: 100%;
    opacity: 1;
}



/* break point --------------------------------------------
	<576px , >=576px , =>768px , =>992px , =>1200px
	iPhone5 320x568
	iPhone6-8 375x667 *
	iPhone6-8Plus 414x736
	iPhoneX 375x812
	iPad（iPad Mini）768x1024 *
	iPadPro 1024x1366
	Pixel2 411x731
	Pixel2 XL 411x823
	PC lg 992 *
	PC xl 1200 *
----------------------------------------------------------- */
/* branc --------------------------------------------------
	1-0.25rem
	2-0.5rem
	3-1.0rem
	4-1.5rem
	5-3.0rem
----------------------------------------------------------- */
/* Montserrat -------------------------------------------
	Regular 400
	Medium 500
	Semi-bold 600
	Bold 700
    Extra-bold 800
    Black 900
----------------------------------------------------------- */
/* Noto Sans JP -------------------------------------------
	Light 300
	Regular 400
	Medium 500
	Bold 700
    Black 900
----------------------------------------------------------- */
/* Noto Serif JP ------------------------------------------------
	Light 300
	Regular 400
	Medium 500
	Bold 700
	Black 900
-------------------------------------------------------------- */

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