@charset "UTF-8";

/**=============================================================================
 * WEBフォント
 */

@font-face {
    font-family: 'symbols';
    src: url("../font/symbols.eot?95171330");
    src: url("../font/symbols.eot?95171330#iefix") format("embedded-opentype"), url("../font/symbols.woff2?95171330") format("woff2"), url("../font/symbols.woff?95171330") format("woff"), url("../font/symbols.ttf?95171330") format("truetype"), url("../font/symbols.svg?95171330#symbols") format("svg");
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: "symbols";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-asign:before {
    content: '\e814';
}

.icon-award:before {
    content: '\e815';
}

.icon-blank:before {
    content: '\e816';
}

.icon-book:before {
    content: '\e817';
}

.icon-calender:before {
    content: '\e818';
}

.icon-check:before {
    content: '\e819';
}

.icon-clock:before {
    content: '\e81b';
}

.icon-note:before {
    content: '\e81c';
}

.icon-lesson:before {
    content: '\e81d';
}

.icon-pass:before {
    content: '\e81e';
}

.icon-deed:before {
    content: '\e81f';
}


/**=============================================================================
 * 全体構造
 */

body {
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    color: #000000;
}

html[lang=ja] body {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
}

ul,
ol,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

#container {
    position: relative;
    border-top: 10px solid #2B3340;
    background-image: url('../img/bg_top.png');
    background-position: 50% top;
    background-repeat: no-repeat;
}

@media (max-width: 1200px) {
    #container {
        background-size: 100% auto;
    }
}

@media (max-width: 768px) {
    #container {
        background-position: 50% 50px;
        padding-top: 50px;
    }
}

#container>header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    padding: 16px 0;
    /*box-shadow: 0 -3px 6px 6px rgba(0, 0, 0, 0.15);*/
}

#container>header::before,
#container>header::after {
    content: "";
    display: table;
}

#container>header::after {
    clear: both;
}

@media (max-width: 768px) {
    #container>header {
        padding: 5px 0;
    }
}

#container>header .inner {
    max-width: 1200px;
    padding: 0 16px;
}

@media (max-width: 1200px) {
    #container>header .inner {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    #container>header .inner {
        padding: 0;
        margin: 0;
    }
}

#container>footer {
    width: 100%;
    padding: 24px 0;
    margin-top: 60px;
    background-color: #666666;
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
}

section {
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
}

@media (max-width: 768px) {
    section {
        width: 100%;
        padding: 0;
    }
}

section .contents_block {
    padding: 0 2.5%;
}

@media (max-width: 768px) {
    section .contents_block {
        padding: 30px 0 0;
    }
}

section .contents_block .inner {
    padding: 50px 2.5% 30px;
}

section.course-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 2.5% 0 0 0;
    background-color: rgba(253, 242, 225, 0.95);
    background-image: url('../img/bg_contents.png'), url('../img/bg_contents.png');
    background-repeat: no-repeat;
    background-position: top right, bottom left;
}

section.course-sub {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background-image: url("../img/bg_contents.png"), url("../img/bg_contents.png");
    background-repeat: no-repeat;
    background-position: top right, bottom left;
}

@media (max-width: 768px) {
    section.course-main {
        background-size: 150% auto;
    }
    section.course-sub {
        background-size: 150% auto;
    }
}

section img {
    display: block;
    width: 100%;
}

#container>p {
    padding: 0;
    margin: 0;
    text-align: center;
}

header .inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

section h2 {
    position: relative;
    background: #036C82;
    padding: 10px 20px;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: left;
    white-space: nowrap;
}


/* グリッド */

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

@media (max-width: 980px) {
    .col-4 {
        width: 100%;
    }
}

.col-6 {
    width: 50%;
}

@media (max-width: 768px) {
    .col-6 {
        width: 100%;
    }
}

.col-8 {
    width: 66.66%;
}

@media (max-width: 980px) {
    .col-8 {
        width: 100%;
    }
}

.col-12 {
    width: 100%;
}


/**=============================================================================
 * ヘッダー
 */

#menu-link {
    display: none;
    position: absolute;
    z-index: 10;
    right: 0;
    height: 16px;
    padding: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    color: #333333;
    text-indent: 8px;
    background: url(../img/menu-icon.png) 0 50% no-repeat;
}

@media (max-width: 768px) {
    #menu-link {
        display: inline-block;
        width: 16px;
        top: 0;
        bottom: auto;
        background-position: 50% 50%;
        text-indent: 32px;
    }
}

.head-logo {
    float: left;
    list-style: none;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .head-logo {
        white-space: normal;
    }
}

.head-logo li {
    display: inline-block;
    height: 75px;
    padding-left: 10px;
}

@media (max-width: 768px) {
    .head-logo li {
        height: 40px;
    }
}

.head-logo img {
    max-height: 100%;
    vertical-align: top;
}

.navi-links {
    display: none;
    float: right;
    list-style: none;
    padding-top: 15px;
    font-size: 14px;
    line-height: 1;
    text-align: right;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

@media (max-width: 768px) {
    .navi-links {
        display: none;
        width: 100%;
        margin-bottom: -16px;
        background-color: #ffffff;
        text-align: center;
    }
}

.navi-links.show {
    display: none;
}

@media (max-width: 768px) {
    .navi-links.show {
        display: block;
        box-shadow: 0 5px 1px 1px rgba(0, 0, 0, 0.15);
    }
}

.navi-links li {
    display: inline-block;
    margin-left: 1em;
}

@media (max-width: 768px) {
    .navi-links li {
        display: block;
        margin-left: 0;
        border-top: solid 1px #ccc;
    }
}

.navi-links a {
    text-decoration: none;
    color: #000000;
}

@media (max-width: 768px) {
    .navi-links a {
        display: block;
        padding: 15px;
    }
}


/**=============================================================================
 * パーツ */

em {
    font-weight: bold;
}

strong {
    font-weight: bold;
    font-size: 150%;
}

small {
    font-size: 75%;
}

p {
    word-break: break-all;
}

.center {
    text-align: center;
}

.sub_text {
    font-size: 0.8em;
    text-align: right;
    margin-top: 15px;
}

.font_green {
    color: #036C82;
}

.font_small {
    font-size: 0.5em;
}


/* ボタン */

.btn_block {
    text-align: center;
    padding: 3% 0;
}

.btn_block .open_date {
    background: rgba(253, 242, 225, 0.95);
    color: #ED7C78;
    padding: 30px 15px;
    font-size: 1.7em;
    font-weight: bold;
    margin-bottom: 5px;
}

.btn_block .btn_entry {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    padding: 20px 100px;
    /* max-width: 570px; */
    margin: 0 10px;
    text-align: center;
    background: #ED7C78;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    box-shadow: 3px 3px 10px -3px #a05050;
    text-transform: uppercase;
    transition: all .3s;
    overflow: hidden;
    z-index: 1;
}

.btn_block .btn_entry:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ED7C78;
    z-index: -2;
}

.btn_block .btn_entry:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #E8AAAA;
    transition: all .3s;
    z-index: -1;
}

.btn_block .btn_entry:hover {
    color: #fff;
}

.btn_block .btn_entry:hover:before {
    width: 100%;
}

@media (max-width: 768px) {
    .btn_block .open_date {
        font-size: 1.3em;
    }
    .btn_block .btn_entry {
        display: block;
        letter-spacing: 1px;
        padding: 20px 20px;
        margin: 20px 30px;
        font-size: 1.5em;
        max-width: none;
    }
}

/*TOPに戻るボタン*/

#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    z-index: 10000;
}
#page-top a {
    text-decoration: none;
}
#page-top a img {
    width: 100%;
}
#page-top a:hover img {
    opacity: 0.9;
}

/* SNSシェア */

.sns-icons {
    margin: 60px auto;
    list-style: none;
    text-align: center;
}

.sns-icons li {
    display: inline-block;
    width: 39px;
    height: 39px;
    margin: 0 8px;
    vertical-align: top;
}

.sns-icons li img {
    width: 100%;
    height: auto;
}


/**=============================================================================
/* TOP */

#course_top {
    max-width: none;
    padding: 0;
}

#course_top .inner {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    #course_top .inner {
        padding: 0 2.5%;
    }
}

#course_top h1 {
    margin-top: 17%;
}

.h1_description {
    width: 60%;
    margin-top: 5%;
}

@media (max-width: 768px) {
    .h1_description {
        width: 70%;
    }
}

.img_globe {
    position: absolute;
    top: 45%;
    right: 3%;
    width: 20%;
    z-index: 5;
}

#course_top .movie-block {
  position: relative;
  width: 560px;
  min-height: 315px;
  background-color: #000;
  margin: 0 auto 50px;
}

@media (max-width: 768px) {
  #course_top .movie-block {
    width: 100%;
    max-width: 375px;
    min-height: 202px;
    margin: 0 auto 30px;
  }
}

#course_top .movie-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**=============================================================================
/* MAIN */


/**=============================================================================
/* FEATURE */

#course-feature .main_feature {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3%;
}

#course-feature .main_feature li {
    flex-basis: 305px;
    padding: 5px;
    margin: 0 auto 1%;
}

#course-feature .sub_feature {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2%;
    padding: 0 17%;
}

@media (max-width: 768px) {
    #course-feature .sub_feature {
    padding: 0;
}
}
#course-feature .sub_feature li {
    flex-basis: 305px;
    padding: 5px;
    margin: 0 auto 1%;
}


/**=============================================================================
/* THEME */

#course-theme .theme_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -1%;
}

#course-theme .theme_list li {
    flex-basis: 492px;
    padding: 5px;
    margin: 0 auto 3%;
}


/**=============================================================================
/* LECTURER */

#course-lecturer {
    padding-bottom: 0;
}

#course-lecturer .lecturer_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 10%;
    justify-content: space-between;
    margin-bottom: 3.5%;
}

#course-lecturer .lecturer_list li {
    flex-basis: 250px;
    padding: 0 1%;
    margin: 0 auto 30px;
    text-align: center;
}

#course-lecturer .lecturer_list li img {
    width: 150px;
    display: inline-block;
    margin-bottom: 3%;
    background: #FFFFFF;
    border: 2px solid #036C82;
    border-radius: 50%;
    /*角丸*/
}

#course-lecturer .lecturer_list li h3 {
    display: inline-block;
    border-bottom: 1px solid #036C82;
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-weight: normal;
    font-size: 1.5em;
}

#course-lecturer .lecturer_list li h3+p {
    white-space: nowrap;
}


/**=============================================================================
/* GAIYO */

#course-gaiyo .inner {
    padding: 50px 7%;
}

@media (max-width: 768px) {
    #course-gaiyo .inner {
        padding: 50px 3%;
    }
}

#course-gaiyo .inner .flex_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#course-gaiyo .inner .flex_box .flex_item {
    flex-basis: 45%;
}

@media (max-width: 768px) {
    #course-gaiyo .inner .flex_box .flex_item {
        flex-basis: 100%;
    }
}

#course-gaiyo .contents_box {
    padding-bottom: 30px;
}

#course-gaiyo .contents_box h3 {
    font-weight: bold;
    font-size: 1.1em;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #036C82;
}

#course-gaiyo .contents_box dl {
    overflow: hidden;
}

#course-gaiyo .contents_box dt {
    float: left;
    width: 16em;
    margin-right: -16em;
    clear: both;
}

@media (max-width: 768px) {
    #course-gaiyo .contents_box dl {
        font-size: 0.8em;
    }
}

#course-gaiyo .contents_box dd {
    float: left;
    margin-left: 16em;
    white-space: nowrap;
}

#course-gaiyo .contents_box p,
#course-gaiyo .contents_box ul,
#course-gaiyo .contents_box dl {
    line-height: 2;
}


/**=============================================================================
/* FLOW */

#course-flow {
    text-align: center;
}

#course-flow .inner>img {
    max-width: 956px;
    margin: 0 auto;
}

#course-flow .text_flow_point {
    font-size: 1.5em;
    line-height: 1.5;
    font-weight: bold;
    color: #036C82;
    margin: 30px 0 20px;
}

#course-flow ul {
    display: inline-block;
    text-align: left;
    line-height: 1.8;
    font-weight: bold;
    margin-bottom: 10px;
}


/*# sourceMappingURL=../css */
