@charset "utf-8";
/*--------------------------------------------------------------*/
/* CSS and Graphics are released under Creative Commons Licence */
/* https://www.webplus.jp/                                       */
/* Copyright (C) Kiyonobu Horita @ WEBPLUS Inc.                 */
/*--------------------------------------------------------------*/




/* -----------------------------------------------------------

　.calendar

-------------------------------------------------------------- */

.calendar .nav-link {
    color: rgba(51, 51, 51, 1.0);
}

.calendar .nav-link.active {
    color: rgba(255, 105, 0, 1.0);
    font-weight: 500;
}

/* 月の表示・非表示 */
.calendar .nav-tabs li:nth-child(1),
.calendar #tab1 {
    display: none;
}

.calendar .nav-tabs li:nth-child(2),
.calendar #tab2 {
    display: none;
}

.calendar .nav-tabs li:nth-child(3),
.calendar #tab3 {
	display: none;
}

.calendar .nav-tabs li:nth-child(4),
.calendar #tab4 {
	display: none;
}

.calendar .nav-tabs li:nth-child(5),
.calendar #tab5 {
	display: none;
}

.calendar .nav-tabs li:nth-child(6),
.calendar #tab6 {

}

.calendar .nav-tabs li:nth-child(7),
.calendar #tab7 {
	display: none;
}

.calendar .nav-tabs li:nth-child(8),
.calendar #tab8 {
    display: none;
}

.calendar .nav-tabs li:nth-child(9),
.calendar #tab9 {
	display: none;
}

.calendar .nav-tabs li:nth-child(10),
.calendar #tab10 {
    display: none;
}

.calendar .nav-tabs li:nth-child(11),
.calendar #tab11 {
    display: none;
}

.calendar .nav-tabs li:nth-child(12),
.calendar #tab0 {
	display: none;
}

.calendar #pageContent h2 {
    margin: 20px 0;
    background: rgba(0, 121, 195, 1.0);
    color: rgba(250, 255, 255, 1.0);
    font-weight: 500;
}

.calendar #pageContent table {
    border: 10px solid rgba(0, 0, 0, 0.1);
    border-collapse: separate;
    border-spacing: 2px;
}

.calendar #pageContent th,
.calendar #pageContent td {
    padding: 5px;
}

.calendar #pageContent th {
    text-align: center;
}

.calendar #pageContent thead th {
    background: rgba(0, 0, 0, 0.1);
}

/* theadの各欄の横幅 */
.calendar #pageContent thead th:nth-child(1) {
    width: 7.5%;
}

.calendar #pageContent thead th:nth-child(2) {
    width: 7.5%;
}

.calendar #pageContent thead th:nth-child(3) {
    width: 20%;
}

.calendar #pageContent thead th:nth-child(4) {
    width: 65%;
}

/* 営業日 */
.calendar #pageContent .biz td:nth-of-type(1) {
    background: rgba(254, 209, 54, 0.7);
    text-align: center;
    vertical-align: middle;
}

/* 月曜日 */
.calendar #pageContent .mon td:nth-of-type(1) {
    background: rgba(255, 135, 145, 0.5);
}

.calendar #pageContent .mon td:nth-of-type(2) {
    color: rgba(250, 0, 0, 1.0);
}

/* 土曜日 */
.calendar #pageContent .sat th:nth-of-type(2) {
    background: rgba(0, 175, 235, 0.3);
    color: rgba(0, 175, 235, 1.0);
}

/* 日曜日 */
.calendar #pageContent .sun th:nth-of-type(2) {
    background: rgba(255, 135, 145, 0.5);
    color: rgba(204, 51, 0, 1.0);
}

.calendar #pageContent .sun td:nth-of-type(1) {
    background: rgba(255, 135, 145, 0.5);
}

.calendar #pageContent .sun td:nth-of-type(2) {
    color: rgba(250, 0, 0, 1.0);
}

/* 休館日 */
.calendar #pageContent .cls td:nth-of-type(1),
.calendar #pageContent .sat.cls td:nth-of-type(1) {
    background: rgba(255, 135, 145, 0.5);
}

.calendar #pageContent .cls td:nth-of-type(2),
.calendar #pageContent .sat.cls td:nth-of-type(2) {
    color: rgba(250, 0, 0, 1.0);
}

/* 休日（土日が休日の場合もあるため、thにクラス付与） */
.calendar #pageContent th.hol {
    background: rgba(255, 135, 145, 0.2);
}

.calendar #pageContent .sat th.hol {
    background: rgba(255, 135, 145, 0.2);
}

.calendar #pageContent .sun th.hol {
    background: rgba(255, 135, 145, 0.2);
}

.calendar #pageContent .mon th.hol {
    background: rgba(255, 135, 145, 0.2);
}

/* 営業・スケジュール内容 */
.calendar #pageContent td {
    background: rgba(254, 209, 54, 0.15);
}

/* テスト週 */
.calendar #pageContent .biz td:nth-of-type(1) span {
    color: rgba(255, 0, 0, 1.0);
    font-size: 0.9rem;
}

/* イベント */
.calendar #pageContent td strong {
    color: rgba(0, 121, 195, 1.0);
    font-weight: 500;
}

.calendar #pageContent td strong i {
    position: relative;
    top: 3px;
    margin-right: 5px;
    font-size: 1.5rem;
}

.calendar #pageContent td .special {
    color: rgba(255, 0, 255, 1.0);
}

/* 届出締切日 */
.calendar #pageContent td em {
    margin-left: 1.125rem;
    color: rgba(230, 0, 18, 1.0);

    font-style: normal;
}

.calendar #pageContent td em::before {
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f005";
}

/* 備考 */
.calendar #pageContent dl {
    margin-top: 30px;
}

.calendar #pageContent dt {
    margin-top: 20px;
    margin-bottom: 10px;
    color: rgba(0, 67, 124, 1.0);
    font-size: 1.2rem;
    font-weight: 500;
}

.calendar #pageContent dd {
    margin-left: 0.3rem;
    margin-bottom: 0;
}

.calendar #pageContent dd::before {
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    content: "\f02e";
}

@media only screen and (min-width:768px) {

    .calendar #pageContent th,
    .calendar #pageContent td {
        padding: 10px;
    }

}

/* -----------------------------------------------------------

　section

-------------------------------------------------------------- */
#pageContent h2 {
    margin-top: 30px;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 1.2rem;

}

#pageContent h2:first-child {
    margin-top: 0;
}

/*　table
/*-------------------------------------------*/
#pageContent table {
    width: 100%;
}

#pageContent th,
#pageContent td {
    padding: 5px 10px;
    vertical-align: top;
    text-align: left;
    white-space: nowrap;
}

#pageContent th {
    background: rgba(0, 0, 0, 0.03);

}

/*
#pageContent tr:first-child th {
	background:rgba(255, 235, 175, 0.1);
}

#pageContent tr:first-child th:first-child {
	background:none;
}
*/

@media only screen and (max-width:767px) {

    #pageContent .variableTbl th,
    #pageContent .variableTbl td {
        display: block;
        width: 100%;
        white-space: normal;
    }

}

@media only screen and (min-width:768px) {

    #pageContent h2 {
        margin-top: 50px;
        padding: 10px;
        font-size: 1.4rem;
    }

    #pageContent table {
        border-collapse: separate;
        border-spacing: 2px;
    }

    #pageContent th,
    #pageContent td {
        padding: 10px;
    }

}

@media only screen and (min-width:992px) {

    #pageContent h2 {
        margin-top: 100px;
        padding: 15px;
    }

    #pageContent th,
    #pageContent td {
        white-space: normal;
    }

}

/* -----------------------------------------------------------

　.course-

-------------------------------------------------------------- */
[class*="course-"] #pageContent h2 {
    color: rgba(255, 255, 255, 1.0);

}

[class*="course-"] #pageContent h3 {
    font-size: 1.125rem;

}

[class*="course-"] #pageContent h4 {
    color: rgba(0, 67, 124, 1.0);
    font-size: 1.125rem;

}

[class*="course-"] #pageContent .accordion {
    margin-bottom: 10px;
}

[class*="course-"] #pageContent .card-header {
    padding: 0;
}

[class*="course-"] #pageContent .card-header a {
    display: block;
    padding: 0.75rem 1.25rem;
}

/* オープン時のヘッダー */
[class*="course-"] #pageContent a[aria-expanded="true"] {
    color: rgba(51, 51, 51, 1.0);
}

[class*="course-"] #pageContent a[aria-expanded="true"] p::after {
    margin-left: 10px;
    font-size: 1.125rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f106";
}

/* クローズ時のヘッダー */
[class*="course-"] #pageContent a[aria-expanded="false"] p::after {
    margin-left: 10px;
    font-size: 1.125rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f107";
}

/* 曜日・時間 */
[class*="course-"] #pageContent table {
    margin-bottom: 20px;
}

[class*="course-"] #pageContent th {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

[class*="course-"] #pageContent td {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

/* .note内 */
[class*="course-"] #pageContent .note {
    margin-top: 50px;
}

[class*="course-"] #pageContent .note ul {
    margin-left: 1.5rem;
    list-style: circle;
}

[class*="course-"] #pageContent .note dt {
    color: rgba(0, 67, 124, 1.0);

}

/* .card-body内 */
[class*="course-"] #pageContent .card-body dt {
    color: rgba(70, 206, 204, 1.0);

}

[class*="course-"] #pageContent .card-body dt::before {
    font-size: 1.0rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    content: "\f192";
}

[class*="course-"] #pageContent .card-body dd {
    margin-left: 1.0rem;
}

[class*="course-"] #pageContent .card-body .note dt::before {
    content: none;
}

/* link */
[class*="course-"] #pageContent a {}

[class*="course-"] #pageContent a:hover {
    color: rgba(255, 105, 0, 1.0);
}

/* -----------------------------------------------------------
　.course-a
-------------------------------------------------------------- */
.course-a #pageContent h2 {
    background: rgba(234, 104, 162, 1.0);
}

.course-a #pageContent h3 {
    color: rgba(234, 104, 162, 1.0);
}

.course-a #pageContent .card-header {
    background: rgba(234, 104, 162, 0.05);
}

.course-a #pageContent .card-header {
    font-size: 80%;
}

.course-a #pageContent .card-header span {
    font-size: 1.125rem;
}

.course-a #pageContent a {
    color: rgba(234, 104, 162, 1.0);
}

/* -----------------------------------------------------------
　.course-b
-------------------------------------------------------------- */
.course-b #pageContent h2 {
    background: rgba(248, 181, 0, 1.0);
}

.course-b #pageContent h3 {
    color: rgba(248, 181, 0, 1.0);
}

.course-b #pageContent .card-header {
    background: rgba(248, 181, 0, 0.05);
}

.course-b #pageContent a {
    color: rgba(248, 181, 0, 1.0);
}

/* ※ */
.course-b #pageContent sup {
    color: rgba(255, 0, 0, 1.0);
}

/* -----------------------------------------------------------
　.course-c
-------------------------------------------------------------- */
.course-c #pageContent h2 {
    background: rgba(117, 171, 0, 1.0);
}

.course-c #pageContent h3 {
    color: rgba(117, 171, 0, 1.0);
}

.course-c #pageContent .card-header {
    background: rgba(117, 171, 0, 0.05);
}

.course-c #pageContent a {
    color: rgba(117, 171, 0, 1.0);
}

/* -----------------------------------------------------------
　.course-d
-------------------------------------------------------------- */
.course-d #pageContent h2 {
    background: rgba(0, 175, 235, 1.0);
}

.course-d #pageContent h3 {
    margin-top: 30px;
    color: rgba(0, 175, 235, 1.0);
}

.course-d #pageContent h5 {
    color: rgba(255, 0, 255, 1.0);
    font-size: 1.4rem;

}

.course-d #pageContent h5::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f005";
}

.course-d #pageContent .card-header {
    background: rgba(0, 175, 235, 0.05);
}

.course-d #pageContent th {
    vertical-align: bottom;
}

.course-d #pageContent a {
    color: rgba(0, 175, 235, 1.0);
}

.course-d #pageContent .blk {
    color: rgba(255, 105, 0, 1.0);
    font-weight: 500;
}

.course-d #pageContent .btn-pdf {
    padding: 5px 10px;
}

.course-d #pageContent .btn-pdf:hover {
    color: rgba(255, 255, 255, 1.0) !important;
}

@media only screen and (min-width:768px) {

    [class*="course-"] #pageContent .note dd {
        margin-left: 1.125rem;
    }

}

/* -----------------------------------------------------------

　.enrollment

-------------------------------------------------------------- */
.enrollment #pageContent h2 {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.enrollment #pageContent ol {
    margin-left: 1.5rem;
}

.enrollment #pageContent ul {
    margin-left: 1.5rem;
    color: rgba(255, 0, 0, 1.0);
    list-style: disc;
}

.enrollment #pageContent li {
    line-height: 2.0rem;
}

@media only screen and (min-width:768px) {

    [class*="course-"] #pageContent .note dd {
        margin-left: 1.125rem;
    }

}

/* -----------------------------------------------------------

　.price

-------------------------------------------------------------- */
[class*="price-"] #pageContent h2 {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

[class*="price-"] #pageContent h3 {
    margin-top: 30px;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 1.2rem;

}

[class*="price-"] #pageContent table {
    margin-bottom: 10px;
}

[class*="price-"] #pageContent th {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

[class*="price-"] #pageContent td {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

/* -----------------------------------------------------------
　.price-a
-------------------------------------------------------------- */
.price-a #pageContent h3 {
    background: rgba(234, 104, 162, 1.0);
    color: rgba(255, 255, 255, 1.0);
}

.price-a #pageContent table.price-a th {
    background: rgba(234, 104, 162, 0.05);
}

/* -----------------------------------------------------------
　.price-b
-------------------------------------------------------------- */
.price-b #pageContent h3 {
    background: rgba(248, 181, 0, 1.0);
    color: rgba(255, 255, 255, 1.0);
}

.price-b #pageContent table.price-b th {
    background: rgba(248, 181, 0, 0.05);
}

/* -----------------------------------------------------------
　.price-c
-------------------------------------------------------------- */
.price-c #pageContent h3 {
    background: rgba(117, 171, 0, 1.0);
    color: rgba(255, 255, 255, 1.0);
}

.price-c #pageContent table.price-c th {
    background: rgba(117, 171, 0, 0.05);
}

/* -----------------------------------------------------------
　.price-d
-------------------------------------------------------------- */
.price-d #pageContent h3 {
    background: rgba(0, 175, 235, 1.0);
    color: rgba(255, 255, 255, 1.0);
}

.price-d #pageContent table.price-d th {
    background: rgba(0, 175, 235, 0.05);
}

@media only screen and (min-width:768px) {

    [class*="price-"] #pageContent h3 {
        margin-top: 50px;
        padding: 10px;
        font-size: 1.4rem;
    }

}

@media only screen and (min-width:992px) {

    [class*="price-"] #pageContent h3 {
        margin-top: 100px;
        padding: 15px;
    }

}

/* -----------------------------------------------------------

　facilities

-------------------------------------------------------------- */

/* -----------------------------------------------------------
　.inside
-------------------------------------------------------------- */
.inside #pageContent figure {
    margin: 50px 0;
}

.inside .photos img {
    border-radius: 8px;
    opacity: 0.7;
}

.inside .photos img:hover {
    opacity: 1.0;
}

/* -----------------------------------------------------------
　.parking
-------------------------------------------------------------- */
.parking #pageContent h2 {
    padding: 0;
    color: rgba(255, 105, 0, 1.0);
    font-size: 1.8rem;
    font-family: "Noto Serif JP", serif !important;

}

.parking #pageContent h3 {
    margin-top: 50px;
    font-size: 1.2rem;

}

.parking #pageContent h3::before {
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f1b9";
}

.parking #pageContent ul {
    margin-left: 1.5rem;
    color: rgba(255, 0, 0, 1.0);
    font-weight: 500;
    list-style: disc;
}

/* -----------------------------------------------------------
　.bus
-------------------------------------------------------------- */
.bus #pageContent ul {
    margin-left: 1.5rem;
    color: rgba(0, 0, 0, 1.0);
    list-style: disc;
}

/* -----------------------------------------------------------
　.sterilization
-------------------------------------------------------------- */
.sterilization #pageContent h2 {
    margin: 50px 0;
    padding: 0;
    color: rgba(255, 105, 0, 1.0);
    font-size: 2.0rem;
    font-family: "Noto Serif JP", serif !important;

}

.sterilization #pageContent ul {
    margin-left: 1.5rem;
    list-style: disc;
}

.sterilization #pageContent dl {
    margin-bottom: 50px;
}

.sterilization #pageContent dt {
    margin-top: 30px;
    margin-bottom: 10px;
    color: rgba(0, 121, 195, 1.0);

}

.sterilization #pageContent dt::before {
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f00c";
}

.sterilization #pageContent dd {
    word-break: break-all;
}

@media only screen and (min-width:768px) {

    .sterilization #pageContent dd {
        margin-left: 1.5rem;
    }

}

/* -----------------------------------------------------------

　.registration

-------------------------------------------------------------- */
.registration #pageContent h2 {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.registration #pageContent h3 {
    margin-top: 30px;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 1.2rem;

}

.registration #pageContent h3#baby {
    background: rgba(234, 104, 162, 1.0);
    color: rgba(255, 255, 255, 1.0);
}

.registration #pageContent h3#school {
    background: rgba(248, 181, 0, 1.0);
    color: rgba(255, 255, 255, 1.0);
}

.registration #pageContent h3#enjoy {
    background: rgba(0, 175, 235, 1.0);
    color: rgba(255, 255, 255, 1.0);
}

.registration #pageContent h5 {
    margin: 0;
    color: rgba(0, 121, 195, 1.0);
    font-size: 1.125rem;

}

.registration #pageContent h5::before {
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f207";
}

.registration #pageContent ol {
    margin-left: 1.5rem;
}

.registration #pageContent ul {
    margin-left: 1.5rem;
    list-style: disc;
}

.registration #pageContent ul.none {
    margin-left: 1.5rem;
    list-style: none;
}

.registration #pageContent li {
    line-height: 2.0rem;
}

.registration #pageContent ol ul {
    margin-left: 0;
    list-style: none;
}

.registration #pageContent ol ul li::before {
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    content: "\f192";
}

.registration #pageContent table {
    margin-bottom: 10px;
    line-height: 1.8rem;
}

.registration #pageContent th {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.registration #pageContent .baby th {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.registration #pageContent .baby th {
    background: rgba(234, 104, 162, 0.05);
}

.registration #pageContent .school th {
    background: rgba(248, 181, 0, 0.05);
}

.registration #pageContent .enjoy th {
    background: rgba(0, 175, 235, 0.05);
}

.registration #pageContent td {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.registration #pageContent .red {
    color: rgba(255, 0, 0, 1.0);
}

@media only screen and (min-width:768px) {

    .registration #pageContent h3 {
        margin-top: 50px;
        padding: 10px;
        font-size: 1.4rem;
    }

}

@media only screen and (min-width:992px) {

    .registration #pageContent h3 {
        margin-top: 100px;
        padding: 15px;
    }

}

/* -----------------------------------------------------------

　.staffs

-------------------------------------------------------------- */
.staffs #pageContent th {
    background: rgba(213, 234, 216, 1.0);
}

.staffs #pageContent td span {
    margin-right: 3px;
    padding: 5px 8px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 1.00);
    font-size: 1.0rem;

    text-shadow: 0.05rem 0.05rem 0 rgba(0, 0, 0, 0.25);
}

.staffs #pageContent span.school {
    background: rgba(248, 181, 0, 1.0);
}

.staffs #pageContent span.dance {
    background: rgba(178, 178, 255, 1.0);
}

.staffs #pageContent span.enjoy {
    background: rgba(0, 175, 235, 1.0);
}

.staffs #pageContent span.player {
    background: rgba(117, 171, 0, 1.0);
}

.staffs #pageContent span.training {
    background: rgba(186, 213, 127, 1.0);
}

.staffs #pageContent span.baby {
    background: rgba(234, 104, 162, 1.0);
}

.staffs #pageContent span.service {
    background: rgba(255, 247, 153, 1.0);
    color: rgba(0, 0, 0, 1.0);
    text-shadow: 0.05rem 0.05rem 0 rgba(255, 255, 255, 0.50);
}

.staffs #pageContent span.triathlon {
    background: rgba(127, 203, 205, 1.0);
}

.staffs #pageContent span.driver {
    background: rgba(229, 229, 229, 1.0);
}

/* -----------------------------------------------------------

　.faq

-------------------------------------------------------------- */
.faq #pageContent .card-header {
    background: rgba(0, 0, 0, 0.03);
}

.faq #pageContent a {
    color: rgba(51, 51, 51, 1.0);

}

.faq #pageContent a:hover {
    color: rgba(255, 105, 0, 1.0);
}

/* Question */
.faq #pageContent a p::before {
    content: "Ｑ. ";
    color: rgba(255, 0, 0, 1.0);
    font-weight: 500;
}

/* Answer */
.faq #pageContent .card-body p::before {
    content: "Ａ. ";
    color: rgba(0, 121, 195, 1.0);
    font-weight: 500;
}

/* オープン時のヘッダー */
.faq #pageContent a[aria-expanded="true"] {
    color: rgba(255, 105, 0, 1.0);
}

.faq #pageContent a[aria-expanded="true"] p::after {
    margin-left: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f106";
}

/* クローズ時のヘッダー */
.faq #pageContent a[aria-expanded="false"] p::after {
    margin-left: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f107";
}

/* -----------------------------------------------------------

　.sickness

-------------------------------------------------------------- */

/*　.nav-tabs
/*-------------------------------------------*/
.sickness #pageContent .nav-tabs {
    border-bottom: none;
}

.sickness #pageContent .nav-link {
    margin-bottom: 2px;
    padding: 8px 5px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 0 0 0;
    font-size: 1.0rem;

    text-align: center;
}

.sickness #pageContent .nav-link.active {
    background: rgba(255, 255, 255, 1.0);
    color: rgba(255, 105, 0, 1.0);
}

/* 内容 */
.sickness #pageContent h2 {
    margin-top: 30px;
    padding: 0;
}

.sickness #pageContent .note {
    margin: 30px 0;
}

.sickness #pageContent .note p {
    margin-bottom: 0;
}

.sickness #pageContent dt {
    color: rgba(230, 0, 18, 1.0);

}

.sickness #pageContent dt::before {
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f00c";
}

.sickness #pageContent dd {
    margin-bottom: 30px;
}

.sickness #pageContent dd:last-child {
    margin-bottom: 0;
}

.sickness #pageContent dd dl {
    margin-top: 10px;
    margin-left: 1.125rem;
}

.sickness #pageContent dd dl dt {
    color: rgba(51, 51, 51, 1.0);

}

.sickness #pageContent dd dl dt::before {
    margin-right: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    content: "\f192";
}

.sickness #pageContent dd dl dd {
    margin-bottom: 10px;
}

@media only screen and (min-width:768px) {

    /*　.nav-tabs
	/*-------------------------------------------*/
    .sickness #pageContent .nav-tabs {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .sickness #pageContent .nav-item {
        margin-left: 0.1%;
        margin-right: 0.1%;
    }

    .sickness #pageContent .nav-item:first-child {
        margin-left: 1%;
    }

    .sickness #pageContent .nav-item:last-child {
        margin-right: 1%;
    }

    .sickness #pageContent .nav-link {
        margin-bottom: 0;
        border-bottom: none;
        border-radius: 4px 4px 0 0;
        font-size: 1.125rem;
    }

}

/* -----------------------------------------------------------

　.company

-------------------------------------------------------------- */
.company section {
    padding-bottom: 0;
}

.company #pageContent h2 {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.company #pageContent th {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.company #pageContent ul {
    margin-left: 1.7rem;
    margin-bottom: 0;
    list-style: disc;
}

.company #pageContent ol {
    margin-bottom: 0;
    list-style: none;
}

/* 電話番号 */
.company #pageContent span {
    color: rgba(51, 51, 51, 1.0);
}

/* 社名 */
.company #pageContent strong {
    color: rgba(0, 67, 124, 1.0);
    font-size: 1.2rem;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
}

/* 会社理念 */
.company #pageContent em {
    color: rgba(255, 105, 0, 1.0);
    font-size: 1.2rem;

    font-style: normal;
}

/* 代表写真 */
.company #pageContent figure {
    margin: 0 auto 10px;
    padding: 10px;
    width: 180px;
    height: auto;
    background: url(../images/bg_raster.png) center top repeat;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* 署名 */
.company #pageContent .sign {
    margin-top: 30px;
    color: rgba(0, 0, 0, 1.0);
    font-family: 'Noto Serif JP', serif;
}

/* 業務内容 */
.company #pageContent tr:last-child td {}

.company #pageContent tr:last-child td ul {
    font-weight: 300;
}

/* アクセスマップ */
.company iframe {
    width: 100%;
    height: 300px;
    margin-top: 30px;
    border: none;
}

@media only screen and (min-width:576px) {

    /* 代表写真 */
    .company #pageContent figure {
        float: left;
        margin: 5px 20px 10px 0;
    }

    /* モバイル改行調整 */
    .company #pageContent .blk {
        display: inline;
    }

}

@media only screen and (min-width:768px) {

    .company #pageContent th {
        width: 20%;
    }

    .company #pageContent td {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    /* 社名・署名 */
    .company #pageContent strong,
    .company #pageContent em {
        font-size: 1.3rem;
    }

    /* アクセスマップ */
    .company iframe {
        margin-top: 50px;
        height: 360px;
    }

}

@media only screen and (min-width:992px) {

    /* 社名 */
    .company #pageContent strong {
        font-size: 1.5rem;
    }

    /* 署名 */
    .company #pageContent .sign {
        margin-top: 50px;
    }

    /* アクセスマップ */
    .company iframe {
        margin-top: 100px;
        height: 460px;
    }

}

/* -----------------------------------------------------------

　.business

-------------------------------------------------------------- */
.business #pageContent h2 {
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 1.0);
}

/* クラスごとの色分け */
.business #pageContent h2#course-a {
    background: rgba(234, 104, 162, 1.0);
}

.business #pageContent h2#course-b {
    background: rgba(248, 181, 0, 1.0);
}

.business #pageContent h2#course-c {
    background: rgba(117, 171, 0, 1.0);
}

.business #pageContent h2#course-d {
    background: rgba(0, 175, 235, 1.0);
}

.business #pageContent ul {
    margin-top: 1.125rem;
    margin-left: 1.7rem;
    color: rgba(0, 0, 0, 1.0);

    list-style: disc;
}

/* table */
.business #pageContent th {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.business #pageContent .cource-a th {
    background: rgba(234, 104, 162, 0.05);
}

.business #pageContent .cource-b th {
    background: rgba(248, 181, 0, 0.05);
}

.business #pageContent .cource-c th {
    background: rgba(117, 171, 0, 0.05);
}

.business #pageContent .cource-d th {
    background: rgba(0, 175, 235, 0.05);
}

@media only screen and (min-width:768px) {

    .business #pageContent th {
        width: 36%;
    }

    .business #pageContent td {
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

}

/* -----------------------------------------------------------

　.contact

-------------------------------------------------------------- */
.contact #pageContent h5 {
    font-weight: 300;
}

.contact #pageContent p span {
    color: rgba(51, 51, 51, 1.0);
    font-size: 1.5rem;
    font-weight: 700;
}

/*　フォーム
/*-------------------------------------------*/
.contact #pageContent #mailformpro {
    margin-top: 40px;
}

.contact #pageContent #mailformpro dt {
    width: 100%;
    padding: 10px 0;
    border-top: solid 1px rgba(0, 0, 0, 0.2);
    font-size: 1.125rem;

    text-align: left;
}

.contact #pageContent #mailformpro dt .must {
    float: right;
    padding: 3px 10px;
    border-radius: 4px;
    background: rgba(255, 105, 0, 1.0);
    color: rgba(255, 255, 255, 1.0);
    font-size: 0.8rem;
}

.contact #pageContent #mailformpro dd {
    padding: 10px 0;
    border-top: solid 1px rgba(0, 0, 0, 0.2);
    font-size: 1.15rem;
}

.contact #pageContent #mailformpro dd:last-child,
.contact #pageContent #mailformpro dt:last-child {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}

.contact #pageContent #mailformpro dd span {
    color: rgba(0, 67, 124, 1.0);
    font-size: 1.0rem;

}

.contact #pageContent #mailformpro input,
.contact #pageContent #mailformpro dd.add select {
    width: 100%;
    height: 40px;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: 300;
}

.contact #pageContent #mailformpro dd.add select {
    width: inherit;
}

.contact #pageContent #mailformpro dd.add #post {
    width: 130px;
}

.contact #pageContent #mailformpro dd .att {
    display: block;
    color: rgba(255, 0, 0, 1.0);
    font-size: 0.9rem;

}

.contact #pageContent #mailformpro textarea {
    width: 100% !important;
    height: 200px !important;
    font-size: 1.15rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: 300;
}

.contact #pageContent #mailformpro input.check {
    position: relative;
    top: -2px;
    width: 20px;
    height: 20px;
}

.contact #pageContent #mailformpro dd.lastcheck a::before {
    margin-left: 5px;
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f105";
}

.contact #pageContent form#mailformpro label.mfp_not_checked em {
    color: rgba(0, 121, 195, 1.0);

    font-style: normal;
}

.contact #pageContent form#mailformpro label.mfp_checked em {
    color: rgba(255, 105, 0, 1.0);
    font-weight: 700;
}

::-webkit-input-placeholder {
    opacity: 1.0;
}

::-moz-placeholder {
    opacity: 1.0;
}

:-ms-input-placeholder {
    opacity: 1.0;
}

.contact #pageContent .mfp_buttons button {
    width: 200px;
    height: 60px;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
}

.contact #pageContent .mfp_buttons button:first-child {
    margin-bottom: 10px;
}

@media only screen and (min-width:768px) {

    .contact #pageContent p span {
        font-size: 2.0rem;
    }

    .contact #pageContent #mailformpro dt {
        width: 240px;
        padding: 10px 0 10px 5px;
    }

    .contact #pageContent #mailformpro dd {
        padding: 10px 0;
        padding-left: 280px
    }

    .contact #pageContent #mailformpro input {
        width: 97%;
    }

    .contact #pageContent #mailformpro select {
        margin-bottom: 5px;
    }

    .contact #pageContent #mailformpro .add li:nth-child(3) input,
    .contact #pageContent #mailformpro .add li:nth-child(4) input,
    .contact #pageContent #mailformpro .add li:nth-child(5) input {
        margin-bottom: 5px;
    }

    .contact #pageContent #mailformpro textarea {
        width: 97% !important;
    }

}

@media only screen and (min-width:992px) {

    .contact #pageContent #mailformpro dt {
        width: 260px;
        padding: 10px 0 10px 10px;
    }

    .contact #pageContent #mailformpro dd {
        padding-left: 300px
    }

    .contact #pageContent #mailformpro input {
        width: 87%;
    }

    .contact #pageContent #mailformpro .name input,
    .contact #pageContent #mailformpro .com input,
    .contact #pageContent #mailformpro .tele input {
        width: 50%;
    }

    .contact #pageContent #mailformpro .add li:nth-child(3) input,
    .contact #pageContent #mailformpro .add li:nth-child(4) input,
    .contact #pageContent #mailformpro .add li:nth-child(5) input {
        width: 75%;
    }

}

@media only screen and (min-width:1200px) {

    .contact #pageContent #mailformpro dt {
        width: 300px;
    }

    .contact #pageContent #mailformpro dd {
        padding-left: 360px
    }

    .contact #pageContent #mailformpro input {
        width: 70%;
    }

    .contact #pageContent #mailformpro .add li:nth-child(3) input,
    .contact #pageContent #mailformpro .add li:nth-child(4) input,
    .contact #pageContent #mailformpro .add li:nth-child(5) input {
        width: 60%;
    }

    .contact #pageContent #mailformpro dd .att {
        display: inline;
    }

}

/*　.thanks
/*-------------------------------------------*/
#mfp_thanks {
    padding: 30px 0;
    background: rgba(248, 181, 0, 1.0);
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.4rem;
}

#mfp_thanks strong {
    display: block;
    font-size: 1.8rem !important;
    font-weight: 700;
}

.thanksMessage h3 {
    margin-top: 30px;
    margin-bottom: 30px;
    color: rgba(0, 121, 195, 1.0);
    font-size: 1.4rem;

}

.thanksMessage ul {
    margin: 30px 0 30px 1.5rem;
    color: rgba(255, 0, 0, 1.0);
    list-style: disc;
}

.thanksMessage .tele {
    font-size: 1.4rem;
}

.thanksMessage .tele a {
    color: rgba(51, 51, 51, 1.0);
}

.thanksMessage .tele span {
    display: block;
    font-size: 2.0rem;
}

.thanksMessage i {
    position: relative;
    top: -4px;
    margin-right: 0.2rem;
    font-size: 1.8rem;
}

@media only screen and (min-width:768px) {

    #mfp_thanks {
        font-size: 1.8rem;
    }

    #mfp_thanks strong {
        display: inline;
        position: relative;
        top: 2px;
        padding: 0 3px;
        font-size: 2.2rem !important;
    }

    .thanksMessage h3 {
        font-size: 1.8rem;
    }

    .thanksMessage .inquiry {
        margin-top: 50px;
    }

    .thanksMessage .tele span {
        display: inline;
        font-size: 2.4rem;
    }

    .thanksMessage i {
        font-size: 2.4rem;
    }

}

/* -----------------------------------------------------------

　.school-rules & .privacy-policy & .site-rules

-------------------------------------------------------------- */
.school-rules #pageContent,
.privacy-policy #pageContent,
.site-rules #pageContent {
    font-family: 'Noto Serif JP', serif;
    font-weight: 200;
}

.school-rules #pageContent h3,
.privacy-policy #pageContent h3,
.site-rules #pageContent h3 {
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 1.0);
    font-weight: 300;
}

.school-rules #pageContent p,
.school-rules #pageContent dl,
.school-rules #pageContent li,
.privacy-policy #pageContent p,
.privacy-policy #pageContent dl,
.privacy-policy #pageContent li,
.site-rules #pageContent h4,
.site-rules #pageContent h5,
.site-rules #pageContent p,
.site-rules #pageContent dl,
.site-rules #pageContent li {
    font-size: 1.0rem;
    text-align: left;
}

.site-rules #pageContent h4 {
    margin-top: 30px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
}

.site-rules #pageContent h5 {
    margin-top: 30px;
}

.school-rules #pageContent dl,
.privacy-policy #pageContent dl,
.site-rules #pageContent dl {
    margin-top: 30px;
}

.school-rules #pageContent dt,
.privacy-policy #pageContent dt,
.site-rules #pageContent dt {
    color: rgba(0, 67, 124, 1.0);
    font-weight: 500;
}

.school-rules #pageContent dd,
.privacy-policy #pageContent dd,
.site-rules #pageContent dd {
    margin-bottom: 40px;
}

.school-rules #pageContent dd:last-child,
.privacy-policy #pageContent dd:last-child,
.site-rules #pageContent dd:last-child {
    margin-bottom: 0;
}

.privacy-policy #pageContent dd span,
.site-rules #pageContent dd span {
    color: rgba(51, 51, 51, 1.0);
}

.privacy-policy #pageContent ul,
.site-rules #pageContent ul {
    margin-top: 1.125rem;
    margin-left: 1.5rem;
    list-style: disc;
}

.school-rules #pageContent ul {
    margin-top: 1.125rem;
    list-style: none;
}

.site-rules #pageContent ol {
    margin-top: 1.125rem;
    margin-left: 1.5rem;
}

@media only screen and (min-width:576px) {

    .privacy-policy #pageContent ul,
    .site-rules #pageContent ul,
    .site-rules #pageContent ol {
        margin-left: 2.5rem;
    }

}

@media only screen and (min-width:768px) {

    .school-rules #pageContent dl,
    .privacy-policy #pageContent dl,
    .site-rules #pageContent dl {
        margin-top: 50px;
    }

}

/* -----------------------------------------------------------

　header

-------------------------------------------------------------- */
header {
    background: rgba(0, 121, 195, 1.0);
    background-size: cover;
    text-align: center;
    overflow: hidden;
}

header h1 {
    margin-top: 14vh;
    margin-bottom: 2.5vh;
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.4rem;
    font-weight: 500;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 1.0), 1px 1px 0 rgba(0, 0, 0, 1.0), 1px 1px 0 rgba(0, 0, 0, 1.0);
}

header h1::before {
    position: relative;
    top: 3px;
    margin-right: 5px;
    font-size: 1.8rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

[class*="course-"] header h1::before {
    content: "\f5c4";
}

.enrollment header h1::before {
    content: "\f2bb";
    font-weight: 500;
}

[class*="price-"] header h1::before {
    content: "\f543";
}

.inside header h1::before {
    content: "\f5c5";
}

.parking header h1::before {
    content: "\f5e4";
}

.bus header h1::before {
    content: "\f207";
}

.sterilization header h1::before {
    content: "\f773";
}

.calendar header h1::before {
    content: "\f073";
    font-weight: 500;
}

.registration header h1::before {
    content: "\f2bb";
    font-weight: 500;
}

.staffs header h1::before {
    content: "\f0c0";
}

.faq header h1::before {
    content: "\f059";
    font-weight: 500;
}

.sickness header h1::before {
    content: "\f481";
}

.company header h1::before {
    content: "\f1ad";
    font-weight: 500;
}

.business header h1::before {
    content: "\f05a";
}

.school-rules header h1::before {
    content: "\f15c";
    font-weight: 500;
}

.contact header h1::before,
.thanks header h1::before {
    content: "\f0e0";
    font-weight: 500;
}

.privacy-policy header h1::before {
    content: "\f3ed";
}

.site-rules header h1::before {
    content: "\f15c";
    font-weight: 500;
}

@media only screen and (min-width:576px) {

    header h1 {
        margin-top: 11vh;
        margin-bottom: 3vh;
    }

}

@media only screen and (min-width:768px) {

    .course-a header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-a.jpg) center -20px no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_course-a.jpg) center -20px no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-a.jpg) center -20px no-repeat scroll;
    }

    .course-b header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-b.jpg) center -30px no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_course-b.jpg) center -30px no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-b.jpg) center -30px no-repeat scroll;
    }

    .course-c header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-c.jpg) center top no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_course-c.jpg) center top no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-c.jpg) center top no-repeat scroll;
    }

    .course-d header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-d.jpg) center top no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_course-d.jpg) center top no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-d.jpg) center top no-repeat scroll;
    }

    .enrollment header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_enrollment.jpg) center -30px no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_enrollment.jpg) center -30px no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_enrollment.jpg) center -30px no-repeat scroll;
    }

    [class*="price-"] header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_price.jpg) center -30px no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_price.jpg) center -30px no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_price.jpg) center -30px no-repeat scroll;
    }

    .inside header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_inside.jpg) center -30px no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_inside.jpg) center -30px no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_inside.jpg) center -30px no-repeat scroll;
    }

    .parking header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_parking.jpg) center -30px no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_parking.jpg) center -30px no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_parking.jpg) center -30px no-repeat scroll;
    }

    .bus header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_bus.jpg) center -70px no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_bus.jpg) center -70px no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_bus.jpg) center -70px no-repeat scroll;
    }

    .sterilization header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_sterilization.jpg) center -30px no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_sterilization.jpg) center -30px no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_sterilization.jpg) center -30px no-repeat scroll;
    }

    .calendar header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_calendar.jpg) center -30px no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_calendar.jpg) center -30px no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_calendar.jpg) center -30px no-repeat scroll;
    }

    .registration header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_enrollment.jpg) center -30px no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_enrollment.jpg) center -30px no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_enrollment.jpg) center -30px no-repeat scroll;
    }

    .staffs header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_staffs.jpg) center top no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_staffs.jpg) center top no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_staffs.jpg) center top no-repeat scroll;
    }

    .faq header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_faq.jpg) center -30px no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_faq.jpg) center -30px no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_faq.jpg) center -30px no-repeat scroll;
    }

    .sickness header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_sickness.jpg) center -30px no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_sickness.jpg) center -30px no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_sickness.jpg) center -30px no-repeat scroll;
    }

    .company header,
    .business header,
    .school-rules header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_company.jpg) center top no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_company.jpg) center top no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_company.jpg) center top no-repeat scroll;
    }

    .privacy-policy header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_privacy.jpg) center top no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_privacy.jpg) center top no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_privacy.jpg) center top no-repeat scroll;
    }

    .contact header,
    .thanks header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_contact.jpg) center -30px no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_contact.jpg) center -30px no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_contact.jpg) center -30px no-repeat scroll;
    }

    .site-rules header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_sitemap.jpg) center top no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_sitemap.jpg) center top no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_sitemap.jpg) center top no-repeat scroll;
    }

    [class*="post_"] header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/post/eyecatch_news.jpg) center -30px no-repeat scroll;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/post/eyecatch_news.jpg) center -30px no-repeat scroll;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/post/eyecatch_news.jpg) center -30px no-repeat scroll;
    }

    header h1 {
        margin-top: 13vh;
        margin-bottom: 4vh;
        font-size: 2.4rem;
    }

    header h1::before {
        font-size: 2.8rem;
    }

}

@media only screen and (min-width:992px) {

    .course-a header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-a.jpg) center top no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_course-a.jpg) center top no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-a.jpg) center top no-repeat fixed;
    }

    .course-b header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-b.jpg) center -30px no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_course-b.jpg) center -30px no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-b.jpg) center -30px no-repeat fixed;
    }

    .course-c header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-c.jpg) center top no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_course-c.jpg) center top no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-c.jpg) center top no-repeat fixed;
    }

    .course-d header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-d.jpg) center top no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_course-d.jpg) center top no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_course-d.jpg) center top no-repeat fixed;
    }

    .enrollment header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_enrollment.jpg) center -30px no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_enrollment.jpg) center -30px no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_enrollment.jpg) center -30px no-repeat fixed;
    }

    [class*="price-"] header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_price.jpg) center -30px no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_price.jpg) center -30px no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_price.jpg) center -30px no-repeat fixed;
    }

    .inside header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_inside.jpg) center -30px no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_inside.jpg) center -30px no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_inside.jpg) center -30px no-repeat fixed;
    }

    .parking header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_parking.jpg) center -30px no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_parking.jpg) center -30px no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_parking.jpg) center -30px no-repeat fixed;
    }

    .bus header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_bus.jpg) center -70px no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_bus.jpg) center -70px no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_bus.jpg) center -70px no-repeat fixed;
    }

    .sterilization header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_sterilization.jpg) center -30px no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_sterilization.jpg) center -30px no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_sterilization.jpg) center -30px no-repeat fixed;
    }

    .calendar header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_calendar.jpg) center -30px no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_calendar.jpg) center -30px no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_calendar.jpg) center -30px no-repeat fixed;
    }

    .registration header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_enrollment.jpg) center -30px no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_enrollment.jpg) center -30px no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_enrollment.jpg) center -30px no-repeat fixed;
    }

    .staffs header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_staffs.jpg) center top no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_staffs.jpg) center top no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_staffs.jpg) center top no-repeat fixed;
    }

    .faq header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_faq.jpg) center -30px no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_faq.jpg) center -30px no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_faq.jpg) center -30px no-repeat fixed;
    }

    .sickness header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_sickness.jpg) center -30px no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_sickness.jpg) center -30px no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_sickness.jpg) center -30px no-repeat fixed;
    }

    .company header,
    .business header,
    .school-rules header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_company.jpg) center top no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_company.jpg) center top no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_company.jpg) center top no-repeat fixed;
    }

    .privacy-policy header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_privacy.jpg) center top no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_privacy.jpg) center top no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_privacy.jpg) center top no-repeat fixed;
    }

    .contact header,
    .thanks header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_contact.jpg) center -30px no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_contact.jpg) center -30px no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_contact.jpg) center -30px no-repeat fixed;
    }

    .site-rules header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_sitemap.jpg) center top no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/page/eyecatch_sitemap.jpg) center top no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/page/eyecatch_sitemap.jpg) center top no-repeat fixed;
    }

    [class*="post_"] header {
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/post/eyecatch_news.jpg) center -30px no-repeat fixed;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0))), url(../images/post/eyecatch_news.jpg) center -30px no-repeat fixed;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url(../images/post/eyecatch_news.jpg) center -30px no-repeat fixed;
    }

    header h1 {
        margin-top: 14vh;
        margin-bottom: 5vh;
        font-size: 2.8rem;
    }

    header h1::before {
        font-size: 3.2rem;
    }

}

@media only screen and (min-width:1200px) {

    header h1 {
        margin-top: 15vh;
        margin-bottom: 5vh;
        font-size: 3.0rem;
    }

    header h1::before {
        font-size: 3.4rem;
    }

}

/* -----------------------------------------------------------

　.breadCrumb

-------------------------------------------------------------- */
.breadCrumb {
    padding: 10px 0;
    background: rgba(255, 250, 235, 1.0);
    font-size: 0.9rem;
    line-height: 1.2rem;
}

/* -----------------------------------------------------------

　.title

-------------------------------------------------------------- */
.title {
    display: none;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    color: rgba(0, 67, 124, 1.0);
    text-align: center;
}

.title h2 {
    display: block;
    margin: 0;
    font-size: 1.5rem;

}

.title h3 {
    margin: 0.5rem 0;
    color: rgba(51, 51, 51, 1.0);
    font-size: 1.0rem;
    font-weight: 300;
    font-family: "smart";
    letter-spacing: 0.1rem;
}

.title h3::before {
    content: "- ";
}

.title h3::after {
    content: " -";
}

@media only screen and (min-width:576px) {

    .title {
        text-align: left;
    }

    .title h2 {
        display: inline;
    }

}

@media only screen and (min-width:768px) {

    .title {
        margin-bottom: 50px;
    }

    .title h2 {
        font-size: 2.0rem;
    }

}