@charset "UTF-8";
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
    margin: 0;
    padding: 0;
    font-size: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline-width: 0;
}

b,
strong {
    font-weight: inherit;
    font-weight: bolder;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0;
}

button,
input,
select {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type="reset"],
[type="submit"],
button,
html [type="button"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
    outline: 1px dotted ButtonText;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none;
}

body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

[type="button"],
[type="reset"],
[type="submit"],
a,
a img,
button {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

input,
textarea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid silver;
    display: block;
}

input:focus,
textarea:focus {
    outline: none;
}

::-webkit-input-placeholder {
    color: #C5C5C5;
}

::-moz-placeholder {
    color: #C5C5C5;
}

::-ms-input-placeholder {
    color: #C5C5C5;
}

::placeholder {
    color: #C5C5C5;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #C5C5C5;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #C5C5C5;
}

.required {
    background-color: #f9ae3b;
    color: white;
    position: absolute;
    top: 50%;
    right: auto;
    margin-left: .7em;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 7px;
    width: 44px;
    height: 21px;
    font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
    .required {
        font-size: 1.2rem;
    }
}

.mwform-radio-field {
    display: inline-block !important;
}

.mwform-radio-field label {
    margin: 0.5em 0;
    margin-right: 2rem;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .mwform-radio-field label {
        margin-right: .7em;
    }
}

.mwform-radio-field label input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.mwform-radio-field label input[type="radio"] + .mwform-radio-field-text {
    position: relative;
    padding-left: 2rem;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .mwform-radio-field label input[type="radio"] + .mwform-radio-field-text {
        padding-left: 2.5rem;
    }
}

.mwform-radio-field label input[type="radio"] + .mwform-radio-field-text:before {
    content: "";
    background: white;
    border-radius: 100%;
    border: 1px solid silver;
    width: 1.4rem;
    height: 1.4rem;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mwform-radio-field label input[type="radio"]:checked + .mwform-radio-field-text:before {
    background-color: green;
    -webkit-box-shadow: inset 0 0 0 3px white;
    box-shadow: inset 0 0 0 3px white;
}

.mwform-radio-field label input[type="radio"]:focus + .mwform-radio-field-text:before {
    border: 1px solid silver;
}

.mwform-radio-field label input[type="radio"]:disabled + .mwform-radio-field-text:before {
    -webkit-box-shadow: inset 0 0 0 4px white;
    box-shadow: inset 0 0 0 4px white;
    border: silver;
    background: silver;
}

.mwform-radio-field label input[type="radio"] + .radio-label:empty:before {
    margin-right: 0;
}

.error {
    color: #cc3300;
    width: 100%;
    font-size: 1.4rem;
    margin-top: .7em;
    display: block;
    line-height: initial;
}

.formControl {
    width: 100%;
    padding: .7em 2rem;
}

@media screen and (max-width: 768px) {
    .formControl {
        width: 100%;
    }
}

.formControl.-sml {
    width: 170px;
}

@media screen and (max-width: 768px) {
    .formControl.-sml {
        width: 100%;
    }
}

.boxLabel label {
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .boxLabel {
        background-color: #f1f1f1;
    }
}

.boxContent.-flexBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.boxContent.-flexBox input {
    margin: 0 1em;
    width: 300px;
}

@media screen and (max-width: 768px) {
    .boxContent.-flexBox input {
        width: 77%;
    }
}

@media screen and (max-width: 500px) {
    .boxContent.-flexBox input {
        width: 65%;
    }
}

@media screen and (max-width: 338px) {
    .boxContent.-flexBox input {
        width: 60%;
    }
}

.groupInfo .info {
    margin-bottom: 90px;
}

@media screen and (max-width: 960px) {
    .groupInfo .info {
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 768px) {
    .groupInfo .info {
        margin-bottom: 50px;
    }
}

.groupInfo .info .info__item.-alignTop {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.groupInfo .info .info__item.-alignTop .boxLabel {
    margin-top: .7em;
}

.-goBack {
    margin-right: 3rem;
}

@media screen and (max-width: 768px) {
    .-goBack {
        margin-right: 0;
        margin-top: 3rem;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
}

@media screen and (max-width: 480px) {
    .-goBack {
        margin-bottom: 2rem;
    }
}

@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: 900;
    src: url("../webfonts/fa-brands-400.eot");
    src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}

@font-face {
    font-family: 'Font Awesome 5 Light';
    font-style: normal;
    font-weight: 300;
    src: url("../webfonts/fa-light-300.eot");
    src: url("../webfonts/fa-light-300.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-light-300.woff2") format("woff2"), url("../webfonts/fa-light-300.woff") format("woff"), url("../webfonts/fa-light-300.ttf") format("truetype"), url("../webfonts/fa-light-300.svg#fontawesome") format("svg");
}

@font-face {
    font-family: 'Font Awesome 5 Regular';
    font-style: normal;
    font-weight: 400;
    src: url("../webfonts/fa-regular-400.eot");
    src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg");
}

@font-face {
    font-family: 'Font Awesome 5 Solid';
    font-style: normal;
    font-weight: 900;
    src: url("../webfonts/fa-solid-900.eot");
    src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg");
}

/*==================================================================================================
	サイト基礎
==================================================================================================*/
body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    color: #4D4D4D;
    font-size: 1.6rem;
    font-weight: 500;
    overflow-x: hidden;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 1.5rem;
    }
}

body a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #4D4D4D;
    text-decoration: none;
}

body a:hover {
    text-decoration: none;
    opacity: 0.8;
}

html {
    overflow-x: hidden;
}

.preload * {
    -webkit-transition: none !important;
    transition: none !important;
}

/*------------------------------------------------
パーツ
------------------------------------------------*/
.lContainer {
    overflow: hidden;
    margin-top: 100px;
    padding: 4em 0 6em;
}

@media screen and (max-width: 960px) {
    .lContainer {
        margin-top: 80px;
    }
}

@media screen and (max-width: 960px) {
    .lContainer {
        padding: 3em 0 5em;
    }
}

@media screen and (max-width: 560px) {
    .lContainer {
        margin-top: 60px;
    }
}

.mContainer {
    padding: 0 0 3em;
}

.mContainer:last-child {
    padding-bottom: 0;
}

.inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

@media screen and (max-width: 1000px) {
    .inner {
        padding: 0 1.5em;
    }
}

.inner.-w900 {
    max-width: 900px;
}

.inner.-w830 {
    max-width: 830px;
}

.inner.-w700 {
    max-width: 700px;
}

section {
    padding: 4em 0;
}

@media screen and (max-width: 768px) {
    section {
        padding: 3em 0;
    }
}

.-bgGrey {
    background-color: #F5F3F0;
}

.-bgOrange {
    background-color: #EB6D56;
}

.-bgLine {
    background: url(../img/common/bg-line.svg);
}

.borderBox {
    border: 2px solid #EB6D56;
    padding: 1.8em;
}

@media screen and (max-width: 768px) {
    .borderBox {
        padding: 1.2em;
    }
}

.whiteBox {
    background: #FFF;
    padding: 3.5em 4em;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .whiteBox {
        padding: 2em 1.5em;
    }
}

.whiteBox.-shadow {
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}

.dotLine {
    border-top: 1px dashed #CCC;
    margin-top: 2em;
    padding-top: 2em;
}

.-pcNone {
    display: none;
}

@media screen and (max-width: 768px) {
    .-pcNone {
        display: block;
    }
}

.-spNone {
    display: none;
}

@media screen and (min-width: 768px) {
    .-spNone {
        display: block;
    }
}

.fitImg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center;";
}

p.txtC {
    text-align: center;
}

/*------------------------------------------------
見出し
------------------------------------------------*/
.heading-1 {
    text-align: center;
    margin-bottom: 3em;
}

.heading-1 p {
    margin-bottom: .5em;
}

.heading-1 span {
    font-size: 3.4rem;
    background: url(../img/common/wavy-line.svg) repeat-x 0 bottom;
    display: inline-block;
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    line-height: 1;
    padding-bottom: .6em;
}

.heading-1 span:before {
    font-size: 3rem;
    display: inline-block;
    content: "\f5d1";
    font-family: 'Font Awesome 5 Solid';
    color: #EB6D56;
    margin-right: 10px;
}

.heading-1.-white {
    color: #FFF;
}

.heading-1.-white span {
    background-image: url(../img/common/wavy-line_white.svg);
}

.heading-1.-white span:before {
    color: #FFF;
}

@media screen and (max-width: 768px) {
    .heading-1 p img {
        max-height: 45px;
    }
    .heading-1 span {
        font-size: 2.8rem;
    }
    .heading-1 span:before {
        font-size: 2.6rem;
    }
}

@media screen and (max-width: 560px) {
    .heading-1 {
        margin: 0 1em 2.5em 1em;
    }
    .heading-1 p img {
        max-height: 40px;
    }
    .heading-1 span {
        font-size: 2.2rem;
        padding-bottom: .7em;
    }
    .heading-1 span:before {
        font-size: 2rem;
    }
}

.heading-2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: .6em;
    border-bottom: 3px solid #EB6D56;
    margin-bottom: 1.5em;
}

.heading-2:before {
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 20%;
    height: 3px;
    content: '';
    background: #F5AE74;
}

@media screen and (max-width: 768px) {
    .heading-2 {
        font-size: 2rem;
        line-height: 1.3;
    }
}

.heading-3 {
    font-size: 1.9rem;
    color: #EB6D56;
    padding: .3em .7em;
    border-left: 7px double #EB6D56;
    background: #FFF9F4;
    margin-bottom: 1.3em;
}

.heading-4 {
    font-size: 1.7rem;
    color: #EB6D56;
    margin-bottom: 1em;
}

.heading-4:before {
    content: '●';
    font-size: 1.2rem;
    margin-right: 8px;
    vertical-align: middle;
}

.heading-5 {
    font-size: 1.6rem;
    color: #F5AE74;
    border-bottom: 1px solid #F5AE74;
    padding-bottom: .5em;
    margin-bottom: 1.5em;
}

.heading-6 {
    font-size: 1.6rem;
    margin-bottom: .5em;
}

.heading-7 {
    color: #EB6D56;
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: 1px;
    margin: 0 0 1.2em;
}

.heading-7:after {
    display: block;
    margin: .4em auto 0;
    position: relative;
    content: '';
    width: 40px;
    height: 4px;
    border-radius: 5px;
    background-color: #EB6D56;
}

@media screen and (max-width: 560px) {
    .heading-7 {
        font-size: 2rem;
    }
}

.heading-8 {
    font-size: 2.8rem;
    color: #EB6D56;
    border: 1px solid #EB6D56;
    border-radius: 5px;
    text-align: center;
    padding: 1em;
    letter-spacing: 2px;
    margin: 0 auto 2.2em;
    max-width: 1000px;
    line-height: 1.4;
}

@media screen and (max-width: 1000px) {
    .heading-8 {
        margin-right: 20px;
        margin-left: 20px;
    }
}

@media screen and (max-width: 768px) {
    .heading-8 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 560px) {
    .heading-8 {
        font-size: 1.8rem;
        letter-spacing: 1px;
        padding: .8em;
    }
}

/*------------------------------------------------
ボタン
------------------------------------------------*/
.btnArea .btn {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFF;
    text-align: center;
    background: #EB6D56;
    border-radius: 5em;
    padding: 1em;
    width: 310px;
    display: block;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.btnArea .btn:before {
    font-size: 1.3rem;
    display: inline-block;
    content: "\f054";
    font-family: 'Font Awesome 5 Solid';
    position: absolute;
    right: 2em;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.btnArea .btn:after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.btnArea .btn:hover {
    opacity: 1;
}

.btnArea .btn:hover:after {
    width: 100%;
}

.btnArea.-line .btn {
    color: #EB6D56;
    background: #FFF;
    border: 2px solid #EB6D56;
    padding: .85em 1em;
}

.btnArea.-line .btn:hover {
    color: #FFF;
    background: #EB6D56;
    opacity: 1;
}

.btnArea.-line .btn:hover:after {
    display: none;
}

.btnArea.-icon .btn:before {
    font-size: 2.6rem;
    display: inline-block;
    content: "\f5d1";
    font-family: 'Font Awesome 5 Solid';
    position: relative;
    top: inherit;
    right: inherit;
    -webkit-transform: none;
    transform: none;
    line-height: 1;
    vertical-align: -3px;
    margin-right: 8px;
}

.btnArea.-icon.-mail .btn:before {
    font-size: 2.2rem;
    display: inline-block;
    content: "\f0e0";
    font-family: 'Font Awesome 5 Solid';
    vertical-align: -2px;
}

.btnArea.-icon.-pdf .btn:before {
    font-size: 2.2rem;
    display: inline-block;
    content: "\f1c1";
    font-family: 'Font Awesome 5 Solid';
    vertical-align: -2px;
    margin-right: 12px;
}

.btnArea.-small {
    text-align: left;
    margin-top: 1em;
}

.btnArea.-small .btn {
    font-size: 1.6rem;
    font-weight: normal;
    color: #EB6D56;
    background: #FFF;
    width: auto;
    border: 1px solid #EB6D56;
    padding: .4em 2em .4em 1.2em;
    display: inline-block;
}

.btnArea.-small .btn:before {
    font-size: 1.2rem;
    right: 1.2em;
}

.btnArea.-small .btn:after {
    display: none;
}

.btnArea.-small .btn:hover {
    color: #FFF;
    background: #EB6D56;
}

.btnArea.-school {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.btnArea.-school .btn {
    font-size: 1.6rem;
    width: calc((100% - 40px) / 5);
    padding: .5em;
}

.btnArea.-school .btn:before {
    font-size: 1rem;
}

.btnArea.-school .btn.-shizuoka {
    background: #ED85A0;
}

.btnArea.-school .btn.-shimizu {
    background: #F5AE74;
}

.btnArea.-school .btn.-shimada {
    background: #0DAC67;
}

.btnArea.-school .btn.-fujieda {
    background: #88498F;
}

.btnArea.-school .btn.-mishima {
    background: #54C2F0;
}

@media screen and (max-width: 560px) {
    .btnArea.-school {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .btnArea.-school .btn {
        width: calc((100% - 50px) / 3);
        margin: 3px;
    }
}

.btnArea.-school.-line .btn {
    background: #FFF;
}

.btnArea.-school.-line .btn.-shizuoka {
    color: #ED85A0;
    border: 2px solid #ED85A0;
}

.btnArea.-school.-line .btn.-shimizu {
    color: #F5AE74;
    border: 2px solid #F5AE74;
}

.btnArea.-school.-line .btn.-shimada {
    color: #0DAC67;
    border: 2px solid #0DAC67;
}

.btnArea.-school.-line .btn.-fujieda {
    color: #88498F;
    border: 2px solid #88498F;
}

.btnArea.-school.-line .btn.-mishima {
    color: #54C2F0;
    border: 2px solid #54C2F0;
}

.btnArea.-school.-line .btn:hover, .btnArea.-school.-line .btn.active {
    color: #FFF;
    opacity: 1;
}

.btnArea.-school.-line .btn:hover:after, .btnArea.-school.-line .btn.active:after {
    display: none;
}

.btnArea.-school.-line .btn:hover.-shizuoka, .btnArea.-school.-line .btn.active.-shizuoka {
    background: #ED85A0;
}

.btnArea.-school.-line .btn:hover.-shimizu, .btnArea.-school.-line .btn.active.-shimizu {
    background: #F5AE74;
}

.btnArea.-school.-line .btn:hover.-shimada, .btnArea.-school.-line .btn.active.-shimada {
    background: #0DAC67;
}

.btnArea.-school.-line .btn:hover.-fujieda, .btnArea.-school.-line .btn.active.-fujieda {
    background: #88498F;
}

.btnArea.-school.-line .btn:hover.-mishima, .btnArea.-school.-line .btn.active.-mishima {
    background: #54C2F0;
}

.btnArea.-variable .btn {
    width: calc((100% - 40px) / 3);
}

.btnArea ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btnArea ul li {
    max-width: 310px;
    width: 100%;
    margin: 0 1.2em;
}

@media screen and (max-width: 768px) {
    .btnArea ul li {
        margin-bottom: 1.5em;
    }
}

.btnArea p {
    color: #EB6D56;
    text-align: center;
    padding: 0 0 .5em;
    font-weight: bold;
}

/*------------------------------------------------
リンク
------------------------------------------------*/
a {
    text-decoration: underline;
}

a.arrow:before {
    color: #EB6D56;
    margin-right: 5px;
}

a.arrow:hover {
    color: #EB6D56;
}

a.arrow.-circle:before {
    display: inline-block;
    content: "\f138";
    font-family: 'Font Awesome 5 Solid';
}

a.underline {
    color: #EB6D56;
    text-decoration: underline;
}

a.underline:hover {
    text-decoration: none;
}

.telLink {
    cursor: default;
    pointer-events: none;
    text-decoration: none;
}

@media screen and (max-width: 960px) {
    .telLink {
        pointer-events: auto;
        letter-spacing: 0.02em;
    }
}

/*------------------------------------------------
テーブル
------------------------------------------------*/
.tableList {
    border: 1px solid #DDD;
    width: 100%;
}

.tableList th, .tableList td {
    padding: 1.2em 2em;
    border: 1px solid #DDD;
}

.tableList th {
    color: #FFF;
    background-color: #EB6D56;
    text-align: left;
    width: 30%;
}

.tableList td {
    background-color: #FFF;
}

.tableList a {
    color: #EB6D56;
    text-decoration: underline;
}

@media screen and (max-width: 560px) {
    .tableList th, .tableList td {
        padding: .75em 1em;
    }
}

/*------------------------------------------------
リスト
------------------------------------------------*/
ul.dotList li {
    list-style: disc;
    margin-left: 1.2em;
}

ol.numberList li {
    list-style: decimal;
    margin-left: 1.2em;
    padding-left: .5em;
}

/*------------------------------------------------
定義リスト
------------------------------------------------*/
.dlList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: #DDD 1px solid;
    margin-bottom: 3em;
}

.dlList dt, .dlList dd {
    padding: 1.2em;
    border-bottom: #DDDDDD 1px solid;
}

@media screen and (max-width: 560px) {
    .dlList dt, .dlList dd {
        width: 100% !important;
        padding: 1.2em 0;
    }
}

.dlList dt {
    width: 28%;
    color: #EB6D56;
    font-weight: bold;
}

.dlList dd {
    width: 72%;
}

.dlList dd span {
    font-weight: bold;
}

.dlList dd .flow li::after {
    font-size: 3rem;
    color: #EB6D56;
    display: block;
    content: "\f0dd";
    font-family: 'Font Awesome 5 Solid';
    margin: -.6em 0 0 1em;
}

.dlList dd .flow li:last-child::after {
    display: none;
}

/*------------------------------------------------
Flexbox
------------------------------------------------*/
.colList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.colList.-col2 .colList__item {
    width: 48%;
}

.colList.-col3 .colList__item {
    width: 31.8%;
}

.colList.-col4 .colList__item {
    width: 24%;
}

.colList.-col5 .colList__item {
    width: 19%;
}

@media screen and (max-width: 560px) {
    .colList {
        display: block;
    }
    .colList.-col2 .colList__item, .colList.-col3 .colList__item, .colList.-col4 .colList__item, .colList.-col5 .colList__item {
        width: 100%;
    }
}

/*------------------------------------------------
スクールカラー
------------------------------------------------*/
.school {
    border-radius: 5px;
    color: #FFF;
    font-weight: bold;
    padding: .1em 1.4em;
    display: inline-block;
}

.school.-shizuoka {
    background: #ED85A0;
}

.school.-shimizu {
    background: #F5AE74;
}

.school.-shimada {
    background: #0DAC67;
}

.school.-fujieda {
    background: #88498F;
}

.school.-mishima {
    background: #54C2F0;
}

.school.-shizuokaOl {
    color: #ED85A0;
    border: 2px solid #ED85A0;
    background-color: #FFF;
}

.school.-shimizuOl {
    color: #F5AE74;
    border: 2px solid #F5AE74;
    background-color: #FFF;
}

.school.-shimadaOl {
    color: #0DAC67;
    border: 2px solid #0DAC67;
    background-color: #FFF;
}

.school.-fujiedaOl {
    color: #88498F;
    border: 2px solid #88498F;
    background-color: #FFF;
}

.school.-mishimaOl {
    color: #54C2F0;
    border: 2px solid #54C2F0;
    background-color: #FFF;
}

.colorShizuoka {
    color: #ED85A0;
}

.colorShimizu {
    color: #F5AE74;
}

.colorShimada {
    color: #0DAC67;
}

.colorFujieda {
    color: #88498F;
}

.colorMishima {
    color: #54C2F0;
}

/*------------------------------------------------
ページナビ
------------------------------------------------*/
ul.page-numbers {
    padding-top: 4em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 560px) {
    ul.page-numbers {
        padding-top: 2.5em;
    }
}

ul.page-numbers a, ul.page-numbers span {
    font-size: 1.6rem;
    border: 1px solid #EB6D56;
    background-color: #FFF;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: .65rem;
    height: 50px;
    width: 50px;
}

@media screen and (max-width: 560px) {
    ul.page-numbers a, ul.page-numbers span {
        width: 40px;
        height: 40px;
        margin: .3em;
        font-size: 1.4rem;
    }
}

ul.page-numbers a.current, ul.page-numbers a:hover, ul.page-numbers span.current, ul.page-numbers span:hover {
    background-color: #EB6D56;
    color: #FFF;
    opacity: 1;
}

ul.page-numbers a.prev, ul.page-numbers a.next, ul.page-numbers span.prev, ul.page-numbers span.next {
    border: none;
    width: auto;
}

ul.page-numbers a.prev:hover, ul.page-numbers a.next:hover, ul.page-numbers span.prev:hover, ul.page-numbers span.next:hover {
    background-color: inherit;
    color: #EB6D56;
}

/*------------------------------------------------
下部メニューボタン
------------------------------------------------*/
.menuBtn {
    border-top: 2px solid #EB6D56;
    padding: 2.5em 2.5em 4em;
    margin-top: 4em;
}

.menuBtn .btnArea {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.menuBtn .btnArea .btn {
    font-size: 1.6rem;
    border-radius: 5px;
    width: 100px;
    height: 100px;
    padding: .2em;
    margin: .4em;
    line-height: 1.4;
    display: table;
}

.menuBtn .btnArea .btn span {
    display: table-cell;
    vertical-align: middle;
}

.menuBtn .btnArea .btn small {
    font-size: 1.2rem;
}

.menuBtn .btnArea .btn:before, .menuBtn .btnArea .btn:after {
    display: none;
}

.menuBtn .btnArea .btn.active {
    color: #FFF;
    background: #EB6D56;
}

@media screen and (max-width: 560px) {
    .menuBtn {
        padding: 2em 1em 3em;
    }
    .menuBtn .btnArea .btn {
        font-size: 1.5rem;
        height: 80px;
        padding: .5em;
    }
}

/*==================================================================================================
ヘッダー
==================================================================================================*/
.globalHeader {
    position: fixed;
    left: 0;
    top: 0;
    background: #FFF;
    z-index: 9999;
    width: 100%;
}

@media screen and (max-width: 960px) {
    .globalHeader {
        background: #FAFAFA;
    }
}

.globalHeader__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 960px) {
    .globalHeader__inner {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.globalHeader__logo {
    margin: 0 1.5em;
}

@media screen and (max-width: 1100px) {
    .globalHeader__logo {
        margin: 0 1em 0 .5em;
    }
    .globalHeader__logo img {
        max-height: 46px;
    }
}

@media screen and (max-width: 960px) {
    .globalHeader__logo {
        margin: 0 auto 0 .5em;
    }
    .globalHeader__logo img {
        max-height: 50px;
    }
}

@media screen and (max-width: 560px) {
    .globalHeader__logo img {
        max-height: 30px;
    }
}

.globalHeader a:hover {
    opacity: 1;
}

.globalHeader .globalNav {
    background: #EB6D56;
    color: #FFF;
    border-bottom-left-radius: 30px;
    width: 58%;
    height: 100px;
}

@media screen and (max-width: 1100px) {
    .globalHeader .globalNav {
        width: 70%;
    }
}

@media screen and (max-width: 960px) {
    .globalHeader .globalNav {
        display: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        position: fixed;
        left: 0;
        top: 80px;
    }
    .globalHeader .globalNav__inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }
}

@media screen and (max-width: 560px) {
    .globalHeader .globalNav {
        top: 60px;
    }
}

.globalHeader .globalNav .nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.globalHeader .globalNav .nav__list {
    position: relative;
    margin: 0 2.4%;
}

.globalHeader .globalNav .nav__list > a {
    color: inherit;
    font-weight: bold;
    display: inline-block;
    padding: 1.15em 0;
}

.globalHeader .globalNav .nav__list > a:hover {
    opacity: 1;
}

@media screen and (min-width: 961px) {
    .globalHeader .globalNav .nav__list > a:after {
        position: absolute;
        left: 0;
        bottom: 0;
        content: '';
        width: 100%;
        height: 5px;
        background: #FFFF00;
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transform-origin: right top;
        transform-origin: right top;
        -webkit-transition: -webkit-transform 0.3s;
        transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
    }
    .globalHeader .globalNav .nav__list > a:hover:after {
        -webkit-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    .globalHeader .globalNav .nav__list > a.active {
        border-bottom: 5px solid #FFFF00;
        padding-bottom: .85em;
    }
}

@media screen and (max-width: 960px) {
    .globalHeader .globalNav .nav {
        display: block;
        width: 100%;
        margin-top: .3em;
    }
    .globalHeader .globalNav .nav__list {
        margin: 0 2em;
    }
    .globalHeader .globalNav .nav__list > a {
        display: block;
        padding: 1em;
        font-size: 1.6rem;
        border-bottom: 1px solid #FFF;
    }
    .globalHeader .globalNav .nav__list > a.gnavAco {
        position: relative;
    }
    .globalHeader .globalNav .nav__list > a.gnavAco:after {
        font-size: 2rem;
        display: inline-block;
        content: "\f067";
        font-family: 'Font Awesome 5 Regular';
        position: absolute;
        right: 1em;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
    .globalHeader .globalNav .nav__list > a.gnavAco.active:after {
        display: inline-block;
        content: "\f068";
        font-family: 'Font Awesome 5 Regular';
    }
}

.globalHeader .globalNav .nav .snavContainer {
    display: none;
    position: absolute;
    right: -15%;
    top: 100%;
    color: #FFF;
    width: 240px;
}

@media screen and (min-width: 960px) and (max-width: 960px) {
    .globalHeader .globalNav .nav .snavContainer {
        position: relative !important;
    }
}

@media screen and (min-width: 960px) {
    .globalHeader .globalNav .nav .snavContainer {
        -webkit-transform: translate(15%, 0%);
        transform: translate(15%, 0%);
    }
}

@media screen and (max-width: 960px) {
    .globalHeader .globalNav .nav .snavContainer {
        position: static;
        width: 100%;
    }
}

.globalHeader .globalNav .nav .snavContainer .snavColumn a {
    display: block;
    padding: 1em;
    background-color: #F5F3F0;
}

.globalHeader .globalNav .nav .snavContainer .snavColumn a:before {
    display: inline-block;
    content: "\f105";
    font-family: 'Font Awesome 5 Regular';
    color: #EB6D56;
    margin-right: 10px;
}

.globalHeader .globalNav .nav .snavContainer .snavColumn a:hover {
    opacity: 1;
    color: #EB6D56;
}

.globalHeader .globalNav .nav .snavContainer .snavColumn + .snavColumn {
    border-top: 1px dashed #CCC;
}

.globalHeader .globalNav .nav .snavContainer .snavColumn + .snavColumn a {
    border-radius: 0 0 10px 10px;
}

@media screen and (max-width: 960px) {
    .globalHeader .globalNav .nav .snavContainer .snavColumn a {
        background-color: #EB6D56;
        color: #FFF;
        padding-left: 2.2em;
        font-size: 1.6rem;
    }
    .globalHeader .globalNav .nav .snavContainer .snavColumn a:before {
        color: #FFF;
    }
    .globalHeader .globalNav .nav .snavContainer .snavColumn + .snavColumn {
        border-bottom: 1px dashed #DDD;
    }
    .globalHeader .globalNav .nav .snavContainer .snavColumn + .snavColumn a {
        border-radius: 0;
    }
}

.globalHeader .globalNav .navInfo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.globalHeader .globalNav .navInfo-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.globalHeader .globalNav .navInfo-list li {
    margin-right: 1.5em;
}

.globalHeader .globalNav .navInfo-list li a {
    color: inherit;
    font-weight: bold;
}

.globalHeader .globalNav .navInfo-list li a:before {
    font-size: 2rem;
    margin-right: 5px;
    vertical-align: -2px;
}

.globalHeader .globalNav .navInfo-list li a.faq:before {
    display: inline-block;
    content: "\f059";
    font-family: 'Font Awesome 5 Light';
}

.globalHeader .globalNav .navInfo-list li a.contact:before {
    display: inline-block;
    content: "\f0e0";
    font-family: 'Font Awesome 5 Light';
}

.globalHeader .globalNav .navInfo-list li a:hover {
    opacity: 1;
    color: #FFFF00;
}

@media screen and (max-width: 960px) {
    .globalHeader .globalNav .navInfo {
        display: block;
        width: 100%;
    }
    .globalHeader .globalNav .navInfo-list {
        display: block;
    }
    .globalHeader .globalNav .navInfo-list li {
        margin: 0 2em;
    }
    .globalHeader .globalNav .navInfo-list li a {
        display: block;
        padding: 1em;
        font-size: 1.6rem;
        border-bottom: 1px solid #FFF;
    }
    .globalHeader .globalNav .navInfo-list li a:before {
        margin-right: 10px;
    }
}

.globalHeader .globalNav .navInfo .btnSearch > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #FFFF00;
    width: 240px;
    padding: .1em;
    font-weight: bold;
    border-bottom-left-radius: 15px;
}

.globalHeader .globalNav .navInfo .btnSearch > a:before {
    display: inline-block;
    content: "\f002";
    font-family: 'Font Awesome 5 Regular';
    font-size: 2.2rem;
    margin-right: 5px;
}

@media screen and (max-width: 960px) {
    .globalHeader .globalNav .navInfo .btnSearch {
        display: none;
    }
}

.globalHeader button {
    display: none;
    border: none;
    width: 80px;
    height: 80px;
}

@media screen and (max-width: 960px) {
    .globalHeader button {
        display: block;
    }
}

@media screen and (max-width: 560px) {
    .globalHeader button {
        width: 60px;
        height: 60px;
    }
}

.globalHeader button.globalnavToggle {
    background-color: #EB6D56;
    padding: 1.9em 1.6em;
}

.globalHeader button.globalnavToggle span {
    display: block;
    position: relative;
    height: 100%;
}

.globalHeader button.globalnavToggle span span {
    display: block;
    background: #FFF;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.globalHeader button.globalnavToggle span span:nth-child(1) {
    top: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.globalHeader button.globalnavToggle span span:nth-child(2) {
    top: 50%;
}

.globalHeader button.globalnavToggle span span:nth-child(3) {
    top: 100%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.globalHeader button.globalnavToggle--opened span {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.globalHeader button.globalnavToggle--opened span span:nth-child(1) {
    -webkit-transform: rotate(0deg) translateY(8px);
    transform: rotate(0deg) translateY(8px);
}

.globalHeader button.globalnavToggle--opened span span:nth-child(2) {
    opacity: 0;
}

.globalHeader button.globalnavToggle--opened span span:nth-child(3) {
    -webkit-transform: rotate(-90deg) translateX(14px);
    transform: rotate(-90deg) translateX(14px);
}

@media screen and (max-width: 560px) {
    .globalHeader button.globalnavToggle {
        padding: 1.5em 1.3em;
    }
    .globalHeader button.globalnavToggle--opened span span:nth-child(1) {
        -webkit-transform: rotate(0deg) translateY(5px);
        transform: rotate(0deg) translateY(5px);
    }
    .globalHeader button.globalnavToggle--opened span span:nth-child(3) {
        -webkit-transform: rotate(-90deg) translateX(10px);
        transform: rotate(-90deg) translateX(10px);
    }
}

.globalHeader button.globalnavSearch {
    background-color: #FFFF00;
    font-size: 1.3rem;
    font-weight: bold;
    position: relative;
}

.globalHeader button.globalnavSearch a {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}

.globalHeader button.globalnavSearch a:before {
    font-size: 2.8rem;
    display: inline-block;
    content: "\f002";
    font-family: 'Font Awesome 5 Regular';
    display: block;
    line-height: 28px;
    padding: .5em 0 .2em;
}

@media screen and (max-width: 560px) {
    .globalHeader button.globalnavSearch {
        font-size: 1rem;
    }
    .globalHeader button.globalnavSearch a:before {
        font-size: 2.2rem;
        line-height: 22px;
    }
}

/*==================================================================================================
フッター
==================================================================================================*/
footer {
    position: relative;
}

footer .footerInfo {
    background: url(../img/common/footer-bg.png) no-repeat center 0;
    background-size: cover;
    color: #FFF;
    padding: 3em 0;
}

footer .footerInfo .infoSchool {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-bottom: 1em;
}

footer .footerInfo .infoSchool li {
    font-weight: bold;
    margin: 0 .5em 2em;
}

footer .footerInfo .infoSchool li h2 {
    font-size: 2rem;
    margin-bottom: .5em;
}

footer .footerInfo .infoSchool li p {
    font-size: 1.4rem;
    line-height: 1.5;
}

footer .footerInfo .btnArea .btn {
    font-size: 1.6rem;
    max-width: 400px;
}

@media screen and (max-width: 480px) {
    footer .footerInfo {
        padding: 2.5em 0;
    }
    footer .footerInfo .infoSchool {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    footer .footerInfo .infoSchool li {
        margin: 0 .7em 1.5em;
    }
    footer .footerInfo .infoSchool li h2 {
        font-size: 1.8rem;
    }
    footer .footerInfo .infoSchool li p {
        font-size: 1.3rem;
    }
}

footer .footerNav .fnavList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .footerNav .fnavList li a {
    display: block;
    padding: 1.2em 1.5em;
    text-align: center;
}

footer .footerNav .fnavList li a:hover {
    background: #F5F3F0;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    footer .footerNav .fnavList {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    footer .footerNav .fnavList li {
        width: 33.333%;
        border: 1px solid #EFEFEF;
        margin: 0 -1px -1px 0;
    }
    footer .footerNav .fnavList li:last-child {
        width: 100%;
    }
    footer .footerNav .fnavList li a {
        padding: .8em;
    }
}

@media screen and (max-width: 560px) {
    footer .footerNav .fnavList li {
        width: 50%;
    }
}

footer .footerCopy {
    background: #EB6D56;
    color: #FFF;
    padding: 1.5em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .footerCopy__sns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 1.5em;
}

footer .footerCopy__sns li {
    margin: 0 .6em;
}

footer .footerCopy__sns li a {
    font-size: 2.7rem;
    color: #FFF;
}

footer .footerCopy .copyright {
    font-size: 1.4rem;
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    footer .footerCopy {
        display: block;
        text-align: center;
        padding: 0 1em .6em;
    }
    footer .footerCopy .footerLogo {
        background-color: #FFF;
        width: 100vw;
        margin: 0 calc(50% - 50vw);
        padding: 1.5em;
    }
    footer .footerCopy .footerLogo.-spNone {
        display: none;
    }
    footer .footerCopy__sns {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: .8em 0 .6em;
    }
    footer .footerCopy__sns li {
        margin: 0 1em;
    }
    footer .footerCopy__sns li a {
        font-size: 3.4rem;
    }
    footer .footerCopy .copyright {
        font-size: 1.2rem;
    }
}

footer button.gotoTop {
    border: none;
    width: 70px;
    height: 70px;
    position: absolute;
    right: 0;
    top: -70px;
}

footer button.gotoTop a {
    display: block;
    background-color: #F5F3F0;
}

footer button.gotoTop a:before {
    font-size: 3.2rem;
    display: inline-block;
    content: "\f077";
    font-family: 'Font Awesome 5 Regular';
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #A5A5A5;
    height: 70px;
}

@media screen and (max-width: 560px) {
    footer button.gotoTop {
        width: 50px;
        height: 50px;
        top: -50px;
    }
    footer button.gotoTop a:before {
        font-size: 2.4rem;
        height: 50px;
    }
}

/*==================================================================================================
サブページ
==================================================================================================*/
/*------------------------------------------------
お知らせ
------------------------------------------------*/
.newsList li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1em;
}

.newsList li:last-child {
    margin-bottom: 0;
}

.newsList li p {
    font-weight: bold;
}

.newsList li .time {
    font-weight: normal;
    margin-right: 1.2em;
}

.newsList li a {
    text-decoration: none;
}

.newsList li a:hover {
    color: #EB6D56;
}

@media screen and (max-width: 560px) {
    .newsList li {
        display: block;
    }
}

/*------------------------------------------------
メンテナンス
------------------------------------------------*/
.lContainer.-maintenance {
    padding-top: 0;
}

.lContainer.-maintenance .inner p:first-child {
    margin: 0 0 4em;
}

.lContainer.-maintenance .inner p:nth-child(2) {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 0 1.5em;
}

.lContainer.-maintenance .inner .btnArea {
    margin-top: 4.5em;
}

/*------------------------------------------------
404エラーページ
------------------------------------------------*/
.lContainer.-notFound {
    padding: 6em 0;
}

.lContainer.-notFound .inner section {
    padding-top: 0;
}

.lContainer.-notFound .inner section h2 {
    margin-bottom: .5em;
}

@media screen and (max-width: 768px) {
    .lContainer.-notFound .inner .btnArea ul {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

/*------------------------------------------------
印刷用
------------------------------------------------*/
@media print {
    .globalHeader {
        position: relative;
        padding: 1.5em 0 2.5em;
    }
    .globalHeader__logo {
        margin: 0;
    }
    .globalHeader .globalNav {
        display: none !important;
    }
    .lContainer {
        margin-top: auto;
    }
    footer {
        display: none;
    }
}
